From 6898ae7106d1e1b64e961474385bea67e3259389 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Thu, 14 Oct 2021 11:36:13 -0400 Subject: [PATCH 01/35] Fixes #7544: Fix multi-value filtering of custom field objects --- docs/release-notes/version-3.0.md | 4 ++++ netbox/extras/filtersets.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 25295b621..f0bb726d8 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -2,6 +2,10 @@ ## v3.0.8 (FUTURE) +### Bug Fixes + +* [#7544](https://github.com/netbox-community/netbox/issues/7544) - Fix multi-value filtering of custom field objects + --- ## v3.0.7 (2021-10-08) diff --git a/netbox/extras/filtersets.py b/netbox/extras/filtersets.py index 25fd32f0d..af8d904f4 100644 --- a/netbox/extras/filtersets.py +++ b/netbox/extras/filtersets.py @@ -15,6 +15,7 @@ from .models import * __all__ = ( 'ConfigContextFilterSet', 'ContentTypeFilterSet', + 'CustomFieldFilterSet', 'CustomLinkFilterSet', 'ExportTemplateFilterSet', 'ImageAttachmentFilterSet', @@ -47,7 +48,7 @@ class WebhookFilterSet(BaseFilterSet): ] -class CustomFieldFilterSet(django_filters.FilterSet): +class CustomFieldFilterSet(BaseFilterSet): content_types = ContentTypeFilter() class Meta: From b95773938d50acdb5404a63c346ca93bee5fdbb9 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Thu, 14 Oct 2021 12:24:29 -0400 Subject: [PATCH 02/35] Fixes #7534: Avoid exception when utilizing "create and add another" twice in succession --- docs/release-notes/version-3.0.md | 1 + netbox/netbox/views/generic.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index f0bb726d8..4e7d19cdd 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -4,6 +4,7 @@ ### Bug Fixes +* [#7534](https://github.com/netbox-community/netbox/issues/7534) - Avoid exception when utilizing "create and add another" twice in succession * [#7544](https://github.com/netbox-community/netbox/issues/7544) - Fix multi-value filtering of custom field objects --- diff --git a/netbox/netbox/views/generic.py b/netbox/netbox/views/generic.py index 4baf2e0e9..75e978e2a 100644 --- a/netbox/netbox/views/generic.py +++ b/netbox/netbox/views/generic.py @@ -282,11 +282,11 @@ class ObjectEditView(GetReturnURLMixin, ObjectPermissionRequiredMixin, View): messages.success(request, mark_safe(msg)) if '_addanother' in request.POST: - redirect_url = request.get_full_path() + redirect_url = request.path # If the object has clone_fields, pre-populate a new instance of the form if hasattr(obj, 'clone_fields'): - redirect_url += f"{'&' if '?' in redirect_url else '?'}{prepare_cloned_fields(obj)}" + redirect_url += f"?{prepare_cloned_fields(obj)}" return redirect(redirect_url) From a7b6c40596fb1291243de8b5697cc1f7f24099e2 Mon Sep 17 00:00:00 2001 From: miaow2 Date: Thu, 14 Oct 2021 20:35:21 +0300 Subject: [PATCH 03/35] Fixing display of webhook types --- netbox/templates/extras/webhook.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/templates/extras/webhook.html b/netbox/templates/extras/webhook.html index f1cf876c1..c92ec4c99 100644 --- a/netbox/templates/extras/webhook.html +++ b/netbox/templates/extras/webhook.html @@ -47,7 +47,7 @@ Update - {% if object.type_create %} + {% if object.type_update %} {% else %} @@ -57,7 +57,7 @@ Delete - {% if object.type_create %} + {% if object.type_delete %} {% else %} From e16942dea5d6f60f099b850c15d00c3f52898fd0 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Thu, 14 Oct 2021 13:44:54 -0400 Subject: [PATCH 04/35] Fixes #7529: Restore horizontal scrolling for tables in narrow viewports --- docs/release-notes/version-3.0.md | 2 + netbox/templates/inc/table.html | 68 ++++++++++++++++--------------- 2 files changed, 37 insertions(+), 33 deletions(-) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 4e7d19cdd..b49eb15ae 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -4,8 +4,10 @@ ### Bug Fixes +* [#7529](https://github.com/netbox-community/netbox/issues/7529) - Restore horizontal scrolling for tables in narrow viewports * [#7534](https://github.com/netbox-community/netbox/issues/7534) - Avoid exception when utilizing "create and add another" twice in succession * [#7544](https://github.com/netbox-community/netbox/issues/7544) - Fix multi-value filtering of custom field objects +* [#7545](https://github.com/netbox-community/netbox/issues/7545) - Fix incorrect display of update/delete events for webhooks --- diff --git a/netbox/templates/inc/table.html b/netbox/templates/inc/table.html index 3710af846..c38f50222 100644 --- a/netbox/templates/inc/table.html +++ b/netbox/templates/inc/table.html @@ -1,41 +1,43 @@ {% load django_tables2 %} - +
+ {% if table.show_header %} - - - {% for column in table.columns %} - {% if column.orderable %} - {{ column.header }} - {% else %} - {{ column.header }} - {% endif %} - {% endfor %} - - + + + {% for column in table.columns %} + {% if column.orderable %} + {{ column.header }} + {% else %} + {{ column.header }} + {% endif %} + {% endfor %} + + {% endif %} - {% for row in table.page.object_list|default:table.rows %} - - {% for column, cell in row.items %} - {{ cell }} - {% endfor %} - - {% empty %} - {% if table.empty_text %} - - — {{ table.empty_text }} — - - {% endif %} - {% endfor %} + {% for row in table.page.object_list|default:table.rows %} + + {% for column, cell in row.items %} + {{ cell }} + {% endfor %} + + {% empty %} + {% if table.empty_text %} + + — {{ table.empty_text }} — + + {% endif %} + {% endfor %} {% if table.has_footer %} - - - {% for column in table.columns %} - {{ column.footer }} - {% endfor %} - - + + + {% for column in table.columns %} + {{ column.footer }} + {% endfor %} + + {% endif %} - + +
From f1f0d9cd0d4b8098a9204a9de7061e5a5349ce47 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Fri, 15 Oct 2021 15:02:50 -0700 Subject: [PATCH 05/35] Fixes #7495: Fix sidenav overlapping elements --- docs/release-notes/version-3.0.md | 1 + netbox/project-static/dist/netbox-dark.css | 2 +- netbox/project-static/dist/netbox-light.css | 2 +- netbox/project-static/dist/netbox-print.css | 2 +- netbox/project-static/dist/netbox.js | 2 +- netbox/project-static/dist/netbox.js.map | 2 +- netbox/project-static/src/sidenav.ts | 6 ++--- netbox/project-static/styles/sidenav.scss | 30 ++++++++++++++++++--- 8 files changed, 35 insertions(+), 12 deletions(-) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index b49eb15ae..82770e856 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -4,6 +4,7 @@ ### Bug Fixes +* [#7495](https://github.com/netbox-community/netbox/issues/7495) - Fix navigation UI issue that caused improper element overlap * [#7529](https://github.com/netbox-community/netbox/issues/7529) - Restore horizontal scrolling for tables in narrow viewports * [#7534](https://github.com/netbox-community/netbox/issues/7534) - Avoid exception when utilizing "create and add another" twice in succession * [#7544](https://github.com/netbox-community/netbox/issues/7544) - Fix multi-value filtering of custom field objects diff --git a/netbox/project-static/dist/netbox-dark.css b/netbox/project-static/dist/netbox-dark.css index 48745de12..4a6912458 100644 --- a/netbox/project-static/dist/netbox-dark.css +++ b/netbox/project-static/dist/netbox-dark.css @@ -1 +1 @@ -html[data-netbox-color-mode=dark] :root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #6ea8fe;--bs-secondary: #adb5bd;--bs-success: #75b798;--bs-info: #6edff6;--bs-warning: #ffda6a;--bs-danger: #ea868f;--bs-light: #dee2e6;--bs-dark: #adb5bd;--bs-red: #ea868f;--bs-yellow: #ffda6a;--bs-green: #75b798;--bs-blue: #6ea8fe;--bs-cyan: #6edff6;--bs-indigo: #a370f7;--bs-purple: #a98eda;--bs-pink: #e685b5;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}html[data-netbox-color-mode=dark] *,html[data-netbox-color-mode=dark] *:before,html[data-netbox-color-mode=dark] *:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){html[data-netbox-color-mode=dark] :root{scroll-behavior:smooth}}html[data-netbox-color-mode=dark] body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#fff;background-color:#1b1f22;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}html[data-netbox-color-mode=dark] hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}html[data-netbox-color-mode=dark] hr:not([size]){height:1px}html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{font-size:2.5rem}}html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2{font-size:2rem}}html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3{font-size:1.75rem}}html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4{font-size:1.5rem}}html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=dark] .h5{font-size:1.25rem}html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=dark] .h6{font-size:1rem}html[data-netbox-color-mode=dark] p{margin-top:0;margin-bottom:1rem}html[data-netbox-color-mode=dark] abbr[title],html[data-netbox-color-mode=dark] abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}html[data-netbox-color-mode=dark] address{margin-bottom:1rem;font-style:normal;line-height:inherit}html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul{padding-left:2rem}html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=dark] dl{margin-top:0;margin-bottom:1rem}html[data-netbox-color-mode=dark] ol ol,html[data-netbox-color-mode=dark] ul ul,html[data-netbox-color-mode=dark] ol ul,html[data-netbox-color-mode=dark] ul ol{margin-bottom:0}html[data-netbox-color-mode=dark] dt{font-weight:700}html[data-netbox-color-mode=dark] dd{margin-bottom:.5rem;margin-left:0}html[data-netbox-color-mode=dark] blockquote{margin:0 0 1rem}html[data-netbox-color-mode=dark] b,html[data-netbox-color-mode=dark] strong{font-weight:800}html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=dark] .small{font-size:.875em}html[data-netbox-color-mode=dark] mark,html[data-netbox-color-mode=dark] .mark{padding:.2em;background-color:#fcf8e3}html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=dark] sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}html[data-netbox-color-mode=dark] sub{bottom:-.25em}html[data-netbox-color-mode=dark] sup{top:-.5em}html[data-netbox-color-mode=dark] a{color:#9ec5fe;text-decoration:underline}html[data-netbox-color-mode=dark] a:hover{color:#cfe2ff}html[data-netbox-color-mode=dark] a:not([href]):not([class]),html[data-netbox-color-mode=dark] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=dark] samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}html[data-netbox-color-mode=dark] pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}html[data-netbox-color-mode=dark] pre code{font-size:inherit;color:inherit;word-break:normal}html[data-netbox-color-mode=dark] code{font-size:.875em;color:#e9ecef;word-wrap:break-word}a>html[data-netbox-color-mode=dark] code{color:inherit}html[data-netbox-color-mode=dark] kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#dee2e6;border-radius:.375rem}html[data-netbox-color-mode=dark] kbd kbd{padding:0;font-size:1em;font-weight:700}html[data-netbox-color-mode=dark] figure{margin:0 0 1rem}html[data-netbox-color-mode=dark] img,html[data-netbox-color-mode=dark] svg{vertical-align:middle}html[data-netbox-color-mode=dark] table{caption-side:bottom;border-collapse:collapse}html[data-netbox-color-mode=dark] caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}html[data-netbox-color-mode=dark] th{text-align:inherit;text-align:-webkit-match-parent}html[data-netbox-color-mode=dark] thead,html[data-netbox-color-mode=dark] tbody,html[data-netbox-color-mode=dark] tfoot,html[data-netbox-color-mode=dark] tr,html[data-netbox-color-mode=dark] td,html[data-netbox-color-mode=dark] th{border-color:inherit;border-style:solid;border-width:0}html[data-netbox-color-mode=dark] label{display:inline-block}html[data-netbox-color-mode=dark] button{border-radius:0}html[data-netbox-color-mode=dark] button:focus:not(:focus-visible){outline:0}html[data-netbox-color-mode=dark] input,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=dark] optgroup,html[data-netbox-color-mode=dark] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select{text-transform:none}html[data-netbox-color-mode=dark] [role=button]{cursor:pointer}html[data-netbox-color-mode=dark] select{word-wrap:normal}html[data-netbox-color-mode=dark] select:disabled{opacity:1}html[data-netbox-color-mode=dark] [list]::-webkit-calendar-picker-indicator{display:none}html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] [type=button],html[data-netbox-color-mode=dark] [type=reset],html[data-netbox-color-mode=dark] [type=submit]{-webkit-appearance:button}html[data-netbox-color-mode=dark] button:not(:disabled),html[data-netbox-color-mode=dark] [type=button]:not(:disabled),html[data-netbox-color-mode=dark] [type=reset]:not(:disabled),html[data-netbox-color-mode=dark] [type=submit]:not(:disabled){cursor:pointer}html[data-netbox-color-mode=dark] ::-moz-focus-inner{padding:0;border-style:none}html[data-netbox-color-mode=dark] textarea{resize:vertical}html[data-netbox-color-mode=dark] fieldset{min-width:0;padding:0;margin:0;border:0}html[data-netbox-color-mode=dark] legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){html[data-netbox-color-mode=dark] legend{font-size:1.5rem}}html[data-netbox-color-mode=dark] legend+*{clear:left}html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-year-field{padding:0}html[data-netbox-color-mode=dark] ::-webkit-inner-spin-button{height:auto}html[data-netbox-color-mode=dark] [type=search]{outline-offset:-2px;-webkit-appearance:textfield}html[data-netbox-color-mode=dark] ::-webkit-search-decoration{-webkit-appearance:none}html[data-netbox-color-mode=dark] ::-webkit-color-swatch-wrapper{padding:0}html[data-netbox-color-mode=dark] ::file-selector-button{font:inherit}html[data-netbox-color-mode=dark] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}html[data-netbox-color-mode=dark] output{display:inline-block}html[data-netbox-color-mode=dark] iframe{border:0}html[data-netbox-color-mode=dark] summary{display:list-item;cursor:pointer}html[data-netbox-color-mode=dark] progress{vertical-align:baseline}html[data-netbox-color-mode=dark] [hidden]{display:none!important}html[data-netbox-color-mode=dark] .lead{font-size:1.25rem;font-weight:300}html[data-netbox-color-mode=dark] .display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-1{font-size:5rem}}html[data-netbox-color-mode=dark] .display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-2{font-size:4.5rem}}html[data-netbox-color-mode=dark] .display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-3{font-size:4rem}}html[data-netbox-color-mode=dark] .display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-4{font-size:3.5rem}}html[data-netbox-color-mode=dark] .display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-5{font-size:3rem}}html[data-netbox-color-mode=dark] .display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-6{font-size:2.5rem}}html[data-netbox-color-mode=dark] .list-unstyled{padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .list-inline{padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .list-inline-item{display:inline-block}html[data-netbox-color-mode=dark] .list-inline-item:not(:last-child){margin-right:.5rem}html[data-netbox-color-mode=dark] .initialism{font-size:.875em;text-transform:uppercase}html[data-netbox-color-mode=dark] .blockquote{margin-bottom:1rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .blockquote>:last-child{margin-bottom:0}html[data-netbox-color-mode=dark] .blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}html[data-netbox-color-mode=dark] .blockquote-footer:before{content:"\2014\a0"}html[data-netbox-color-mode=dark] .img-fluid{max-width:100%;height:auto}html[data-netbox-color-mode=dark] .img-thumbnail{padding:.25rem;background-color:#1b1f22;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}html[data-netbox-color-mode=dark] .figure{display:inline-block}html[data-netbox-color-mode=dark] .figure-img{margin-bottom:.5rem;line-height:1}html[data-netbox-color-mode=dark] .figure-caption{font-size:.875em;color:#6c757d}html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=dark] .container-fluid,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:540px}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:720px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:960px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:1140px}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:1320px}}html[data-netbox-color-mode=dark] .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}html[data-netbox-color-mode=dark] .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}html[data-netbox-color-mode=dark] .col{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width: 576px){html[data-netbox-color-mode=dark] .col-sm{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-sm-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-sm-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-sm-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-sm-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-sm-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .col-md{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-md-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-md-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-md-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-md-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-md-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .col-lg{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-lg-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-lg-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-lg-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-lg-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-lg-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .col-xl{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-xl-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-xl-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-xl-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-xl-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-xl-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .col-xxl{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-xxl-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-xxl-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-xxl-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-xxl-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}html[data-netbox-color-mode=dark] .col-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gx-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gy-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gx-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gy-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gx-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gy-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gx-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gy-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gx-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gy-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gx-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .col-sm-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-sm-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-sm-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-sm-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-sm-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-sm-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-sm-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-sm-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-sm-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-sm-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-sm-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-sm-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-sm-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-sm-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-sm-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-sm-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-sm-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-sm-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-sm-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-sm-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-sm-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-sm-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-sm-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-sm-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-sm-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gx-sm-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gy-sm-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gx-sm-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gy-sm-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gx-sm-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gy-sm-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gx-sm-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gy-sm-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gx-sm-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gy-sm-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gx-sm-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .col-md-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-md-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-md-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-md-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-md-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-md-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-md-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-md-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-md-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-md-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-md-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-md-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-md-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-md-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-md-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-md-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-md-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-md-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-md-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-md-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-md-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-md-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-md-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-md-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-md-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gx-md-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gy-md-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gx-md-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gy-md-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gx-md-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gy-md-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gx-md-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gy-md-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gx-md-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gy-md-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gx-md-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .col-lg-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-lg-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-lg-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-lg-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-lg-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-lg-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-lg-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-lg-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-lg-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-lg-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-lg-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-lg-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-lg-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-lg-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-lg-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-lg-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-lg-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-lg-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-lg-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-lg-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-lg-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-lg-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-lg-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-lg-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-lg-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gx-lg-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gy-lg-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gx-lg-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gy-lg-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gx-lg-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gy-lg-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gx-lg-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gy-lg-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gx-lg-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gy-lg-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gx-lg-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .col-xl-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-xl-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-xl-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-xl-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-xl-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-xl-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-xl-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-xl-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-xl-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-xl-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-xl-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-xl-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-xl-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-xl-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-xl-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-xl-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-xl-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-xl-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-xl-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-xl-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-xl-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-xl-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-xl-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-xl-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-xl-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gx-xl-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gy-xl-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gx-xl-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gy-xl-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gx-xl-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gy-xl-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gx-xl-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gy-xl-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gx-xl-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gy-xl-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gx-xl-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .col-xxl-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-xxl-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-xxl-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-xxl-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-xxl-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-xxl-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-xxl-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-xxl-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-xxl-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-xxl-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-xxl-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-xxl-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-xxl-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-xxl-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-xxl-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-xxl-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-xxl-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-xxl-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gx-xxl-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gy-xxl-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gx-xxl-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gy-xxl-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gx-xxl-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gy-xxl-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gx-xxl-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gy-xxl-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gx-xxl-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gy-xxl-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gx-xxl-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gy-xxl-5{--bs-gutter-y: 3rem}}html[data-netbox-color-mode=dark] .table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #f8f9fa;--bs-table-striped-bg: rgba(255, 255, 255, .05);--bs-table-active-color: #f8f9fa;--bs-table-active-bg: rgba(255, 255, 255, .1);--bs-table-hover-color: #f8f9fa;--bs-table-hover-bg: rgba(255, 255, 255, .075);width:100%;margin-bottom:1rem;color:#f8f9fa;vertical-align:top;border-color:#495057}html[data-netbox-color-mode=dark] .table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}html[data-netbox-color-mode=dark] .table>tbody{vertical-align:inherit}html[data-netbox-color-mode=dark] .table>thead{vertical-align:bottom}html[data-netbox-color-mode=dark] .table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}html[data-netbox-color-mode=dark] .caption-top{caption-side:top}html[data-netbox-color-mode=dark] .table-sm>:not(caption)>*>*{padding:.25rem}html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*{border-width:1px 0}html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*>*{border-width:0 1px}html[data-netbox-color-mode=dark] .table-borderless>:not(caption)>*>*{border-bottom-width:0}html[data-netbox-color-mode=dark] .table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}html[data-netbox-color-mode=dark] .table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}html[data-netbox-color-mode=dark] .table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}html[data-netbox-color-mode=dark] .table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}html[data-netbox-color-mode=dark] .table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}html[data-netbox-color-mode=dark] .table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}html[data-netbox-color-mode=dark] .table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}html[data-netbox-color-mode=dark] .table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}html[data-netbox-color-mode=dark] .table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}html[data-netbox-color-mode=dark] .table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}html[data-netbox-color-mode=dark] .table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}html[data-netbox-color-mode=dark] .table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width: 575.98px){html[data-netbox-color-mode=dark] .table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1199.98px){html[data-netbox-color-mode=dark] .table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1399.98px){html[data-netbox-color-mode=dark] .table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}html[data-netbox-color-mode=dark] .form-label{margin-bottom:.5rem}html[data-netbox-color-mode=dark] .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}html[data-netbox-color-mode=dark] .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}html[data-netbox-color-mode=dark] .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}html[data-netbox-color-mode=dark] .form-text{margin-top:.25rem;font-size:.875em;color:#ced4da}html[data-netbox-color-mode=dark] .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#212529;background-clip:padding-box;border:1px solid #495057;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control{transition:none}}html[data-netbox-color-mode=dark] .form-control[type=file]{overflow:hidden}html[data-netbox-color-mode=dark] .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}html[data-netbox-color-mode=dark] .form-control:focus{color:#f8f9fa;background-color:#212529;border-color:#7db1fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-control::-webkit-date-and-time-value{height:1.5em}html[data-netbox-color-mode=dark] .form-control::placeholder{color:#495057;opacity:1}html[data-netbox-color-mode=dark] .form-control:disabled,html[data-netbox-color-mode=dark] .form-control[readonly]{background-color:#495057;opacity:1}html[data-netbox-color-mode=dark] .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#f8f9fa;background-color:#495057;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control::file-selector-button{transition:none}}html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#454c53}html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#f8f9fa;background-color:#495057;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button{transition:none}}html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#454c53}html[data-netbox-color-mode=dark] .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#fff;background-color:transparent;border:solid transparent;border-width:1px 0}html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] .form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html[data-netbox-color-mode=dark] .form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html[data-netbox-color-mode=dark] .form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html[data-netbox-color-mode=dark] .form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html[data-netbox-color-mode=dark] textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}html[data-netbox-color-mode=dark] textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}html[data-netbox-color-mode=dark] textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}html[data-netbox-color-mode=dark] .form-control-color{max-width:3rem;height:auto;padding:.375rem}html[data-netbox-color-mode=dark] .form-control-color:not(:disabled):not([readonly]){cursor:pointer}html[data-netbox-color-mode=dark] .form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#212529;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #495057;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-select{transition:none}}html[data-netbox-color-mode=dark] .form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-select[multiple],html[data-netbox-color-mode=dark] .form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}html[data-netbox-color-mode=dark] .form-select:disabled{color:#adb5bd;background-color:#495057}html[data-netbox-color-mode=dark] .form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #f8f9fa}html[data-netbox-color-mode=dark] .form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}html[data-netbox-color-mode=dark] .form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}html[data-netbox-color-mode=dark] .form-check .form-check-input{float:left;margin-left:-1.5em}html[data-netbox-color-mode=dark] .form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#212529;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(255,255,255,.25);appearance:none;color-adjust:exact}html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]{border-radius:.25em}html[data-netbox-color-mode=dark] .form-check-input[type=radio]{border-radius:50%}html[data-netbox-color-mode=dark] .form-check-input:active{filter:brightness(90%)}html[data-netbox-color-mode=dark] .form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-check-input:checked{background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]:indeterminate{background-color:#6ea8fe;border-color:#6ea8fe;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}html[data-netbox-color-mode=dark] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input:disabled~.form-check-label{opacity:.5}html[data-netbox-color-mode=dark] .form-switch{padding-left:2.5em}html[data-netbox-color-mode=dark] .form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-switch .form-check-input{transition:none}}html[data-netbox-color-mode=dark] .form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-inline{display:inline-block;margin-right:1rem}html[data-netbox-color-mode=dark] .btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html[data-netbox-color-mode=dark] .btn-check[disabled]+.btn,html[data-netbox-color-mode=dark] .btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}html[data-netbox-color-mode=dark] .form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}html[data-netbox-color-mode=dark] .form-range:focus{outline:0}html[data-netbox-color-mode=dark] .form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1b1f22,0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1b1f22,0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-range::-moz-focus-outer{border:0}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#6ea8fe;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb{transition:none}}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb:active{background-color:#d4e5ff}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#6ea8fe;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb{transition:none}}html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb:active{background-color:#d4e5ff}html[data-netbox-color-mode=dark] .form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html[data-netbox-color-mode=dark] .form-range:disabled{pointer-events:none}html[data-netbox-color-mode=dark] .form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html[data-netbox-color-mode=dark] .form-range:disabled::-moz-range-thumb{background-color:#adb5bd}html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}html[data-netbox-color-mode=dark] .form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-floating>label{transition:none}}html[data-netbox-color-mode=dark] .form-floating>.form-control{padding:1rem .75rem}html[data-netbox-color-mode=dark] .form-floating>.form-control::placeholder{color:transparent}html[data-netbox-color-mode=dark] .form-floating>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html[data-netbox-color-mode=dark] .input-group>.form-control,html[data-netbox-color-mode=dark] .input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}html[data-netbox-color-mode=dark] .input-group>.form-control:focus,html[data-netbox-color-mode=dark] .input-group>.form-select:focus{z-index:3}html[data-netbox-color-mode=dark] .input-group .btn{position:relative;z-index:2}html[data-netbox-color-mode=dark] .input-group .btn:focus{z-index:3}html[data-netbox-color-mode=dark] .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;text-align:center;white-space:nowrap;background-color:#495057;border:1px solid #495057;border-radius:.375rem}html[data-netbox-color-mode=dark] .input-group-lg>.form-control,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.input-group-text,html[data-netbox-color-mode=dark] .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .input-group-sm>.form-control,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.input-group-text,html[data-netbox-color-mode=dark] .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.form-select{padding-right:3rem}html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}html[data-netbox-color-mode=dark] .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated html[data-netbox-color-mode=dark]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-tooltip,html[data-netbox-color-mode=dark].is-valid~.valid-feedback,html[data-netbox-color-mode=dark].is-valid~.valid-tooltip{display:block}.was-validated html[data-netbox-color-mode=dark] .form-control:valid,html[data-netbox-color-mode=dark] .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-control:valid:focus,html[data-netbox-color-mode=dark] .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] textarea.form-control:valid,html[data-netbox-color-mode=dark] textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:valid,html[data-netbox-color-mode=dark] .form-select.is-valid{border-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:valid:focus,html[data-netbox-color-mode=dark] .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid,html[data-netbox-color-mode=dark] .form-check-input.is-valid{border-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-valid:checked{background-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-valid~.form-check-label{color:#198754}html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid{z-index:1}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid:focus{z-index:3}html[data-netbox-color-mode=dark] .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}html[data-netbox-color-mode=dark] .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-tooltip,html[data-netbox-color-mode=dark].is-invalid~.invalid-feedback,html[data-netbox-color-mode=dark].is-invalid~.invalid-tooltip{display:block}.was-validated html[data-netbox-color-mode=dark] .form-control:invalid,html[data-netbox-color-mode=dark] .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-control:invalid:focus,html[data-netbox-color-mode=dark] .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] textarea.form-control:invalid,html[data-netbox-color-mode=dark] textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid,html[data-netbox-color-mode=dark] .form-select.is-invalid{border-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:focus,html[data-netbox-color-mode=dark] .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid,html[data-netbox-color-mode=dark] .form-check-input.is-invalid{border-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-invalid~.form-check-label{color:#dc3545}html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid{z-index:2}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid:focus{z-index:3}html[data-netbox-color-mode=dark] .btn{display:inline-block;font-weight:400;line-height:1.5;color:#fff;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .btn{transition:none}}html[data-netbox-color-mode=dark] .btn:hover{color:#fff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=dark] .btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .btn:disabled,html[data-netbox-color-mode=dark] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=dark] .btn{pointer-events:none;opacity:.65}html[data-netbox-color-mode=dark] .btn-primary{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-primary:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:active,html[data-netbox-color-mode=dark] .btn-primary.active,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary:focus,html[data-netbox-color-mode=dark] .btn-primary:active:focus,html[data-netbox-color-mode=dark] .btn-primary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-primary:disabled,html[data-netbox-color-mode=dark] .btn-primary.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-secondary{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-secondary:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:active,html[data-netbox-color-mode=dark] .btn-secondary.active,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary:focus,html[data-netbox-color-mode=dark] .btn-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-secondary:disabled,html[data-netbox-color-mode=dark] .btn-secondary.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-success{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-success:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:active,html[data-netbox-color-mode=dark] .btn-success.active,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success:focus,html[data-netbox-color-mode=dark] .btn-success:active:focus,html[data-netbox-color-mode=dark] .btn-success.active:focus,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-success:disabled,html[data-netbox-color-mode=dark] .btn-success.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-info{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-info:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:active,html[data-netbox-color-mode=dark] .btn-info.active,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info:focus,html[data-netbox-color-mode=dark] .btn-info:active:focus,html[data-netbox-color-mode=dark] .btn-info.active:focus,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-info:disabled,html[data-netbox-color-mode=dark] .btn-info.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-warning{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-warning:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:active,html[data-netbox-color-mode=dark] .btn-warning.active,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning:focus,html[data-netbox-color-mode=dark] .btn-warning:active:focus,html[data-netbox-color-mode=dark] .btn-warning.active:focus,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-warning:disabled,html[data-netbox-color-mode=dark] .btn-warning.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-danger{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-danger:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:active,html[data-netbox-color-mode=dark] .btn-danger.active,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger:focus,html[data-netbox-color-mode=dark] .btn-danger:active:focus,html[data-netbox-color-mode=dark] .btn-danger.active:focus,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-danger:disabled,html[data-netbox-color-mode=dark] .btn-danger.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-light{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-light:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:active,html[data-netbox-color-mode=dark] .btn-light.active,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light:focus,html[data-netbox-color-mode=dark] .btn-light:active:focus,html[data-netbox-color-mode=dark] .btn-light.active:focus,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html[data-netbox-color-mode=dark] .btn-light:disabled,html[data-netbox-color-mode=dark] .btn-light.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-dark{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-dark:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:active,html[data-netbox-color-mode=dark] .btn-dark.active,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark:focus,html[data-netbox-color-mode=dark] .btn-dark:active:focus,html[data-netbox-color-mode=dark] .btn-dark.active:focus,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-dark:disabled,html[data-netbox-color-mode=dark] .btn-dark.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-red{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:active,html[data-netbox-color-mode=dark] .btn-red.active,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red:focus,html[data-netbox-color-mode=dark] .btn-red:active:focus,html[data-netbox-color-mode=dark] .btn-red.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-red:disabled,html[data-netbox-color-mode=dark] .btn-red.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-yellow{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:active,html[data-netbox-color-mode=dark] .btn-yellow.active,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow:focus,html[data-netbox-color-mode=dark] .btn-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-yellow:disabled,html[data-netbox-color-mode=dark] .btn-yellow.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-green{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:active,html[data-netbox-color-mode=dark] .btn-green.active,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green:focus,html[data-netbox-color-mode=dark] .btn-green:active:focus,html[data-netbox-color-mode=dark] .btn-green.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-green:disabled,html[data-netbox-color-mode=dark] .btn-green.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-blue{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:active,html[data-netbox-color-mode=dark] .btn-blue.active,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue:focus,html[data-netbox-color-mode=dark] .btn-blue:active:focus,html[data-netbox-color-mode=dark] .btn-blue.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-blue:disabled,html[data-netbox-color-mode=dark] .btn-blue.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-cyan{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:active,html[data-netbox-color-mode=dark] .btn-cyan.active,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan:focus,html[data-netbox-color-mode=dark] .btn-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-cyan:disabled,html[data-netbox-color-mode=dark] .btn-cyan.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-indigo{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:active,html[data-netbox-color-mode=dark] .btn-indigo.active,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo:focus,html[data-netbox-color-mode=dark] .btn-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html[data-netbox-color-mode=dark] .btn-indigo:disabled,html[data-netbox-color-mode=dark] .btn-indigo.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-purple{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:active,html[data-netbox-color-mode=dark] .btn-purple.active,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple:focus,html[data-netbox-color-mode=dark] .btn-purple:active:focus,html[data-netbox-color-mode=dark] .btn-purple.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html[data-netbox-color-mode=dark] .btn-purple:disabled,html[data-netbox-color-mode=dark] .btn-purple.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-pink{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:active,html[data-netbox-color-mode=dark] .btn-pink.active,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink:focus,html[data-netbox-color-mode=dark] .btn-pink:active:focus,html[data-netbox-color-mode=dark] .btn-pink.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html[data-netbox-color-mode=dark] .btn-pink:disabled,html[data-netbox-color-mode=dark] .btn-pink.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:active,html[data-netbox-color-mode=dark] .btn-darker.active,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker:focus,html[data-netbox-color-mode=dark] .btn-darker:active:focus,html[data-netbox-color-mode=dark] .btn-darker.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}html[data-netbox-color-mode=dark] .btn-darker:disabled,html[data-netbox-color-mode=dark] .btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:active,html[data-netbox-color-mode=dark] .btn-darkest.active,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest:focus,html[data-netbox-color-mode=dark] .btn-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}html[data-netbox-color-mode=dark] .btn-darkest:disabled,html[data-netbox-color-mode=dark] .btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:active,html[data-netbox-color-mode=dark] .btn-gray.active,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray:focus,html[data-netbox-color-mode=dark] .btn-gray:active:focus,html[data-netbox-color-mode=dark] .btn-gray.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html[data-netbox-color-mode=dark] .btn-gray:disabled,html[data-netbox-color-mode=dark] .btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:active,html[data-netbox-color-mode=dark] .btn-gray-100.active,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100:focus,html[data-netbox-color-mode=dark] .btn-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html[data-netbox-color-mode=dark] .btn-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:active,html[data-netbox-color-mode=dark] .btn-gray-200.active,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200:focus,html[data-netbox-color-mode=dark] .btn-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}html[data-netbox-color-mode=dark] .btn-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:active,html[data-netbox-color-mode=dark] .btn-gray-300.active,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300:focus,html[data-netbox-color-mode=dark] .btn-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html[data-netbox-color-mode=dark] .btn-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:active,html[data-netbox-color-mode=dark] .btn-gray-400.active,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400:focus,html[data-netbox-color-mode=dark] .btn-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html[data-netbox-color-mode=dark] .btn-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:active,html[data-netbox-color-mode=dark] .btn-gray-500.active,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500:focus,html[data-netbox-color-mode=dark] .btn-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:active,html[data-netbox-color-mode=dark] .btn-gray-600.active,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600:focus,html[data-netbox-color-mode=dark] .btn-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html[data-netbox-color-mode=dark] .btn-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:active,html[data-netbox-color-mode=dark] .btn-gray-700.active,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700:focus,html[data-netbox-color-mode=dark] .btn-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html[data-netbox-color-mode=dark] .btn-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:active,html[data-netbox-color-mode=dark] .btn-gray-800.active,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800:focus,html[data-netbox-color-mode=dark] .btn-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}html[data-netbox-color-mode=dark] .btn-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:active,html[data-netbox-color-mode=dark] .btn-gray-900.active,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900:focus,html[data-netbox-color-mode=dark] .btn-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html[data-netbox-color-mode=dark] .btn-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:active,html[data-netbox-color-mode=dark] .btn-red-100.active,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100:focus,html[data-netbox-color-mode=dark] .btn-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}html[data-netbox-color-mode=dark] .btn-red-100:disabled,html[data-netbox-color-mode=dark] .btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:active,html[data-netbox-color-mode=dark] .btn-red-200.active,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200:focus,html[data-netbox-color-mode=dark] .btn-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}html[data-netbox-color-mode=dark] .btn-red-200:disabled,html[data-netbox-color-mode=dark] .btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:active,html[data-netbox-color-mode=dark] .btn-red-300.active,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300:focus,html[data-netbox-color-mode=dark] .btn-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-red-300:disabled,html[data-netbox-color-mode=dark] .btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:active,html[data-netbox-color-mode=dark] .btn-red-400.active,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400:focus,html[data-netbox-color-mode=dark] .btn-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}html[data-netbox-color-mode=dark] .btn-red-400:disabled,html[data-netbox-color-mode=dark] .btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:active,html[data-netbox-color-mode=dark] .btn-red-500.active,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500:focus,html[data-netbox-color-mode=dark] .btn-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html[data-netbox-color-mode=dark] .btn-red-500:disabled,html[data-netbox-color-mode=dark] .btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:active,html[data-netbox-color-mode=dark] .btn-red-600.active,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600:focus,html[data-netbox-color-mode=dark] .btn-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}html[data-netbox-color-mode=dark] .btn-red-600:disabled,html[data-netbox-color-mode=dark] .btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-red-700{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:active,html[data-netbox-color-mode=dark] .btn-red-700.active,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700:focus,html[data-netbox-color-mode=dark] .btn-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}html[data-netbox-color-mode=dark] .btn-red-700:disabled,html[data-netbox-color-mode=dark] .btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:active,html[data-netbox-color-mode=dark] .btn-red-800.active,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800:focus,html[data-netbox-color-mode=dark] .btn-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}html[data-netbox-color-mode=dark] .btn-red-800:disabled,html[data-netbox-color-mode=dark] .btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:active,html[data-netbox-color-mode=dark] .btn-red-900.active,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900:focus,html[data-netbox-color-mode=dark] .btn-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}html[data-netbox-color-mode=dark] .btn-red-900:disabled,html[data-netbox-color-mode=dark] .btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:active,html[data-netbox-color-mode=dark] .btn-yellow-100.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}html[data-netbox-color-mode=dark] .btn-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:active,html[data-netbox-color-mode=dark] .btn-yellow-200.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}html[data-netbox-color-mode=dark] .btn-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:active,html[data-netbox-color-mode=dark] .btn-yellow-300.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:active,html[data-netbox-color-mode=dark] .btn-yellow-400.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}html[data-netbox-color-mode=dark] .btn-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:active,html[data-netbox-color-mode=dark] .btn-yellow-500.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html[data-netbox-color-mode=dark] .btn-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:active,html[data-netbox-color-mode=dark] .btn-yellow-600.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}html[data-netbox-color-mode=dark] .btn-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:active,html[data-netbox-color-mode=dark] .btn-yellow-700.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}html[data-netbox-color-mode=dark] .btn-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:active,html[data-netbox-color-mode=dark] .btn-yellow-800.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}html[data-netbox-color-mode=dark] .btn-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:active,html[data-netbox-color-mode=dark] .btn-yellow-900.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}html[data-netbox-color-mode=dark] .btn-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:active,html[data-netbox-color-mode=dark] .btn-green-100.active,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100:focus,html[data-netbox-color-mode=dark] .btn-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}html[data-netbox-color-mode=dark] .btn-green-100:disabled,html[data-netbox-color-mode=dark] .btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:active,html[data-netbox-color-mode=dark] .btn-green-200.active,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200:focus,html[data-netbox-color-mode=dark] .btn-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}html[data-netbox-color-mode=dark] .btn-green-200:disabled,html[data-netbox-color-mode=dark] .btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:active,html[data-netbox-color-mode=dark] .btn-green-300.active,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300:focus,html[data-netbox-color-mode=dark] .btn-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-green-300:disabled,html[data-netbox-color-mode=dark] .btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:active,html[data-netbox-color-mode=dark] .btn-green-400.active,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400:focus,html[data-netbox-color-mode=dark] .btn-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}html[data-netbox-color-mode=dark] .btn-green-400:disabled,html[data-netbox-color-mode=dark] .btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-green-500{color:#fff;background-color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:active,html[data-netbox-color-mode=dark] .btn-green-500.active,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500:focus,html[data-netbox-color-mode=dark] .btn-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html[data-netbox-color-mode=dark] .btn-green-500:disabled,html[data-netbox-color-mode=dark] .btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:active,html[data-netbox-color-mode=dark] .btn-green-600.active,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600:focus,html[data-netbox-color-mode=dark] .btn-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}html[data-netbox-color-mode=dark] .btn-green-600:disabled,html[data-netbox-color-mode=dark] .btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:active,html[data-netbox-color-mode=dark] .btn-green-700.active,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700:focus,html[data-netbox-color-mode=dark] .btn-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}html[data-netbox-color-mode=dark] .btn-green-700:disabled,html[data-netbox-color-mode=dark] .btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:active,html[data-netbox-color-mode=dark] .btn-green-800.active,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800:focus,html[data-netbox-color-mode=dark] .btn-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}html[data-netbox-color-mode=dark] .btn-green-800:disabled,html[data-netbox-color-mode=dark] .btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:active,html[data-netbox-color-mode=dark] .btn-green-900.active,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900:focus,html[data-netbox-color-mode=dark] .btn-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}html[data-netbox-color-mode=dark] .btn-green-900:disabled,html[data-netbox-color-mode=dark] .btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:active,html[data-netbox-color-mode=dark] .btn-blue-100.active,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100:focus,html[data-netbox-color-mode=dark] .btn-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}html[data-netbox-color-mode=dark] .btn-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:active,html[data-netbox-color-mode=dark] .btn-blue-200.active,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200:focus,html[data-netbox-color-mode=dark] .btn-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}html[data-netbox-color-mode=dark] .btn-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:active,html[data-netbox-color-mode=dark] .btn-blue-300.active,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300:focus,html[data-netbox-color-mode=dark] .btn-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:active,html[data-netbox-color-mode=dark] .btn-blue-400.active,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400:focus,html[data-netbox-color-mode=dark] .btn-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}html[data-netbox-color-mode=dark] .btn-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:active,html[data-netbox-color-mode=dark] .btn-blue-500.active,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500:focus,html[data-netbox-color-mode=dark] .btn-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html[data-netbox-color-mode=dark] .btn-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:active,html[data-netbox-color-mode=dark] .btn-blue-600.active,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600:focus,html[data-netbox-color-mode=dark] .btn-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}html[data-netbox-color-mode=dark] .btn-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:active,html[data-netbox-color-mode=dark] .btn-blue-700.active,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700:focus,html[data-netbox-color-mode=dark] .btn-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}html[data-netbox-color-mode=dark] .btn-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:active,html[data-netbox-color-mode=dark] .btn-blue-800.active,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800:focus,html[data-netbox-color-mode=dark] .btn-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}html[data-netbox-color-mode=dark] .btn-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:active,html[data-netbox-color-mode=dark] .btn-blue-900.active,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900:focus,html[data-netbox-color-mode=dark] .btn-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}html[data-netbox-color-mode=dark] .btn-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:active,html[data-netbox-color-mode=dark] .btn-cyan-100.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}html[data-netbox-color-mode=dark] .btn-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:active,html[data-netbox-color-mode=dark] .btn-cyan-200.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}html[data-netbox-color-mode=dark] .btn-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:active,html[data-netbox-color-mode=dark] .btn-cyan-300.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:active,html[data-netbox-color-mode=dark] .btn-cyan-400.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}html[data-netbox-color-mode=dark] .btn-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:active,html[data-netbox-color-mode=dark] .btn-cyan-500.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html[data-netbox-color-mode=dark] .btn-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:active,html[data-netbox-color-mode=dark] .btn-cyan-600.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}html[data-netbox-color-mode=dark] .btn-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:active,html[data-netbox-color-mode=dark] .btn-cyan-700.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}html[data-netbox-color-mode=dark] .btn-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:active,html[data-netbox-color-mode=dark] .btn-cyan-800.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}html[data-netbox-color-mode=dark] .btn-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:active,html[data-netbox-color-mode=dark] .btn-cyan-900.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}html[data-netbox-color-mode=dark] .btn-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:active,html[data-netbox-color-mode=dark] .btn-indigo-100.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}html[data-netbox-color-mode=dark] .btn-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:active,html[data-netbox-color-mode=dark] .btn-indigo-200.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}html[data-netbox-color-mode=dark] .btn-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:active,html[data-netbox-color-mode=dark] .btn-indigo-300.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html[data-netbox-color-mode=dark] .btn-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:active,html[data-netbox-color-mode=dark] .btn-indigo-400.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}html[data-netbox-color-mode=dark] .btn-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:active,html[data-netbox-color-mode=dark] .btn-indigo-500.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html[data-netbox-color-mode=dark] .btn-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:active,html[data-netbox-color-mode=dark] .btn-indigo-600.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}html[data-netbox-color-mode=dark] .btn-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:active,html[data-netbox-color-mode=dark] .btn-indigo-700.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}html[data-netbox-color-mode=dark] .btn-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:active,html[data-netbox-color-mode=dark] .btn-indigo-800.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}html[data-netbox-color-mode=dark] .btn-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:active,html[data-netbox-color-mode=dark] .btn-indigo-900.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}html[data-netbox-color-mode=dark] .btn-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:active,html[data-netbox-color-mode=dark] .btn-purple-100.active,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100:focus,html[data-netbox-color-mode=dark] .btn-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}html[data-netbox-color-mode=dark] .btn-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:active,html[data-netbox-color-mode=dark] .btn-purple-200.active,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200:focus,html[data-netbox-color-mode=dark] .btn-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}html[data-netbox-color-mode=dark] .btn-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:active,html[data-netbox-color-mode=dark] .btn-purple-300.active,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300:focus,html[data-netbox-color-mode=dark] .btn-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html[data-netbox-color-mode=dark] .btn-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:active,html[data-netbox-color-mode=dark] .btn-purple-400.active,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400:focus,html[data-netbox-color-mode=dark] .btn-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}html[data-netbox-color-mode=dark] .btn-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:active,html[data-netbox-color-mode=dark] .btn-purple-500.active,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500:focus,html[data-netbox-color-mode=dark] .btn-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html[data-netbox-color-mode=dark] .btn-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:active,html[data-netbox-color-mode=dark] .btn-purple-600.active,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600:focus,html[data-netbox-color-mode=dark] .btn-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}html[data-netbox-color-mode=dark] .btn-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:active,html[data-netbox-color-mode=dark] .btn-purple-700.active,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700:focus,html[data-netbox-color-mode=dark] .btn-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}html[data-netbox-color-mode=dark] .btn-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:active,html[data-netbox-color-mode=dark] .btn-purple-800.active,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800:focus,html[data-netbox-color-mode=dark] .btn-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}html[data-netbox-color-mode=dark] .btn-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:active,html[data-netbox-color-mode=dark] .btn-purple-900.active,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900:focus,html[data-netbox-color-mode=dark] .btn-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}html[data-netbox-color-mode=dark] .btn-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:active,html[data-netbox-color-mode=dark] .btn-pink-100.active,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100:focus,html[data-netbox-color-mode=dark] .btn-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}html[data-netbox-color-mode=dark] .btn-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:active,html[data-netbox-color-mode=dark] .btn-pink-200.active,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200:focus,html[data-netbox-color-mode=dark] .btn-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}html[data-netbox-color-mode=dark] .btn-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:active,html[data-netbox-color-mode=dark] .btn-pink-300.active,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300:focus,html[data-netbox-color-mode=dark] .btn-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html[data-netbox-color-mode=dark] .btn-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:active,html[data-netbox-color-mode=dark] .btn-pink-400.active,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400:focus,html[data-netbox-color-mode=dark] .btn-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}html[data-netbox-color-mode=dark] .btn-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:active,html[data-netbox-color-mode=dark] .btn-pink-500.active,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500:focus,html[data-netbox-color-mode=dark] .btn-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html[data-netbox-color-mode=dark] .btn-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:active,html[data-netbox-color-mode=dark] .btn-pink-600.active,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600:focus,html[data-netbox-color-mode=dark] .btn-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}html[data-netbox-color-mode=dark] .btn-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:active,html[data-netbox-color-mode=dark] .btn-pink-700.active,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700:focus,html[data-netbox-color-mode=dark] .btn-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}html[data-netbox-color-mode=dark] .btn-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:active,html[data-netbox-color-mode=dark] .btn-pink-800.active,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800:focus,html[data-netbox-color-mode=dark] .btn-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}html[data-netbox-color-mode=dark] .btn-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:active,html[data-netbox-color-mode=dark] .btn-pink-900.active,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900:focus,html[data-netbox-color-mode=dark] .btn-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}html[data-netbox-color-mode=dark] .btn-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-outline-primary{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-primary:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:active,html[data-netbox-color-mode=dark] .btn-outline-primary.active,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,html[data-netbox-color-mode=dark] .btn-outline-primary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-primary:disabled,html[data-netbox-color-mode=dark] .btn-outline-primary.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-secondary{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-secondary:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:active,html[data-netbox-color-mode=dark] .btn-outline-secondary.active,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-secondary:disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-success{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-success:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:active,html[data-netbox-color-mode=dark] .btn-outline-success.active,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success:focus,html[data-netbox-color-mode=dark] .btn-outline-success:active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-success:disabled,html[data-netbox-color-mode=dark] .btn-outline-success.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-info{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-info:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:active,html[data-netbox-color-mode=dark] .btn-outline-info.active,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info:focus,html[data-netbox-color-mode=dark] .btn-outline-info:active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-info:disabled,html[data-netbox-color-mode=dark] .btn-outline-info.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-warning{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-warning:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:active,html[data-netbox-color-mode=dark] .btn-outline-warning.active,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,html[data-netbox-color-mode=dark] .btn-outline-warning:active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-warning:disabled,html[data-netbox-color-mode=dark] .btn-outline-warning.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-danger{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-danger:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:active,html[data-netbox-color-mode=dark] .btn-outline-danger.active,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,html[data-netbox-color-mode=dark] .btn-outline-danger:active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-danger:disabled,html[data-netbox-color-mode=dark] .btn-outline-danger.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-light{color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-outline-light:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:active,html[data-netbox-color-mode=dark] .btn-outline-light.active,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light:focus,html[data-netbox-color-mode=dark] .btn-outline-light:active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html[data-netbox-color-mode=dark] .btn-outline-light:disabled,html[data-netbox-color-mode=dark] .btn-outline-light.disabled{color:#dee2e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-dark{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-dark:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:active,html[data-netbox-color-mode=dark] .btn-outline-dark.active,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,html[data-netbox-color-mode=dark] .btn-outline-dark:active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-dark:disabled,html[data-netbox-color-mode=dark] .btn-outline-dark.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-red:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:active,html[data-netbox-color-mode=dark] .btn-outline-red.active,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red:focus,html[data-netbox-color-mode=dark] .btn-outline-red:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-red:disabled,html[data-netbox-color-mode=dark] .btn-outline-red.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-yellow:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:active,html[data-netbox-color-mode=dark] .btn-outline-yellow.active,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-yellow:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-green:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:active,html[data-netbox-color-mode=dark] .btn-outline-green.active,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green:focus,html[data-netbox-color-mode=dark] .btn-outline-green:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-green:disabled,html[data-netbox-color-mode=dark] .btn-outline-green.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-blue:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:active,html[data-netbox-color-mode=dark] .btn-outline-blue.active,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,html[data-netbox-color-mode=dark] .btn-outline-blue:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-blue:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-cyan:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:active,html[data-netbox-color-mode=dark] .btn-outline-cyan.active,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-cyan:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo{color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-outline-indigo:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:active,html[data-netbox-color-mode=dark] .btn-outline-indigo.active,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html[data-netbox-color-mode=dark] .btn-outline-indigo:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo.disabled{color:#a370f7;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple{color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-outline-purple:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:active,html[data-netbox-color-mode=dark] .btn-outline-purple.active,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,html[data-netbox-color-mode=dark] .btn-outline-purple:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html[data-netbox-color-mode=dark] .btn-outline-purple:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple.disabled{color:#a98eda;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink{color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-outline-pink:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:active,html[data-netbox-color-mode=dark] .btn-outline-pink.active,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,html[data-netbox-color-mode=dark] .btn-outline-pink:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html[data-netbox-color-mode=dark] .btn-outline-pink:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink.disabled{color:#e685b5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-darker{color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:active,html[data-netbox-color-mode=dark] .btn-outline-darker.active,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,html[data-netbox-color-mode=dark] .btn-outline-darker:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}html[data-netbox-color-mode=dark] .btn-outline-darker:disabled,html[data-netbox-color-mode=dark] .btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-darkest{color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:active,html[data-netbox-color-mode=dark] .btn-outline-darkest.active,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}html[data-netbox-color-mode=dark] .btn-outline-darkest:disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray{color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:active,html[data-netbox-color-mode=dark] .btn-outline-gray.active,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,html[data-netbox-color-mode=dark] .btn-outline-gray:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html[data-netbox-color-mode=dark] .btn-outline-gray:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray.disabled{color:#ced4da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html[data-netbox-color-mode=dark] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}html[data-netbox-color-mode=dark] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html[data-netbox-color-mode=dark] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-400{color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html[data-netbox-color-mode=dark] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-600{color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html[data-netbox-color-mode=dark] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-700{color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}html[data-netbox-color-mode=dark] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700.disabled{color:#495057;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-800{color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}html[data-netbox-color-mode=dark] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-900{color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html[data-netbox-color-mode=dark] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900.disabled{color:#212529;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:active,html[data-netbox-color-mode=dark] .btn-outline-red-100.active,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}html[data-netbox-color-mode=dark] .btn-outline-red-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:active,html[data-netbox-color-mode=dark] .btn-outline-red-200.active,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}html[data-netbox-color-mode=dark] .btn-outline-red-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-300{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:active,html[data-netbox-color-mode=dark] .btn-outline-red-300.active,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-red-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:active,html[data-netbox-color-mode=dark] .btn-outline-red-400.active,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}html[data-netbox-color-mode=dark] .btn-outline-red-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-500{color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:active,html[data-netbox-color-mode=dark] .btn-outline-red-500.active,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html[data-netbox-color-mode=dark] .btn-outline-red-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-600{color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:active,html[data-netbox-color-mode=dark] .btn-outline-red-600.active,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}html[data-netbox-color-mode=dark] .btn-outline-red-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-700{color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:active,html[data-netbox-color-mode=dark] .btn-outline-red-700.active,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}html[data-netbox-color-mode=dark] .btn-outline-red-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700.disabled{color:#842029;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-800{color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:active,html[data-netbox-color-mode=dark] .btn-outline-red-800.active,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}html[data-netbox-color-mode=dark] .btn-outline-red-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800.disabled{color:#58151c;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:active,html[data-netbox-color-mode=dark] .btn-outline-red-900.active,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}html[data-netbox-color-mode=dark] .btn-outline-red-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}html[data-netbox-color-mode=dark] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}html[data-netbox-color-mode=dark] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}html[data-netbox-color-mode=dark] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html[data-netbox-color-mode=dark] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}html[data-netbox-color-mode=dark] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-700{color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}html[data-netbox-color-mode=dark] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-800{color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}html[data-netbox-color-mode=dark] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-900{color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}html[data-netbox-color-mode=dark] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:active,html[data-netbox-color-mode=dark] .btn-outline-green-100.active,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}html[data-netbox-color-mode=dark] .btn-outline-green-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:active,html[data-netbox-color-mode=dark] .btn-outline-green-200.active,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}html[data-netbox-color-mode=dark] .btn-outline-green-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-300{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:active,html[data-netbox-color-mode=dark] .btn-outline-green-300.active,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-green-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-400{color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:active,html[data-netbox-color-mode=dark] .btn-outline-green-400.active,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}html[data-netbox-color-mode=dark] .btn-outline-green-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400.disabled{color:#479f76;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-500{color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:active,html[data-netbox-color-mode=dark] .btn-outline-green-500.active,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html[data-netbox-color-mode=dark] .btn-outline-green-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500.disabled{color:#198754;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-600{color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:active,html[data-netbox-color-mode=dark] .btn-outline-green-600.active,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}html[data-netbox-color-mode=dark] .btn-outline-green-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600.disabled{color:#146c43;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-700{color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:active,html[data-netbox-color-mode=dark] .btn-outline-green-700.active,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}html[data-netbox-color-mode=dark] .btn-outline-green-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-800{color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:active,html[data-netbox-color-mode=dark] .btn-outline-green-800.active,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}html[data-netbox-color-mode=dark] .btn-outline-green-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-900{color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:active,html[data-netbox-color-mode=dark] .btn-outline-green-900.active,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}html[data-netbox-color-mode=dark] .btn-outline-green-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900.disabled{color:#051b11;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}html[data-netbox-color-mode=dark] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}html[data-netbox-color-mode=dark] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}html[data-netbox-color-mode=dark] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html[data-netbox-color-mode=dark] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}html[data-netbox-color-mode=dark] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-700{color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}html[data-netbox-color-mode=dark] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700.disabled{color:#084298;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-800{color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}html[data-netbox-color-mode=dark] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-900{color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}html[data-netbox-color-mode=dark] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900.disabled{color:#031633;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}html[data-netbox-color-mode=dark] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}html[data-netbox-color-mode=dark] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}html[data-netbox-color-mode=dark] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html[data-netbox-color-mode=dark] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}html[data-netbox-color-mode=dark] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-700{color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}html[data-netbox-color-mode=dark] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-800{color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}html[data-netbox-color-mode=dark] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-900{color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}html[data-netbox-color-mode=dark] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}html[data-netbox-color-mode=dark] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}html[data-netbox-color-mode=dark] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html[data-netbox-color-mode=dark] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}html[data-netbox-color-mode=dark] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html[data-netbox-color-mode=dark] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}html[data-netbox-color-mode=dark] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}html[data-netbox-color-mode=dark] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-800{color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}html[data-netbox-color-mode=dark] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-900{color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}html[data-netbox-color-mode=dark] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}html[data-netbox-color-mode=dark] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}html[data-netbox-color-mode=dark] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-300{color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html[data-netbox-color-mode=dark] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}html[data-netbox-color-mode=dark] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html[data-netbox-color-mode=dark] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-600{color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}html[data-netbox-color-mode=dark] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-700{color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}html[data-netbox-color-mode=dark] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700.disabled{color:#432874;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}html[data-netbox-color-mode=dark] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-900{color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}html[data-netbox-color-mode=dark] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}html[data-netbox-color-mode=dark] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-200{color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}html[data-netbox-color-mode=dark] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-300{color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html[data-netbox-color-mode=dark] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}html[data-netbox-color-mode=dark] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-500{color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html[data-netbox-color-mode=dark] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-600{color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}html[data-netbox-color-mode=dark] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-700{color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}html[data-netbox-color-mode=dark] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-800{color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}html[data-netbox-color-mode=dark] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800.disabled{color:#561435;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}html[data-netbox-color-mode=dark] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}html[data-netbox-color-mode=dark] .btn-link:hover{color:#0a58ca}html[data-netbox-color-mode=dark] .btn-link:disabled,html[data-netbox-color-mode=dark] .btn-link.disabled{color:#dee2e6}html[data-netbox-color-mode=dark] .btn-lg,html[data-netbox-color-mode=dark] .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .btn-sm,html[data-netbox-color-mode=dark] .btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .fade{transition:opacity .15s linear}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .fade{transition:none}}html[data-netbox-color-mode=dark] .fade:not(.show){opacity:0}html[data-netbox-color-mode=dark] .collapse:not(.show){display:none}html[data-netbox-color-mode=dark] .collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .collapsing{transition:none}}html[data-netbox-color-mode=dark] .dropup,html[data-netbox-color-mode=dark] .dropend,html[data-netbox-color-mode=dark] .dropdown,html[data-netbox-color-mode=dark] .dropstart{position:relative}html[data-netbox-color-mode=dark] .dropdown-toggle{white-space:nowrap}html[data-netbox-color-mode=dark] .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html[data-netbox-color-mode=dark] .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#fff;text-align:left;list-style:none;background-color:#212529;background-clip:padding-box;border:1px solid rgba(255,255,255,.15);border-radius:.375rem}html[data-netbox-color-mode=dark] .dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}html[data-netbox-color-mode=dark] .dropdown-menu-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .dropdown-menu-sm-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-sm-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .dropdown-menu-md-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-md-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .dropdown-menu-lg-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-lg-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .dropdown-menu-xl-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-xl-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}html[data-netbox-color-mode=dark] .dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after{vertical-align:0}html[data-netbox-color-mode=dark] .dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after{display:none}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before{vertical-align:0}html[data-netbox-color-mode=dark] .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}html[data-netbox-color-mode=dark] .dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#f8f9fa;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}html[data-netbox-color-mode=dark] .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-item:focus{color:#fff;background-color:#6c757d}html[data-netbox-color-mode=dark] .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}html[data-netbox-color-mode=dark] .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-item:disabled{color:#343a40;pointer-events:none;background-color:transparent}html[data-netbox-color-mode=dark] .dropdown-menu.show{display:block}html[data-netbox-color-mode=dark] .dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}html[data-netbox-color-mode=dark] .dropdown-item-text{display:block;padding:.25rem 1rem;color:#f8f9fa}html[data-netbox-color-mode=dark] .dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item{color:#dee2e6}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-divider{border-color:#00000026}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item-text{color:#dee2e6}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-header{color:#adb5bd}html[data-netbox-color-mode=dark] .btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html[data-netbox-color-mode=dark] .btn-group>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn{position:relative;flex:1 1 auto}html[data-netbox-color-mode=dark] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:hover,html[data-netbox-color-mode=dark] .btn-group>.btn:focus,html[data-netbox-color-mode=dark] .btn-group>.btn:active,html[data-netbox-color-mode=dark] .btn-group>.btn.active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn.active{z-index:1}html[data-netbox-color-mode=dark] .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .btn-toolbar .input-group{width:auto}html[data-netbox-color-mode=dark] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child){margin-left:-1px}html[data-netbox-color-mode=dark] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=dark] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=dark] .dropdown-toggle-split:after{margin-left:0}.dropstart html[data-netbox-color-mode=dark] .dropdown-toggle-split:before{margin-right:0}html[data-netbox-color-mode=dark] .btn-sm+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html[data-netbox-color-mode=dark] .btn-lg+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html[data-netbox-color-mode=dark] .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group{width:100%}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}html[data-netbox-color-mode=dark] .nav-link{display:block;padding:.5rem 1rem;color:#fff;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .nav-link{transition:none}}html[data-netbox-color-mode=dark] .nav-link.disabled{color:#343a40;pointer-events:none;cursor:default}html[data-netbox-color-mode=dark] .nav-tabs{border-bottom:1px solid #495057}html[data-netbox-color-mode=dark] .nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:focus{border-color:rgba(52,58,64,.5) rgba(52,58,64,.5) #495057;isolation:isolate}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.disabled{color:#343a40;background-color:transparent;border-color:transparent}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-item.show .nav-link{color:#f8f9fa;background-color:#1b1f22;border-color:#343a40 #343a40 #1b1f22}html[data-netbox-color-mode=dark] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .nav-pills .nav-link{background:none;border:0;border-radius:.375rem}html[data-netbox-color-mode=dark] .nav-pills .nav-link.active,html[data-netbox-color-mode=dark] .nav-pills .show>.nav-link{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .nav-fill>.nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item{flex:1 1 auto;text-align:center}html[data-netbox-color-mode=dark] .nav-justified>.nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}html[data-netbox-color-mode=dark] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item .nav-link{width:100%}html[data-netbox-color-mode=dark] .tab-content>.tab-pane{display:none}html[data-netbox-color-mode=dark] .tab-content>.active{display:block}html[data-netbox-color-mode=dark] .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar>.container,html[data-netbox-color-mode=dark] .navbar>.container-fluid,html[data-netbox-color-mode=dark] .navbar>.container-sm,html[data-netbox-color-mode=dark] .navbar>.container-md,html[data-netbox-color-mode=dark] .navbar>.container-lg,html[data-netbox-color-mode=dark] .navbar>.container-xl,html[data-netbox-color-mode=dark] .navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}html[data-netbox-color-mode=dark] .navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}html[data-netbox-color-mode=dark] .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html[data-netbox-color-mode=dark] .navbar-nav .nav-link{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] .navbar-nav .dropdown-menu{position:static}html[data-netbox-color-mode=dark] .navbar-text{padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}html[data-netbox-color-mode=dark] .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .navbar-toggler{transition:none}}html[data-netbox-color-mode=dark] .navbar-toggler:hover{text-decoration:none}html[data-netbox-color-mode=dark] .navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}html[data-netbox-color-mode=dark] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}html[data-netbox-color-mode=dark] .navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-toggler{display:none}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-toggler{display:none}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-toggler{display:none}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-toggler{display:none}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-toggler{display:none}}html[data-netbox-color-mode=dark] .navbar-expand{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand .navbar-toggler{display:none}html[data-netbox-color-mode=dark] .navbar-light .navbar-brand{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:focus{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link{color:#adb5bd}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:focus{color:#000000b3}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.active{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler{color:#adb5bd;border-color:#495057}html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23adb5bd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .navbar-light .navbar-text{color:#adb5bd}html[data-netbox-color-mode=dark] .navbar-light .navbar-text a,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:focus{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:focus{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link{color:#ffffff8c}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.active{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .navbar-dark .navbar-text{color:#ffffff8c}html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:focus{color:#fff}html[data-netbox-color-mode=dark] .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#212529;background-clip:border-box;border:1px solid rgba(255,255,255,.125);border-radius:.375rem}html[data-netbox-color-mode=dark] .card>hr{margin-right:0;margin-left:0}html[data-netbox-color-mode=dark] .card>.list-group{border-top:inherit;border-bottom:inherit}html[data-netbox-color-mode=dark] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card>.card-header+.list-group,html[data-netbox-color-mode=dark] .card>.list-group+.card-footer{border-top:0}html[data-netbox-color-mode=dark] .card-body{flex:1 1 auto;padding:1rem}html[data-netbox-color-mode=dark] .card-title{margin-bottom:.5rem}html[data-netbox-color-mode=dark] .card-subtitle{margin-top:-.25rem;margin-bottom:0}html[data-netbox-color-mode=dark] .card-text:last-child{margin-bottom:0}html[data-netbox-color-mode=dark] .card-link:hover{text-decoration:none}html[data-netbox-color-mode=dark] .card-link+.card-link{margin-left:1rem}html[data-netbox-color-mode=dark] .card-header{padding:.5rem 1rem;margin-bottom:0;background-color:"unset";border-bottom:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}html[data-netbox-color-mode=dark] .card-footer{padding:.5rem 1rem;background-color:"unset";border-top:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}html[data-netbox-color-mode=dark] .card-header-tabs .nav-link.active{background-color:#212529;border-bottom-color:#212529}html[data-netbox-color-mode=dark] .card-header-pills{margin-right:-.5rem;margin-left:-.5rem}html[data-netbox-color-mode=dark] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=dark] .card-img-bottom{width:100%}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-group>.card{margin-bottom:.75rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .card-group{display:flex;flex-flow:row wrap}html[data-netbox-color-mode=dark] .card-group>.card{flex:1 0 0%;margin-bottom:0}html[data-netbox-color-mode=dark] .card-group>.card+.card{margin-left:0;border-left:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}html[data-netbox-color-mode=dark] .accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#fff;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .accordion-button{transition:none}}html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed){color:#000;background-color:#6397e5;box-shadow:inset 0 -1px #495057}html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}html[data-netbox-color-mode=dark] .accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .accordion-button:after{transition:none}}html[data-netbox-color-mode=dark] .accordion-button:hover{z-index:2}html[data-netbox-color-mode=dark] .accordion-button:focus{z-index:3;border-color:#7db1fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .accordion-header{margin-bottom:0}html[data-netbox-color-mode=dark] .accordion-item{background-color:transparent;border:1px solid #495057}html[data-netbox-color-mode=dark] .accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .accordion-item:not(:first-of-type){border-top:0}html[data-netbox-color-mode=dark] .accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-body{padding:1rem 1.25rem}html[data-netbox-color-mode=dark] .accordion-flush .accordion-collapse{border-width:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:first-child{border-top:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:last-child{border-bottom:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item .accordion-button{border-radius:0}html[data-netbox-color-mode=dark] .breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#f8f9fa;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%23f8f9fa'/%3E%3C/svg%3E"))}html[data-netbox-color-mode=dark] .breadcrumb-item.active{color:#fff}html[data-netbox-color-mode=dark] .pagination{display:flex;padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .page-link{position:relative;display:block;color:#9ec5fe;text-decoration:none;background-color:#343a40;border:1px solid #6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .page-link{transition:none}}html[data-netbox-color-mode=dark] .page-link:hover{z-index:2;color:#cfe2ff;background-color:#ced4da;border-color:#adb5bd}html[data-netbox-color-mode=dark] .page-link:focus{z-index:3;color:#cfe2ff;background-color:#ced4da;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .page-item:not(:first-child) .page-link{margin-left:-1px}html[data-netbox-color-mode=dark] .page-item.active .page-link{z-index:3;color:#fff;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#343a40;border-color:#6c757d}html[data-netbox-color-mode=dark] .page-link{padding:.375rem .75rem}html[data-netbox-color-mode=dark] .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}html[data-netbox-color-mode=dark] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}html[data-netbox-color-mode=dark] .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}html[data-netbox-color-mode=dark] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}html[data-netbox-color-mode=dark] .badge:empty{display:none}html[data-netbox-color-mode=dark] .btn .badge{position:relative;top:-1px}html[data-netbox-color-mode=dark] .alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}html[data-netbox-color-mode=dark] .alert-heading{color:inherit}html[data-netbox-color-mode=dark] .alert-link{font-weight:700}html[data-netbox-color-mode=dark] .alert-dismissible{padding-right:3rem}html[data-netbox-color-mode=dark] .alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}html[data-netbox-color-mode=dark] .alert-primary{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-primary .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-secondary{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-secondary .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-success{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-success .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-info{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-info .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-warning{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-warning .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-danger{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-danger .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-light{color:#2c2d2e;background-color:#e0e3e7;border-color:#e5e8eb}html[data-netbox-color-mode=dark] .alert-light .alert-link{color:#232425}html[data-netbox-color-mode=dark] .alert-dark{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-dark .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-red{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-red .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-yellow{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-yellow .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-green{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-green .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-blue{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-blue .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-cyan{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-cyan .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-indigo{color:#211631;background-color:#a877f7;border-color:#b58df9}html[data-netbox-color-mode=dark] .alert-indigo .alert-link{color:#1a1227}html[data-netbox-color-mode=dark] .alert-purple{color:#221c2c;background-color:#ad94dc;border-color:#baa5e1}html[data-netbox-color-mode=dark] .alert-purple .alert-link{color:#1b1623}html[data-netbox-color-mode=dark] .alert-pink{color:#2e1b24;background-color:#e78bb9;border-color:#eb9dc4}html[data-netbox-color-mode=dark] .alert-pink .alert-link{color:#25161d}html[data-netbox-color-mode=dark] .alert-darker{color:#d1d2d3;background-color:#262a2d;border-color:#494c4e}html[data-netbox-color-mode=dark] .alert-darker .alert-link{color:#a7a8a9}html[data-netbox-color-mode=dark] .alert-darkest{color:#d1d1d2;background-color:#232628;border-color:#45494a}html[data-netbox-color-mode=dark] .alert-darkest .alert-link{color:#a7a7a8}html[data-netbox-color-mode=dark] .alert-gray{color:#292a2c;background-color:#d0d6dc;border-color:#d8dde1}html[data-netbox-color-mode=dark] .alert-gray .alert-link{color:#212223}html[data-netbox-color-mode=dark] .alert-gray-100{color:#323232;background-color:#f8f9fa;border-color:#f9fafb}html[data-netbox-color-mode=dark] .alert-gray-100 .alert-link{color:#282828}html[data-netbox-color-mode=dark] .alert-gray-200{color:#2f2f30;background-color:#eaedf0;border-color:#edf0f2}html[data-netbox-color-mode=dark] .alert-gray-200 .alert-link{color:#262626}html[data-netbox-color-mode=dark] .alert-gray-300{color:#2c2d2e;background-color:#e0e3e7;border-color:#e5e8eb}html[data-netbox-color-mode=dark] .alert-gray-300 .alert-link{color:#232425}html[data-netbox-color-mode=dark] .alert-gray-400{color:#292a2c;background-color:#d0d6dc;border-color:#d8dde1}html[data-netbox-color-mode=dark] .alert-gray-400 .alert-link{color:#212223}html[data-netbox-color-mode=dark] .alert-gray-500{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-gray-500 .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-gray-600{color:#161719;background-color:#737c84;border-color:#899197}html[data-netbox-color-mode=dark] .alert-gray-600 .alert-link{color:#121214}html[data-netbox-color-mode=dark] .alert-gray-700{color:#dbdcdd;background-color:#52595f;border-color:#6d7379}html[data-netbox-color-mode=dark] .alert-gray-700 .alert-link{color:#afb0b1}html[data-netbox-color-mode=dark] .alert-gray-800{color:#d6d8d9;background-color:#3e444a;border-color:#5d6166}html[data-netbox-color-mode=dark] .alert-gray-800 .alert-link{color:#abadae}html[data-netbox-color-mode=dark] .alert-gray-900{color:#d3d3d4;background-color:#2c3034;border-color:#4d5154}html[data-netbox-color-mode=dark] .alert-gray-900 .alert-link{color:#a9a9aa}html[data-netbox-color-mode=dark] .alert-red-100{color:#322b2c;background-color:#f8d9dc;border-color:#f9dfe1}html[data-netbox-color-mode=dark] .alert-red-100 .alert-link{color:#282223}html[data-netbox-color-mode=dark] .alert-red-200{color:#302324;background-color:#f2b2b9;border-color:#f4bec4}html[data-netbox-color-mode=dark] .alert-red-200 .alert-link{color:#261c1d}html[data-netbox-color-mode=dark] .alert-red-300{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-red-300 .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-red-400{color:#2d1315;background-color:#e46571;border-color:#e97d88}html[data-netbox-color-mode=dark] .alert-red-400 .alert-link{color:#240f11}html[data-netbox-color-mode=dark] .alert-red-500{color:#2c0b0e;background-color:#de3f4e;border-color:#e35d6a}html[data-netbox-color-mode=dark] .alert-red-500 .alert-link{color:#23090b}html[data-netbox-color-mode=dark] .alert-red-600{color:#efd4d7;background-color:#b43541;border-color:#c0555f}html[data-netbox-color-mode=dark] .alert-red-600 .alert-link{color:#bfaaac}html[data-netbox-color-mode=dark] .alert-red-700{color:#e6d2d4;background-color:#8a2b34;border-color:#9d4d54}html[data-netbox-color-mode=dark] .alert-red-700 .alert-link{color:#b8a8aa}html[data-netbox-color-mode=dark] .alert-red-800{color:#ded0d2;background-color:#602127;border-color:#794449}html[data-netbox-color-mode=dark] .alert-red-800 .alert-link{color:#b2a6a8}html[data-netbox-color-mode=dark] .alert-red-900{color:#d5cecf;background-color:#37171a;border-color:#563c3e}html[data-netbox-color-mode=dark] .alert-red-900 .alert-link{color:#aaa5a6}html[data-netbox-color-mode=dark] .alert-yellow-100{color:#333129;background-color:#fff4d0;border-color:#fff5d7}html[data-netbox-color-mode=dark] .alert-yellow-100 .alert-link{color:#292721}html[data-netbox-color-mode=dark] .alert-yellow-200{color:#332e1f;background-color:#ffe7a1;border-color:#ffebb0}html[data-netbox-color-mode=dark] .alert-yellow-200 .alert-link{color:#292519}html[data-netbox-color-mode=dark] .alert-yellow-300{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-yellow-300 .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-yellow-400{color:#33290b;background-color:#ffd043;border-color:#ffd761}html[data-netbox-color-mode=dark] .alert-yellow-400 .alert-link{color:#292109}html[data-netbox-color-mode=dark] .alert-yellow-500{color:#332701;background-color:#ffc413;border-color:#ffcd39}html[data-netbox-color-mode=dark] .alert-yellow-500 .alert-link{color:#291f01}html[data-netbox-color-mode=dark] .alert-yellow-600{color:#291f01;background-color:#cf9f12;border-color:#d6ae38}html[data-netbox-color-mode=dark] .alert-yellow-600 .alert-link{color:#211901}html[data-netbox-color-mode=dark] .alert-yellow-700{color:#1f1701;background-color:#9e7b11;border-color:#ad9036}html[data-netbox-color-mode=dark] .alert-yellow-700 .alert-link{color:#191201}html[data-netbox-color-mode=dark] .alert-yellow-800{color:#e0dbcd;background-color:#6e5610;border-color:#857135}html[data-netbox-color-mode=dark] .alert-yellow-800 .alert-link{color:#b3afa4}html[data-netbox-color-mode=dark] .alert-yellow-900{color:#d6d4cc;background-color:#3d320e;border-color:#5c5234}html[data-netbox-color-mode=dark] .alert-yellow-900 .alert-link{color:#abaaa3}html[data-netbox-color-mode=dark] .alert-green-100{color:#2a2e2c;background-color:#d3e8df;border-color:#daece4}html[data-netbox-color-mode=dark] .alert-green-100 .alert-link{color:#222523}html[data-netbox-color-mode=dark] .alert-green-200{color:#212925;background-color:#a8d1be;border-color:#b5d9c9}html[data-netbox-color-mode=dark] .alert-green-200 .alert-link{color:#1a211e}html[data-netbox-color-mode=dark] .alert-green-300{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-green-300 .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-green-400{color:#0e2018;background-color:#50a47d;border-color:#6cb291}html[data-netbox-color-mode=dark] .alert-green-400 .alert-link{color:#0b1a13}html[data-netbox-color-mode=dark] .alert-green-500{color:#051b11;background-color:#258d5d;border-color:#479f76}html[data-netbox-color-mode=dark] .alert-green-500 .alert-link{color:#04160e}html[data-netbox-color-mode=dark] .alert-green-600{color:#d0e2d9;background-color:#20734c;border-color:#438969}html[data-netbox-color-mode=dark] .alert-green-600 .alert-link{color:#a6b5ae}html[data-netbox-color-mode=dark] .alert-green-700{color:#cfdcd6;background-color:#1b5a3c;border-color:#3f745b}html[data-netbox-color-mode=dark] .alert-green-700 .alert-link{color:#a6b0ab}html[data-netbox-color-mode=dark] .alert-green-800{color:#ced7d3;background-color:#16402d;border-color:#3b5e4e}html[data-netbox-color-mode=dark] .alert-green-800 .alert-link{color:#a5aca9}html[data-netbox-color-mode=dark] .alert-green-900{color:#cdd1cf;background-color:#12261d;border-color:#374941}html[data-netbox-color-mode=dark] .alert-green-900 .alert-link{color:#a4a7a6}html[data-netbox-color-mode=dark] .alert-blue-100{color:#292d33;background-color:#d1e3ff;border-color:#d9e8ff}html[data-netbox-color-mode=dark] .alert-blue-100 .alert-link{color:#212429}html[data-netbox-color-mode=dark] .alert-blue-200{color:#202733;background-color:#a3c8fe;border-color:#b1d1fe}html[data-netbox-color-mode=dark] .alert-blue-200 .alert-link{color:#1a1f29}html[data-netbox-color-mode=dark] .alert-blue-300{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-blue-300 .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-blue-400{color:#0c1c33;background-color:#4791fd;border-color:#64a2fd}html[data-netbox-color-mode=dark] .alert-blue-400 .alert-link{color:#0a1629}html[data-netbox-color-mode=dark] .alert-blue-500{color:#031633;background-color:#1975fd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .alert-blue-500 .alert-link{color:#021229}html[data-netbox-color-mode=dark] .alert-blue-600{color:#cedef4;background-color:#1660cd;border-color:#3b79d5}html[data-netbox-color-mode=dark] .alert-blue-600 .alert-link{color:#a5b2c3}html[data-netbox-color-mode=dark] .alert-blue-700{color:#ced9ea;background-color:#144b9d;border-color:#3968ad}html[data-netbox-color-mode=dark] .alert-blue-700 .alert-link{color:#a5aebb}html[data-netbox-color-mode=dark] .alert-blue-800{color:#cdd5e0;background-color:#12376d;border-color:#375684}html[data-netbox-color-mode=dark] .alert-blue-800 .alert-link{color:#a4aab3}html[data-netbox-color-mode=dark] .alert-blue-900{color:#cdd0d6;background-color:#10223d;border-color:#35455c}html[data-netbox-color-mode=dark] .alert-blue-900 .alert-link{color:#a4a6ab}html[data-netbox-color-mode=dark] .alert-cyan-100{color:#293132;background-color:#d1f5fc;border-color:#d9f6fd}html[data-netbox-color-mode=dark] .alert-cyan-100 .alert-link{color:#212728}html[data-netbox-color-mode=dark] .alert-cyan-200{color:#202f32;background-color:#a3ebf9;border-color:#b1eefa}html[data-netbox-color-mode=dark] .alert-cyan-200 .alert-link{color:#1a2628}html[data-netbox-color-mode=dark] .alert-cyan-300{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-cyan-300 .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-cyan-400{color:#0c2b31;background-color:#47d7f4;border-color:#64ddf5}html[data-netbox-color-mode=dark] .alert-cyan-400 .alert-link{color:#0a2227}html[data-netbox-color-mode=dark] .alert-cyan-500{color:#032830;background-color:#19cdf1;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .alert-cyan-500 .alert-link{color:#022026}html[data-netbox-color-mode=dark] .alert-cyan-600{color:#022026;background-color:#16a7c3;border-color:#3bb5cd}html[data-netbox-color-mode=dark] .alert-cyan-600 .alert-link{color:#021a1e}html[data-netbox-color-mode=dark] .alert-cyan-700{color:#cee4e9;background-color:#148096;border-color:#3994a6}html[data-netbox-color-mode=dark] .alert-cyan-700 .alert-link{color:#a5b6ba}html[data-netbox-color-mode=dark] .alert-cyan-800{color:#cddcdf;background-color:#125a68;border-color:#377480}html[data-netbox-color-mode=dark] .alert-cyan-800 .alert-link{color:#a4b0b2}html[data-netbox-color-mode=dark] .alert-cyan-900{color:#cdd4d6;background-color:#10333a;border-color:#355359}html[data-netbox-color-mode=dark] .alert-cyan-900 .alert-link{color:#a4aaab}html[data-netbox-color-mode=dark] .alert-indigo-100{color:#2d2932;background-color:#e2d1fc;border-color:#e6d9fd}html[data-netbox-color-mode=dark] .alert-indigo-100 .alert-link{color:#242128}html[data-netbox-color-mode=dark] .alert-indigo-200{color:#272032;background-color:#c5a4fa;border-color:#ceb2fb}html[data-netbox-color-mode=dark] .alert-indigo-200 .alert-link{color:#1f1a28}html[data-netbox-color-mode=dark] .alert-indigo-300{color:#211631;background-color:#a877f7;border-color:#b58df9}html[data-netbox-color-mode=dark] .alert-indigo-300 .alert-link{color:#1a1227}html[data-netbox-color-mode=dark] .alert-indigo-400{color:#e7d9fd;background-color:#8b4af6;border-color:#9d66f7}html[data-netbox-color-mode=dark] .alert-indigo-400 .alert-link{color:#b9aeca}html[data-netbox-color-mode=dark] .alert-indigo-500{color:#e0cffc;background-color:#6e1cf3;border-color:#8540f5}html[data-netbox-color-mode=dark] .alert-indigo-500 .alert-link{color:#b3a6ca}html[data-netbox-color-mode=dark] .alert-indigo-600{color:#dccff3;background-color:#5b19c5;border-color:#753dce}html[data-netbox-color-mode=dark] .alert-indigo-600 .alert-link{color:#b0a6c2}html[data-netbox-color-mode=dark] .alert-indigo-700{color:#d8cee9;background-color:#471697;border-color:#643ba7}html[data-netbox-color-mode=dark] .alert-indigo-700 .alert-link{color:#ada5ba}html[data-netbox-color-mode=dark] .alert-indigo-800{color:#d4cddf;background-color:#341269;border-color:#543881}html[data-netbox-color-mode=dark] .alert-indigo-800 .alert-link{color:#aaa4b2}html[data-netbox-color-mode=dark] .alert-indigo-900{color:#d0cdd6;background-color:#20103a;border-color:#433559}html[data-netbox-color-mode=dark] .alert-indigo-900 .alert-link{color:#a6a4ab}html[data-netbox-color-mode=dark] .alert-purple-100{color:#2d2b31;background-color:#e3dbf4;border-color:#e8e1f5}html[data-netbox-color-mode=dark] .alert-purple-100 .alert-link{color:#242227}html[data-netbox-color-mode=dark] .alert-purple-200{color:#27242e;background-color:#c8b7e7;border-color:#d1c2eb}html[data-netbox-color-mode=dark] .alert-purple-200 .alert-link{color:#1f1d25}html[data-netbox-color-mode=dark] .alert-purple-300{color:#221c2c;background-color:#ad94dc;border-color:#baa5e1}html[data-netbox-color-mode=dark] .alert-purple-300 .alert-link{color:#1b1623}html[data-netbox-color-mode=dark] .alert-purple-400{color:#1c1529;background-color:#9270d0;border-color:#a386d7}html[data-netbox-color-mode=dark] .alert-purple-400 .alert-link{color:#161121}html[data-netbox-color-mode=dark] .alert-purple-500{color:#e2d9f3;background-color:#764bc4;border-color:#8c68cd}html[data-netbox-color-mode=dark] .alert-purple-500 .alert-link{color:#b5aec2}html[data-netbox-color-mode=dark] .alert-purple-600{color:#ded7eb;background-color:#613f9f;border-color:#7a5dae}html[data-netbox-color-mode=dark] .alert-purple-600 .alert-link{color:#b2acbc}html[data-netbox-color-mode=dark] .alert-purple-700{color:#d9d4e3;background-color:#4c337b;border-color:#695390}html[data-netbox-color-mode=dark] .alert-purple-700 .alert-link{color:#aeaab6}html[data-netbox-color-mode=dark] .alert-purple-800{color:#d5d1db;background-color:#372556;border-color:#564871}html[data-netbox-color-mode=dark] .alert-purple-800 .alert-link{color:#aaa7af}html[data-netbox-color-mode=dark] .alert-purple-900{color:#d0cfd4;background-color:#221932;border-color:#453d52}html[data-netbox-color-mode=dark] .alert-purple-900 .alert-link{color:#a6a6aa}html[data-netbox-color-mode=dark] .alert-pink-100{color:#312b2e;background-color:#f7d8e7;border-color:#f9deeb}html[data-netbox-color-mode=dark] .alert-pink-100 .alert-link{color:#272225}html[data-netbox-color-mode=dark] .alert-pink-200{color:#302329;background-color:#f0b1d0;border-color:#f2bdd8}html[data-netbox-color-mode=dark] .alert-pink-200 .alert-link{color:#261c21}html[data-netbox-color-mode=dark] .alert-pink-300{color:#2e1b24;background-color:#e78bb9;border-color:#eb9dc4}html[data-netbox-color-mode=dark] .alert-pink-300 .alert-link{color:#25161d}html[data-netbox-color-mode=dark] .alert-pink-400{color:#2c121f;background-color:#e064a2;border-color:#e57db1}html[data-netbox-color-mode=dark] .alert-pink-400 .alert-link{color:#230e19}html[data-netbox-color-mode=dark] .alert-pink-500{color:#2b0a1a;background-color:#d83d8a;border-color:#de5c9d}html[data-netbox-color-mode=dark] .alert-pink-500 .alert-link{color:#220815}html[data-netbox-color-mode=dark] .alert-pink-600{color:#eed4e1;background-color:#af3471;border-color:#bc5488}html[data-netbox-color-mode=dark] .alert-pink-600 .alert-link{color:#beaab4}html[data-netbox-color-mode=dark] .alert-pink-700{color:#e6d2dc;background-color:#862a58;border-color:#994c72}html[data-netbox-color-mode=dark] .alert-pink-700 .alert-link{color:#b8a8b0}html[data-netbox-color-mode=dark] .alert-pink-800{color:#ddd0d7;background-color:#5e203f;border-color:#78435d}html[data-netbox-color-mode=dark] .alert-pink-800 .alert-link{color:#b1a6ac}html[data-netbox-color-mode=dark] .alert-pink-900{color:#d5ced1;background-color:#361625;border-color:#553b48}html[data-netbox-color-mode=dark] .alert-pink-900 .alert-link{color:#aaa5a7}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}html[data-netbox-color-mode=dark] .progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#6c757d;border-radius:.375rem}html[data-netbox-color-mode=dark] .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#6ea8fe;transition:width .6s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .progress-bar{transition:none}}html[data-netbox-color-mode=dark] .progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}html[data-netbox-color-mode=dark] .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .progress-bar-animated{animation:none}}html[data-netbox-color-mode=dark] .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}html[data-netbox-color-mode=dark] .list-group-numbered{list-style-type:none;counter-reset:section}html[data-netbox-color-mode=dark] .list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}html[data-netbox-color-mode=dark] .list-group-item-action{width:100%;color:#dee2e6;text-align:inherit}html[data-netbox-color-mode=dark] .list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-action:focus{z-index:1;color:#fff;text-decoration:none;background-color:#f8f9fa26}html[data-netbox-color-mode=dark] .list-group-item-action:active{color:#fff;background-color:#dee2e620}html[data-netbox-color-mode=dark] .list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#fff;text-decoration:none;background-color:#212529;border:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html[data-netbox-color-mode=dark] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html[data-netbox-color-mode=dark] .list-group-item.disabled,html[data-netbox-color-mode=dark] .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#212529}html[data-netbox-color-mode=dark] .list-group-item.active{z-index:2;color:#fff;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item{border-top-width:0}html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active{margin-top:-1px;border-top-width:1px}html[data-netbox-color-mode=dark] .list-group-horizontal{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){html[data-netbox-color-mode=dark] .list-group-horizontal-sm{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .list-group-horizontal-md{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .list-group-horizontal-lg{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .list-group-horizontal-xl{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .list-group-horizontal-xxl{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}html[data-netbox-color-mode=dark] .list-group-flush{border-radius:0}html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item{border-width:0 0 1px}html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}html[data-netbox-color-mode=dark] .list-group-item-primary{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-secondary{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-success{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-info{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-warning{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-danger{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-light{color:#595a5c;background-color:#f8f9fa}html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}html[data-netbox-color-mode=dark] .list-group-item-dark{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-red{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-yellow{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-green{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-blue{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-cyan{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-indigo{color:#624394;background-color:#ede2fd}html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}html[data-netbox-color-mode=dark] .list-group-item-purple{color:#655583;background-color:#eee8f8}html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}html[data-netbox-color-mode=dark] .list-group-item-pink{color:#8a506d;background-color:#fae7f0}html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}html[data-netbox-color-mode=dark] .list-group-item-darker{color:#101314;background-color:#d1d2d3}html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}html[data-netbox-color-mode=dark] .list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}html[data-netbox-color-mode=dark] .list-group-item-gray{color:#525557;background-color:#f5f6f8}html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}html[data-netbox-color-mode=dark] .list-group-item-gray-100{color:#636464;background-color:#fefefe}html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}html[data-netbox-color-mode=dark] .list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}html[data-netbox-color-mode=dark] .list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}html[data-netbox-color-mode=dark] .list-group-item-gray-400{color:#525557;background-color:#f5f6f8}html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}html[data-netbox-color-mode=dark] .list-group-item-gray-500{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}html[data-netbox-color-mode=dark] .list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}html[data-netbox-color-mode=dark] .list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}html[data-netbox-color-mode=dark] .list-group-item-gray-900{color:#141619;background-color:#d3d3d4}html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}html[data-netbox-color-mode=dark] .list-group-item-red-100{color:#635657;background-color:#fef7f8}html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}html[data-netbox-color-mode=dark] .list-group-item-red-200{color:#604648;background-color:#fceff0}html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}html[data-netbox-color-mode=dark] .list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-red-400{color:#883840;background-color:#f9dfe1}html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}html[data-netbox-color-mode=dark] .list-group-item-red-500{color:#842029;background-color:#f8d7da}html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .list-group-item-red-600{color:#6a1921;background-color:#efd4d7}html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}html[data-netbox-color-mode=dark] .list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}html[data-netbox-color-mode=dark] .list-group-item-red-800{color:#350d11;background-color:#ded0d2}html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}html[data-netbox-color-mode=dark] .list-group-item-red-900{color:#1a0708;background-color:#d5cecf}html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}html[data-netbox-color-mode=dark] .list-group-item-yellow-100{color:#666152;background-color:#fffdf5}html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}html[data-netbox-color-mode=dark] .list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}html[data-netbox-color-mode=dark] .list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-yellow-400{color:#665217;background-color:#fff5d7}html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}html[data-netbox-color-mode=dark] .list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}html[data-netbox-color-mode=dark] .list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}html[data-netbox-color-mode=dark] .list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}html[data-netbox-color-mode=dark] .list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}html[data-netbox-color-mode=dark] .list-group-item-green-100{color:#545c58;background-color:#f6faf8}html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}html[data-netbox-color-mode=dark] .list-group-item-green-200{color:#41534b;background-color:#edf5f1}html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}html[data-netbox-color-mode=dark] .list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-green-400{color:#2b5f47;background-color:#daece4}html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}html[data-netbox-color-mode=dark] .list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}html[data-netbox-color-mode=dark] .list-group-item-green-700{color:#09311e;background-color:#cfdcd6}html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}html[data-netbox-color-mode=dark] .list-group-item-green-800{color:#062014;background-color:#ced7d3}html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}html[data-netbox-color-mode=dark] .list-group-item-green-900{color:#03100a;background-color:#cdd1cf}html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}html[data-netbox-color-mode=dark] .list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}html[data-netbox-color-mode=dark] .list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}html[data-netbox-color-mode=dark] .list-group-item-blue-300{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-blue-400{color:#255398;background-color:#d8e8ff}html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}html[data-netbox-color-mode=dark] .list-group-item-blue-500{color:#084298;background-color:#cfe2ff}html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .list-group-item-blue-600{color:#063579;background-color:#cedef4}html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}html[data-netbox-color-mode=dark] .list-group-item-blue-700{color:#05285b;background-color:#ced9ea}html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}html[data-netbox-color-mode=dark] .list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}html[data-netbox-color-mode=dark] .list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}html[data-netbox-color-mode=dark] .list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}html[data-netbox-color-mode=dark] .list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}html[data-netbox-color-mode=dark] .list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}html[data-netbox-color-mode=dark] .list-group-item-cyan-500{color:#055160;background-color:#cff4fc}html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .list-group-item-cyan-600{color:#066173;background-color:#ceecf2}html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}html[data-netbox-color-mode=dark] .list-group-item-cyan-700{color:#054956;background-color:#cee4e9}html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}html[data-netbox-color-mode=dark] .list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}html[data-netbox-color-mode=dark] .list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}html[data-netbox-color-mode=dark] .list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}html[data-netbox-color-mode=dark] .list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}html[data-netbox-color-mode=dark] .list-group-item-indigo-300{color:#624394;background-color:#ede2fd}html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}html[data-netbox-color-mode=dark] .list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}html[data-netbox-color-mode=dark] .list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .list-group-item-indigo-600{color:#310874;background-color:#dccff3}html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}html[data-netbox-color-mode=dark] .list-group-item-indigo-700{color:#250657;background-color:#d8cee9}html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}html[data-netbox-color-mode=dark] .list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}html[data-netbox-color-mode=dark] .list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}html[data-netbox-color-mode=dark] .list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}html[data-netbox-color-mode=dark] .list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}html[data-netbox-color-mode=dark] .list-group-item-purple-300{color:#655583;background-color:#eee8f8}html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}html[data-netbox-color-mode=dark] .list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}html[data-netbox-color-mode=dark] .list-group-item-purple-500{color:#432874;background-color:#e2d9f3}html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .list-group-item-purple-600{color:#35205c;background-color:#ded7eb}html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}html[data-netbox-color-mode=dark] .list-group-item-purple-700{color:#281846;background-color:#d9d4e3}html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}html[data-netbox-color-mode=dark] .list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}html[data-netbox-color-mode=dark] .list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}html[data-netbox-color-mode=dark] .list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}html[data-netbox-color-mode=dark] .list-group-item-pink-200{color:#604552;background-color:#fceff5}html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}html[data-netbox-color-mode=dark] .list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}html[data-netbox-color-mode=dark] .list-group-item-pink-400{color:#85375e;background-color:#f8deeb}html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}html[data-netbox-color-mode=dark] .list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .list-group-item-pink-600{color:#671940;background-color:#eed4e1}html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}html[data-netbox-color-mode=dark] .list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}html[data-netbox-color-mode=dark] .list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}html[data-netbox-color-mode=dark] .list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}html[data-netbox-color-mode=dark] .btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#fff;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}html[data-netbox-color-mode=dark] .btn-close:hover{color:#fff;text-decoration:none;opacity:.75}html[data-netbox-color-mode=dark] .btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}html[data-netbox-color-mode=dark] .btn-close:disabled,html[data-netbox-color-mode=dark] .btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}html[data-netbox-color-mode=dark] .btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}html[data-netbox-color-mode=dark] .toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}html[data-netbox-color-mode=dark] .toast:not(.showing):not(.show){opacity:0}html[data-netbox-color-mode=dark] .toast.hide{display:none}html[data-netbox-color-mode=dark] .toast-container{width:max-content;max-width:100%;pointer-events:none}html[data-netbox-color-mode=dark] .toast-container>:not(:last-child){margin-bottom:.75rem}html[data-netbox-color-mode=dark] .toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}html[data-netbox-color-mode=dark] .toast-body{padding:.75rem;word-wrap:break-word}html[data-netbox-color-mode=dark] .modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}html[data-netbox-color-mode=dark] .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade html[data-netbox-color-mode=dark] .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion: reduce){.modal.fade html[data-netbox-color-mode=dark] .modal-dialog{transition:none}}.modal.show html[data-netbox-color-mode=dark] .modal-dialog{transform:none}.modal.modal-static html[data-netbox-color-mode=dark] .modal-dialog{transform:scale(1.02)}html[data-netbox-color-mode=dark] .modal-dialog-scrollable{height:calc(100% - 1rem)}html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}html[data-netbox-color-mode=dark] .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#343a40;background-clip:padding-box;border:1px solid rgba(255,255,255,.2);border-radius:.75rem;outline:0}html[data-netbox-color-mode=dark] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html[data-netbox-color-mode=dark] .modal-backdrop.fade{opacity:0}html[data-netbox-color-mode=dark] .modal-backdrop.show{opacity:.5}html[data-netbox-color-mode=dark] .modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #495057;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}html[data-netbox-color-mode=dark] .modal-title{margin-bottom:0;line-height:1.5}html[data-netbox-color-mode=dark] .modal-body{position:relative;flex:1 1 auto;padding:1rem}html[data-netbox-color-mode=dark] .modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #495057;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .modal-footer>*{margin:.25rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .modal-dialog{max-width:500px;margin:1.75rem auto}html[data-netbox-color-mode=dark] .modal-dialog-scrollable{height:calc(100% - 3.5rem)}html[data-netbox-color-mode=dark] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html[data-netbox-color-mode=dark] .modal-sm{max-width:300px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .modal-lg,html[data-netbox-color-mode=dark] .modal-xl{max-width:800px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .modal-xl{max-width:1140px}}html[data-netbox-color-mode=dark] .modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-footer{border-radius:0}}html[data-netbox-color-mode=dark] .tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html[data-netbox-color-mode=dark] .tooltip.show{opacity:.9}html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}html[data-netbox-color-mode=dark] .bs-tooltip-top,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-end,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-bottom,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-start,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#495057}html[data-netbox-color-mode=dark] .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#495057;border-radius:.375rem}html[data-netbox-color-mode=dark] .popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#495057;background-clip:padding-box;border:1px solid rgba(255,255,255,.2);border-radius:.75rem}html[data-netbox-color-mode=dark] .popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}html[data-netbox-color-mode=dark] .popover .popover-arrow:before,html[data-netbox-color-mode=dark] .popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-bottom .popover-header:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom] .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #454b52}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#495057}html[data-netbox-color-mode=dark] .popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#454b52;border-bottom:1px solid rgba(255,255,255,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .popover-header:empty{display:none}html[data-netbox-color-mode=dark] .popover-body{padding:1rem;color:#fff}html[data-netbox-color-mode=dark] .carousel{position:relative}html[data-netbox-color-mode=dark] .carousel.pointer-event{touch-action:pan-y}html[data-netbox-color-mode=dark] .carousel-inner{position:relative;width:100%;overflow:hidden}html[data-netbox-color-mode=dark] .carousel-inner:after{display:block;clear:both;content:""}html[data-netbox-color-mode=dark] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-item{transition:none}}html[data-netbox-color-mode=dark] .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-item-next,html[data-netbox-color-mode=dark] .carousel-item-prev{display:block}html[data-netbox-color-mode=dark] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=dark] .active.carousel-item-end{transform:translate(100%)}html[data-netbox-color-mode=dark] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=dark] .active.carousel-item-start{transform:translate(-100%)}html[data-netbox-color-mode=dark] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html[data-netbox-color-mode=dark] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end{transition:none}}html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next{transition:none}}html[data-netbox-color-mode=dark] .carousel-control-prev:hover,html[data-netbox-color-mode=dark] .carousel-control-prev:focus,html[data-netbox-color-mode=dark] .carousel-control-next:hover,html[data-netbox-color-mode=dark] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}html[data-netbox-color-mode=dark] .carousel-control-prev{left:0}html[data-netbox-color-mode=dark] .carousel-control-next{right:0}html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}html[data-netbox-color-mode=dark] .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target]{transition:none}}html[data-netbox-color-mode=dark] .carousel-indicators .active{opacity:1}html[data-netbox-color-mode=dark] .carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}html[data-netbox-color-mode=dark] .carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}html[data-netbox-color-mode=dark] .carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}html[data-netbox-color-mode=dark] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}html[data-netbox-color-mode=dark] .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}html[data-netbox-color-mode=dark] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}html[data-netbox-color-mode=dark] .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=dark] .spinner-grow{animation-duration:1.5s}}html[data-netbox-color-mode=dark] .clearfix:after{display:block;clear:both;content:""}html[data-netbox-color-mode=dark] .link-primary{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-primary:hover,html[data-netbox-color-mode=dark] .link-primary:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-secondary{color:#adb5bd}html[data-netbox-color-mode=dark] .link-secondary:hover,html[data-netbox-color-mode=dark] .link-secondary:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-success{color:#75b798}html[data-netbox-color-mode=dark] .link-success:hover,html[data-netbox-color-mode=dark] .link-success:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-info{color:#6edff6}html[data-netbox-color-mode=dark] .link-info:hover,html[data-netbox-color-mode=dark] .link-info:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-warning{color:#ffda6a}html[data-netbox-color-mode=dark] .link-warning:hover,html[data-netbox-color-mode=dark] .link-warning:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-danger{color:#ea868f}html[data-netbox-color-mode=dark] .link-danger:hover,html[data-netbox-color-mode=dark] .link-danger:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-light{color:#dee2e6}html[data-netbox-color-mode=dark] .link-light:hover,html[data-netbox-color-mode=dark] .link-light:focus{color:#e5e8eb}html[data-netbox-color-mode=dark] .link-dark{color:#adb5bd}html[data-netbox-color-mode=dark] .link-dark:hover,html[data-netbox-color-mode=dark] .link-dark:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-red{color:#ea868f}html[data-netbox-color-mode=dark] .link-red:hover,html[data-netbox-color-mode=dark] .link-red:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-yellow{color:#ffda6a}html[data-netbox-color-mode=dark] .link-yellow:hover,html[data-netbox-color-mode=dark] .link-yellow:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-green{color:#75b798}html[data-netbox-color-mode=dark] .link-green:hover,html[data-netbox-color-mode=dark] .link-green:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-blue{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-blue:hover,html[data-netbox-color-mode=dark] .link-blue:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-cyan{color:#6edff6}html[data-netbox-color-mode=dark] .link-cyan:hover,html[data-netbox-color-mode=dark] .link-cyan:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-indigo{color:#a370f7}html[data-netbox-color-mode=dark] .link-indigo:hover,html[data-netbox-color-mode=dark] .link-indigo:focus{color:#b58df9}html[data-netbox-color-mode=dark] .link-purple{color:#a98eda}html[data-netbox-color-mode=dark] .link-purple:hover,html[data-netbox-color-mode=dark] .link-purple:focus{color:#baa5e1}html[data-netbox-color-mode=dark] .link-pink{color:#e685b5}html[data-netbox-color-mode=dark] .link-pink:hover,html[data-netbox-color-mode=dark] .link-pink:focus{color:#eb9dc4}html[data-netbox-color-mode=dark] .link-darker{color:#1b1f22}html[data-netbox-color-mode=dark] .link-darker:hover,html[data-netbox-color-mode=dark] .link-darker:focus{color:#16191b}html[data-netbox-color-mode=dark] .link-darkest{color:#171b1d}html[data-netbox-color-mode=dark] .link-darkest:hover,html[data-netbox-color-mode=dark] .link-darkest:focus{color:#121617}html[data-netbox-color-mode=dark] .link-gray{color:#ced4da}html[data-netbox-color-mode=dark] .link-gray:hover,html[data-netbox-color-mode=dark] .link-gray:focus{color:#d8dde1}html[data-netbox-color-mode=dark] .link-gray-100{color:#f8f9fa}html[data-netbox-color-mode=dark] .link-gray-100:hover,html[data-netbox-color-mode=dark] .link-gray-100:focus{color:#f9fafb}html[data-netbox-color-mode=dark] .link-gray-200{color:#e9ecef}html[data-netbox-color-mode=dark] .link-gray-200:hover,html[data-netbox-color-mode=dark] .link-gray-200:focus{color:#edf0f2}html[data-netbox-color-mode=dark] .link-gray-300{color:#dee2e6}html[data-netbox-color-mode=dark] .link-gray-300:hover,html[data-netbox-color-mode=dark] .link-gray-300:focus{color:#e5e8eb}html[data-netbox-color-mode=dark] .link-gray-400{color:#ced4da}html[data-netbox-color-mode=dark] .link-gray-400:hover,html[data-netbox-color-mode=dark] .link-gray-400:focus{color:#d8dde1}html[data-netbox-color-mode=dark] .link-gray-500{color:#adb5bd}html[data-netbox-color-mode=dark] .link-gray-500:hover,html[data-netbox-color-mode=dark] .link-gray-500:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-gray-600{color:#6c757d}html[data-netbox-color-mode=dark] .link-gray-600:hover,html[data-netbox-color-mode=dark] .link-gray-600:focus{color:#565e64}html[data-netbox-color-mode=dark] .link-gray-700{color:#495057}html[data-netbox-color-mode=dark] .link-gray-700:hover,html[data-netbox-color-mode=dark] .link-gray-700:focus{color:#3a4046}html[data-netbox-color-mode=dark] .link-gray-800{color:#343a40}html[data-netbox-color-mode=dark] .link-gray-800:hover,html[data-netbox-color-mode=dark] .link-gray-800:focus{color:#2a2e33}html[data-netbox-color-mode=dark] .link-gray-900{color:#212529}html[data-netbox-color-mode=dark] .link-gray-900:hover,html[data-netbox-color-mode=dark] .link-gray-900:focus{color:#1a1e21}html[data-netbox-color-mode=dark] .link-red-100{color:#f8d7da}html[data-netbox-color-mode=dark] .link-red-100:hover,html[data-netbox-color-mode=dark] .link-red-100:focus{color:#f9dfe1}html[data-netbox-color-mode=dark] .link-red-200{color:#f1aeb5}html[data-netbox-color-mode=dark] .link-red-200:hover,html[data-netbox-color-mode=dark] .link-red-200:focus{color:#f4bec4}html[data-netbox-color-mode=dark] .link-red-300{color:#ea868f}html[data-netbox-color-mode=dark] .link-red-300:hover,html[data-netbox-color-mode=dark] .link-red-300:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-red-400{color:#e35d6a}html[data-netbox-color-mode=dark] .link-red-400:hover,html[data-netbox-color-mode=dark] .link-red-400:focus{color:#e97d88}html[data-netbox-color-mode=dark] .link-red-500{color:#dc3545}html[data-netbox-color-mode=dark] .link-red-500:hover,html[data-netbox-color-mode=dark] .link-red-500:focus{color:#b02a37}html[data-netbox-color-mode=dark] .link-red-600{color:#b02a37}html[data-netbox-color-mode=dark] .link-red-600:hover,html[data-netbox-color-mode=dark] .link-red-600:focus{color:#8d222c}html[data-netbox-color-mode=dark] .link-red-700{color:#842029}html[data-netbox-color-mode=dark] .link-red-700:hover,html[data-netbox-color-mode=dark] .link-red-700:focus{color:#6a1a21}html[data-netbox-color-mode=dark] .link-red-800{color:#58151c}html[data-netbox-color-mode=dark] .link-red-800:hover,html[data-netbox-color-mode=dark] .link-red-800:focus{color:#461116}html[data-netbox-color-mode=dark] .link-red-900{color:#2c0b0e}html[data-netbox-color-mode=dark] .link-red-900:hover,html[data-netbox-color-mode=dark] .link-red-900:focus{color:#23090b}html[data-netbox-color-mode=dark] .link-yellow-100{color:#fff3cd}html[data-netbox-color-mode=dark] .link-yellow-100:hover,html[data-netbox-color-mode=dark] .link-yellow-100:focus{color:#fff5d7}html[data-netbox-color-mode=dark] .link-yellow-200{color:#ffe69c}html[data-netbox-color-mode=dark] .link-yellow-200:hover,html[data-netbox-color-mode=dark] .link-yellow-200:focus{color:#ffebb0}html[data-netbox-color-mode=dark] .link-yellow-300{color:#ffda6a}html[data-netbox-color-mode=dark] .link-yellow-300:hover,html[data-netbox-color-mode=dark] .link-yellow-300:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-yellow-400{color:#ffcd39}html[data-netbox-color-mode=dark] .link-yellow-400:hover,html[data-netbox-color-mode=dark] .link-yellow-400:focus{color:#ffd761}html[data-netbox-color-mode=dark] .link-yellow-500{color:#ffc107}html[data-netbox-color-mode=dark] .link-yellow-500:hover,html[data-netbox-color-mode=dark] .link-yellow-500:focus{color:#ffcd39}html[data-netbox-color-mode=dark] .link-yellow-600{color:#cc9a06}html[data-netbox-color-mode=dark] .link-yellow-600:hover,html[data-netbox-color-mode=dark] .link-yellow-600:focus{color:#d6ae38}html[data-netbox-color-mode=dark] .link-yellow-700{color:#997404}html[data-netbox-color-mode=dark] .link-yellow-700:hover,html[data-netbox-color-mode=dark] .link-yellow-700:focus{color:#ad9036}html[data-netbox-color-mode=dark] .link-yellow-800{color:#664d03}html[data-netbox-color-mode=dark] .link-yellow-800:hover,html[data-netbox-color-mode=dark] .link-yellow-800:focus{color:#523e02}html[data-netbox-color-mode=dark] .link-yellow-900{color:#332701}html[data-netbox-color-mode=dark] .link-yellow-900:hover,html[data-netbox-color-mode=dark] .link-yellow-900:focus{color:#291f01}html[data-netbox-color-mode=dark] .link-green-100{color:#d1e7dd}html[data-netbox-color-mode=dark] .link-green-100:hover,html[data-netbox-color-mode=dark] .link-green-100:focus{color:#daece4}html[data-netbox-color-mode=dark] .link-green-200{color:#a3cfbb}html[data-netbox-color-mode=dark] .link-green-200:hover,html[data-netbox-color-mode=dark] .link-green-200:focus{color:#b5d9c9}html[data-netbox-color-mode=dark] .link-green-300{color:#75b798}html[data-netbox-color-mode=dark] .link-green-300:hover,html[data-netbox-color-mode=dark] .link-green-300:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-green-400{color:#479f76}html[data-netbox-color-mode=dark] .link-green-400:hover,html[data-netbox-color-mode=dark] .link-green-400:focus{color:#6cb291}html[data-netbox-color-mode=dark] .link-green-500{color:#198754}html[data-netbox-color-mode=dark] .link-green-500:hover,html[data-netbox-color-mode=dark] .link-green-500:focus{color:#146c43}html[data-netbox-color-mode=dark] .link-green-600{color:#146c43}html[data-netbox-color-mode=dark] .link-green-600:hover,html[data-netbox-color-mode=dark] .link-green-600:focus{color:#105636}html[data-netbox-color-mode=dark] .link-green-700{color:#0f5132}html[data-netbox-color-mode=dark] .link-green-700:hover,html[data-netbox-color-mode=dark] .link-green-700:focus{color:#0c4128}html[data-netbox-color-mode=dark] .link-green-800{color:#0a3622}html[data-netbox-color-mode=dark] .link-green-800:hover,html[data-netbox-color-mode=dark] .link-green-800:focus{color:#082b1b}html[data-netbox-color-mode=dark] .link-green-900{color:#051b11}html[data-netbox-color-mode=dark] .link-green-900:hover,html[data-netbox-color-mode=dark] .link-green-900:focus{color:#04160e}html[data-netbox-color-mode=dark] .link-blue-100{color:#cfe2ff}html[data-netbox-color-mode=dark] .link-blue-100:hover,html[data-netbox-color-mode=dark] .link-blue-100:focus{color:#d9e8ff}html[data-netbox-color-mode=dark] .link-blue-200{color:#9ec5fe}html[data-netbox-color-mode=dark] .link-blue-200:hover,html[data-netbox-color-mode=dark] .link-blue-200:focus{color:#b1d1fe}html[data-netbox-color-mode=dark] .link-blue-300{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-blue-300:hover,html[data-netbox-color-mode=dark] .link-blue-300:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-blue-400{color:#3d8bfd}html[data-netbox-color-mode=dark] .link-blue-400:hover,html[data-netbox-color-mode=dark] .link-blue-400:focus{color:#64a2fd}html[data-netbox-color-mode=dark] .link-blue-500{color:#0d6efd}html[data-netbox-color-mode=dark] .link-blue-500:hover,html[data-netbox-color-mode=dark] .link-blue-500:focus{color:#0a58ca}html[data-netbox-color-mode=dark] .link-blue-600{color:#0a58ca}html[data-netbox-color-mode=dark] .link-blue-600:hover,html[data-netbox-color-mode=dark] .link-blue-600:focus{color:#0846a2}html[data-netbox-color-mode=dark] .link-blue-700{color:#084298}html[data-netbox-color-mode=dark] .link-blue-700:hover,html[data-netbox-color-mode=dark] .link-blue-700:focus{color:#06357a}html[data-netbox-color-mode=dark] .link-blue-800{color:#052c65}html[data-netbox-color-mode=dark] .link-blue-800:hover,html[data-netbox-color-mode=dark] .link-blue-800:focus{color:#042351}html[data-netbox-color-mode=dark] .link-blue-900{color:#031633}html[data-netbox-color-mode=dark] .link-blue-900:hover,html[data-netbox-color-mode=dark] .link-blue-900:focus{color:#021229}html[data-netbox-color-mode=dark] .link-cyan-100{color:#cff4fc}html[data-netbox-color-mode=dark] .link-cyan-100:hover,html[data-netbox-color-mode=dark] .link-cyan-100:focus{color:#d9f6fd}html[data-netbox-color-mode=dark] .link-cyan-200{color:#9eeaf9}html[data-netbox-color-mode=dark] .link-cyan-200:hover,html[data-netbox-color-mode=dark] .link-cyan-200:focus{color:#b1eefa}html[data-netbox-color-mode=dark] .link-cyan-300{color:#6edff6}html[data-netbox-color-mode=dark] .link-cyan-300:hover,html[data-netbox-color-mode=dark] .link-cyan-300:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-cyan-400{color:#3dd5f3}html[data-netbox-color-mode=dark] .link-cyan-400:hover,html[data-netbox-color-mode=dark] .link-cyan-400:focus{color:#64ddf5}html[data-netbox-color-mode=dark] .link-cyan-500{color:#0dcaf0}html[data-netbox-color-mode=dark] .link-cyan-500:hover,html[data-netbox-color-mode=dark] .link-cyan-500:focus{color:#3dd5f3}html[data-netbox-color-mode=dark] .link-cyan-600{color:#0aa2c0}html[data-netbox-color-mode=dark] .link-cyan-600:hover,html[data-netbox-color-mode=dark] .link-cyan-600:focus{color:#3bb5cd}html[data-netbox-color-mode=dark] .link-cyan-700{color:#087990}html[data-netbox-color-mode=dark] .link-cyan-700:hover,html[data-netbox-color-mode=dark] .link-cyan-700:focus{color:#066173}html[data-netbox-color-mode=dark] .link-cyan-800{color:#055160}html[data-netbox-color-mode=dark] .link-cyan-800:hover,html[data-netbox-color-mode=dark] .link-cyan-800:focus{color:#04414d}html[data-netbox-color-mode=dark] .link-cyan-900{color:#032830}html[data-netbox-color-mode=dark] .link-cyan-900:hover,html[data-netbox-color-mode=dark] .link-cyan-900:focus{color:#022026}html[data-netbox-color-mode=dark] .link-indigo-100{color:#e0cffc}html[data-netbox-color-mode=dark] .link-indigo-100:hover,html[data-netbox-color-mode=dark] .link-indigo-100:focus{color:#e6d9fd}html[data-netbox-color-mode=dark] .link-indigo-200{color:#c29ffa}html[data-netbox-color-mode=dark] .link-indigo-200:hover,html[data-netbox-color-mode=dark] .link-indigo-200:focus{color:#ceb2fb}html[data-netbox-color-mode=dark] .link-indigo-300{color:#a370f7}html[data-netbox-color-mode=dark] .link-indigo-300:hover,html[data-netbox-color-mode=dark] .link-indigo-300:focus{color:#b58df9}html[data-netbox-color-mode=dark] .link-indigo-400{color:#8540f5}html[data-netbox-color-mode=dark] .link-indigo-400:hover,html[data-netbox-color-mode=dark] .link-indigo-400:focus{color:#6a33c4}html[data-netbox-color-mode=dark] .link-indigo-500{color:#6610f2}html[data-netbox-color-mode=dark] .link-indigo-500:hover,html[data-netbox-color-mode=dark] .link-indigo-500:focus{color:#520dc2}html[data-netbox-color-mode=dark] .link-indigo-600{color:#520dc2}html[data-netbox-color-mode=dark] .link-indigo-600:hover,html[data-netbox-color-mode=dark] .link-indigo-600:focus{color:#420a9b}html[data-netbox-color-mode=dark] .link-indigo-700{color:#3d0a91}html[data-netbox-color-mode=dark] .link-indigo-700:hover,html[data-netbox-color-mode=dark] .link-indigo-700:focus{color:#310874}html[data-netbox-color-mode=dark] .link-indigo-800{color:#290661}html[data-netbox-color-mode=dark] .link-indigo-800:hover,html[data-netbox-color-mode=dark] .link-indigo-800:focus{color:#21054e}html[data-netbox-color-mode=dark] .link-indigo-900{color:#140330}html[data-netbox-color-mode=dark] .link-indigo-900:hover,html[data-netbox-color-mode=dark] .link-indigo-900:focus{color:#100226}html[data-netbox-color-mode=dark] .link-purple-100{color:#e2d9f3}html[data-netbox-color-mode=dark] .link-purple-100:hover,html[data-netbox-color-mode=dark] .link-purple-100:focus{color:#e8e1f5}html[data-netbox-color-mode=dark] .link-purple-200{color:#c5b3e6}html[data-netbox-color-mode=dark] .link-purple-200:hover,html[data-netbox-color-mode=dark] .link-purple-200:focus{color:#d1c2eb}html[data-netbox-color-mode=dark] .link-purple-300{color:#a98eda}html[data-netbox-color-mode=dark] .link-purple-300:hover,html[data-netbox-color-mode=dark] .link-purple-300:focus{color:#baa5e1}html[data-netbox-color-mode=dark] .link-purple-400{color:#8c68cd}html[data-netbox-color-mode=dark] .link-purple-400:hover,html[data-netbox-color-mode=dark] .link-purple-400:focus{color:#a386d7}html[data-netbox-color-mode=dark] .link-purple-500{color:#6f42c1}html[data-netbox-color-mode=dark] .link-purple-500:hover,html[data-netbox-color-mode=dark] .link-purple-500:focus{color:#59359a}html[data-netbox-color-mode=dark] .link-purple-600{color:#59359a}html[data-netbox-color-mode=dark] .link-purple-600:hover,html[data-netbox-color-mode=dark] .link-purple-600:focus{color:#472a7b}html[data-netbox-color-mode=dark] .link-purple-700{color:#432874}html[data-netbox-color-mode=dark] .link-purple-700:hover,html[data-netbox-color-mode=dark] .link-purple-700:focus{color:#36205d}html[data-netbox-color-mode=dark] .link-purple-800{color:#2c1a4d}html[data-netbox-color-mode=dark] .link-purple-800:hover,html[data-netbox-color-mode=dark] .link-purple-800:focus{color:#23153e}html[data-netbox-color-mode=dark] .link-purple-900{color:#160d27}html[data-netbox-color-mode=dark] .link-purple-900:hover,html[data-netbox-color-mode=dark] .link-purple-900:focus{color:#120a1f}html[data-netbox-color-mode=dark] .link-pink-100{color:#f7d6e6}html[data-netbox-color-mode=dark] .link-pink-100:hover,html[data-netbox-color-mode=dark] .link-pink-100:focus{color:#f9deeb}html[data-netbox-color-mode=dark] .link-pink-200{color:#efadce}html[data-netbox-color-mode=dark] .link-pink-200:hover,html[data-netbox-color-mode=dark] .link-pink-200:focus{color:#f2bdd8}html[data-netbox-color-mode=dark] .link-pink-300{color:#e685b5}html[data-netbox-color-mode=dark] .link-pink-300:hover,html[data-netbox-color-mode=dark] .link-pink-300:focus{color:#eb9dc4}html[data-netbox-color-mode=dark] .link-pink-400{color:#de5c9d}html[data-netbox-color-mode=dark] .link-pink-400:hover,html[data-netbox-color-mode=dark] .link-pink-400:focus{color:#e57db1}html[data-netbox-color-mode=dark] .link-pink-500{color:#d63384}html[data-netbox-color-mode=dark] .link-pink-500:hover,html[data-netbox-color-mode=dark] .link-pink-500:focus{color:#ab296a}html[data-netbox-color-mode=dark] .link-pink-600{color:#ab296a}html[data-netbox-color-mode=dark] .link-pink-600:hover,html[data-netbox-color-mode=dark] .link-pink-600:focus{color:#892155}html[data-netbox-color-mode=dark] .link-pink-700{color:#801f4f}html[data-netbox-color-mode=dark] .link-pink-700:hover,html[data-netbox-color-mode=dark] .link-pink-700:focus{color:#66193f}html[data-netbox-color-mode=dark] .link-pink-800{color:#561435}html[data-netbox-color-mode=dark] .link-pink-800:hover,html[data-netbox-color-mode=dark] .link-pink-800:focus{color:#45102a}html[data-netbox-color-mode=dark] .link-pink-900{color:#2b0a1a}html[data-netbox-color-mode=dark] .link-pink-900:hover,html[data-netbox-color-mode=dark] .link-pink-900:focus{color:#220815}html[data-netbox-color-mode=dark] .ratio{position:relative;width:100%}html[data-netbox-color-mode=dark] .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}html[data-netbox-color-mode=dark] .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}html[data-netbox-color-mode=dark] .ratio-1x1{--bs-aspect-ratio: 100%}html[data-netbox-color-mode=dark] .ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}html[data-netbox-color-mode=dark] .ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}html[data-netbox-color-mode=dark] .ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}html[data-netbox-color-mode=dark] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}html[data-netbox-color-mode=dark] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}html[data-netbox-color-mode=dark] .sticky-top{position:sticky;top:0;z-index:1020}@media (min-width: 576px){html[data-netbox-color-mode=dark] .sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .sticky-xxl-top{position:sticky;top:0;z-index:1020}}html[data-netbox-color-mode=dark] .visually-hidden,html[data-netbox-color-mode=dark] .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}html[data-netbox-color-mode=dark] .stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}html[data-netbox-color-mode=dark] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html[data-netbox-color-mode=dark] .align-baseline{vertical-align:baseline!important}html[data-netbox-color-mode=dark] .align-top{vertical-align:top!important}html[data-netbox-color-mode=dark] .align-middle{vertical-align:middle!important}html[data-netbox-color-mode=dark] .align-bottom{vertical-align:bottom!important}html[data-netbox-color-mode=dark] .align-text-bottom{vertical-align:text-bottom!important}html[data-netbox-color-mode=dark] .align-text-top{vertical-align:text-top!important}html[data-netbox-color-mode=dark] .float-start{float:left!important}html[data-netbox-color-mode=dark] .float-end{float:right!important}html[data-netbox-color-mode=dark] .float-none{float:none!important}html[data-netbox-color-mode=dark] .overflow-auto{overflow:auto!important}html[data-netbox-color-mode=dark] .overflow-hidden{overflow:hidden!important}html[data-netbox-color-mode=dark] .overflow-visible{overflow:visible!important}html[data-netbox-color-mode=dark] .overflow-scroll{overflow:scroll!important}html[data-netbox-color-mode=dark] .d-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-block{display:block!important}html[data-netbox-color-mode=dark] .d-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-table{display:table!important}html[data-netbox-color-mode=dark] .d-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-none{display:none!important}html[data-netbox-color-mode=dark] .shadow{box-shadow:0 .5rem 1rem #00000026!important}html[data-netbox-color-mode=dark] .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}html[data-netbox-color-mode=dark] .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}html[data-netbox-color-mode=dark] .shadow-none{box-shadow:none!important}html[data-netbox-color-mode=dark] .position-static{position:static!important}html[data-netbox-color-mode=dark] .position-relative{position:relative!important}html[data-netbox-color-mode=dark] .position-absolute{position:absolute!important}html[data-netbox-color-mode=dark] .position-fixed{position:fixed!important}html[data-netbox-color-mode=dark] .position-sticky{position:sticky!important}html[data-netbox-color-mode=dark] .top-0{top:0!important}html[data-netbox-color-mode=dark] .top-50{top:50%!important}html[data-netbox-color-mode=dark] .top-100{top:100%!important}html[data-netbox-color-mode=dark] .bottom-0{bottom:0!important}html[data-netbox-color-mode=dark] .bottom-50{bottom:50%!important}html[data-netbox-color-mode=dark] .bottom-100{bottom:100%!important}html[data-netbox-color-mode=dark] .start-0{left:0!important}html[data-netbox-color-mode=dark] .start-50{left:50%!important}html[data-netbox-color-mode=dark] .start-100{left:100%!important}html[data-netbox-color-mode=dark] .end-0{right:0!important}html[data-netbox-color-mode=dark] .end-50{right:50%!important}html[data-netbox-color-mode=dark] .end-100{right:100%!important}html[data-netbox-color-mode=dark] .translate-middle{transform:translate(-50%,-50%)!important}html[data-netbox-color-mode=dark] .translate-middle-x{transform:translate(-50%)!important}html[data-netbox-color-mode=dark] .translate-middle-y{transform:translateY(-50%)!important}html[data-netbox-color-mode=dark] .border{border:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-0{border:0!important}html[data-netbox-color-mode=dark] .border-top{border-top:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-top-0{border-top:0!important}html[data-netbox-color-mode=dark] .border-end{border-right:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-end-0{border-right:0!important}html[data-netbox-color-mode=dark] .border-bottom{border-bottom:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-bottom-0{border-bottom:0!important}html[data-netbox-color-mode=dark] .border-start{border-left:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-start-0{border-left:0!important}html[data-netbox-color-mode=dark] .border-primary{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-secondary{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-success{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-info{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-warning{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-danger{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-light{border-color:#dee2e6!important}html[data-netbox-color-mode=dark] .border-dark{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-red{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-yellow{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-green{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-blue{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-cyan{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-indigo{border-color:#a370f7!important}html[data-netbox-color-mode=dark] .border-purple{border-color:#a98eda!important}html[data-netbox-color-mode=dark] .border-pink{border-color:#e685b5!important}html[data-netbox-color-mode=dark] .border-darker{border-color:#1b1f22!important}html[data-netbox-color-mode=dark] .border-darkest{border-color:#171b1d!important}html[data-netbox-color-mode=dark] .border-gray{border-color:#ced4da!important}html[data-netbox-color-mode=dark] .border-gray-100{border-color:#f8f9fa!important}html[data-netbox-color-mode=dark] .border-gray-200{border-color:#e9ecef!important}html[data-netbox-color-mode=dark] .border-gray-300{border-color:#dee2e6!important}html[data-netbox-color-mode=dark] .border-gray-400{border-color:#ced4da!important}html[data-netbox-color-mode=dark] .border-gray-500{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-gray-600{border-color:#6c757d!important}html[data-netbox-color-mode=dark] .border-gray-700{border-color:#495057!important}html[data-netbox-color-mode=dark] .border-gray-800{border-color:#343a40!important}html[data-netbox-color-mode=dark] .border-gray-900{border-color:#212529!important}html[data-netbox-color-mode=dark] .border-red-100{border-color:#f8d7da!important}html[data-netbox-color-mode=dark] .border-red-200{border-color:#f1aeb5!important}html[data-netbox-color-mode=dark] .border-red-300{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-red-400{border-color:#e35d6a!important}html[data-netbox-color-mode=dark] .border-red-500{border-color:#dc3545!important}html[data-netbox-color-mode=dark] .border-red-600{border-color:#b02a37!important}html[data-netbox-color-mode=dark] .border-red-700{border-color:#842029!important}html[data-netbox-color-mode=dark] .border-red-800{border-color:#58151c!important}html[data-netbox-color-mode=dark] .border-red-900{border-color:#2c0b0e!important}html[data-netbox-color-mode=dark] .border-yellow-100{border-color:#fff3cd!important}html[data-netbox-color-mode=dark] .border-yellow-200{border-color:#ffe69c!important}html[data-netbox-color-mode=dark] .border-yellow-300{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-yellow-400{border-color:#ffcd39!important}html[data-netbox-color-mode=dark] .border-yellow-500{border-color:#ffc107!important}html[data-netbox-color-mode=dark] .border-yellow-600{border-color:#cc9a06!important}html[data-netbox-color-mode=dark] .border-yellow-700{border-color:#997404!important}html[data-netbox-color-mode=dark] .border-yellow-800{border-color:#664d03!important}html[data-netbox-color-mode=dark] .border-yellow-900{border-color:#332701!important}html[data-netbox-color-mode=dark] .border-green-100{border-color:#d1e7dd!important}html[data-netbox-color-mode=dark] .border-green-200{border-color:#a3cfbb!important}html[data-netbox-color-mode=dark] .border-green-300{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-green-400{border-color:#479f76!important}html[data-netbox-color-mode=dark] .border-green-500{border-color:#198754!important}html[data-netbox-color-mode=dark] .border-green-600{border-color:#146c43!important}html[data-netbox-color-mode=dark] .border-green-700{border-color:#0f5132!important}html[data-netbox-color-mode=dark] .border-green-800{border-color:#0a3622!important}html[data-netbox-color-mode=dark] .border-green-900{border-color:#051b11!important}html[data-netbox-color-mode=dark] .border-blue-100{border-color:#cfe2ff!important}html[data-netbox-color-mode=dark] .border-blue-200{border-color:#9ec5fe!important}html[data-netbox-color-mode=dark] .border-blue-300{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-blue-400{border-color:#3d8bfd!important}html[data-netbox-color-mode=dark] .border-blue-500{border-color:#0d6efd!important}html[data-netbox-color-mode=dark] .border-blue-600{border-color:#0a58ca!important}html[data-netbox-color-mode=dark] .border-blue-700{border-color:#084298!important}html[data-netbox-color-mode=dark] .border-blue-800{border-color:#052c65!important}html[data-netbox-color-mode=dark] .border-blue-900{border-color:#031633!important}html[data-netbox-color-mode=dark] .border-cyan-100{border-color:#cff4fc!important}html[data-netbox-color-mode=dark] .border-cyan-200{border-color:#9eeaf9!important}html[data-netbox-color-mode=dark] .border-cyan-300{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-cyan-400{border-color:#3dd5f3!important}html[data-netbox-color-mode=dark] .border-cyan-500{border-color:#0dcaf0!important}html[data-netbox-color-mode=dark] .border-cyan-600{border-color:#0aa2c0!important}html[data-netbox-color-mode=dark] .border-cyan-700{border-color:#087990!important}html[data-netbox-color-mode=dark] .border-cyan-800{border-color:#055160!important}html[data-netbox-color-mode=dark] .border-cyan-900{border-color:#032830!important}html[data-netbox-color-mode=dark] .border-indigo-100{border-color:#e0cffc!important}html[data-netbox-color-mode=dark] .border-indigo-200{border-color:#c29ffa!important}html[data-netbox-color-mode=dark] .border-indigo-300{border-color:#a370f7!important}html[data-netbox-color-mode=dark] .border-indigo-400{border-color:#8540f5!important}html[data-netbox-color-mode=dark] .border-indigo-500{border-color:#6610f2!important}html[data-netbox-color-mode=dark] .border-indigo-600{border-color:#520dc2!important}html[data-netbox-color-mode=dark] .border-indigo-700{border-color:#3d0a91!important}html[data-netbox-color-mode=dark] .border-indigo-800{border-color:#290661!important}html[data-netbox-color-mode=dark] .border-indigo-900{border-color:#140330!important}html[data-netbox-color-mode=dark] .border-purple-100{border-color:#e2d9f3!important}html[data-netbox-color-mode=dark] .border-purple-200{border-color:#c5b3e6!important}html[data-netbox-color-mode=dark] .border-purple-300{border-color:#a98eda!important}html[data-netbox-color-mode=dark] .border-purple-400{border-color:#8c68cd!important}html[data-netbox-color-mode=dark] .border-purple-500{border-color:#6f42c1!important}html[data-netbox-color-mode=dark] .border-purple-600{border-color:#59359a!important}html[data-netbox-color-mode=dark] .border-purple-700{border-color:#432874!important}html[data-netbox-color-mode=dark] .border-purple-800{border-color:#2c1a4d!important}html[data-netbox-color-mode=dark] .border-purple-900{border-color:#160d27!important}html[data-netbox-color-mode=dark] .border-pink-100{border-color:#f7d6e6!important}html[data-netbox-color-mode=dark] .border-pink-200{border-color:#efadce!important}html[data-netbox-color-mode=dark] .border-pink-300{border-color:#e685b5!important}html[data-netbox-color-mode=dark] .border-pink-400{border-color:#de5c9d!important}html[data-netbox-color-mode=dark] .border-pink-500{border-color:#d63384!important}html[data-netbox-color-mode=dark] .border-pink-600{border-color:#ab296a!important}html[data-netbox-color-mode=dark] .border-pink-700{border-color:#801f4f!important}html[data-netbox-color-mode=dark] .border-pink-800{border-color:#561435!important}html[data-netbox-color-mode=dark] .border-pink-900{border-color:#2b0a1a!important}html[data-netbox-color-mode=dark] .border-white{border-color:#fff!important}html[data-netbox-color-mode=dark] .border-1{border-width:1px!important}html[data-netbox-color-mode=dark] .border-2{border-width:2px!important}html[data-netbox-color-mode=dark] .border-3{border-width:3px!important}html[data-netbox-color-mode=dark] .border-4{border-width:4px!important}html[data-netbox-color-mode=dark] .border-5{border-width:5px!important}html[data-netbox-color-mode=dark] .w-25{width:25%!important}html[data-netbox-color-mode=dark] .w-50{width:50%!important}html[data-netbox-color-mode=dark] .w-75{width:75%!important}html[data-netbox-color-mode=dark] .w-100{width:100%!important}html[data-netbox-color-mode=dark] .w-auto{width:auto!important}html[data-netbox-color-mode=dark] .mw-100{max-width:100%!important}html[data-netbox-color-mode=dark] .vw-100{width:100vw!important}html[data-netbox-color-mode=dark] .min-vw-100{min-width:100vw!important}html[data-netbox-color-mode=dark] .h-25{height:25%!important}html[data-netbox-color-mode=dark] .h-50{height:50%!important}html[data-netbox-color-mode=dark] .h-75{height:75%!important}html[data-netbox-color-mode=dark] .h-100{height:100%!important}html[data-netbox-color-mode=dark] .h-auto{height:auto!important}html[data-netbox-color-mode=dark] .mh-100{max-height:100%!important}html[data-netbox-color-mode=dark] .vh-100{height:100vh!important}html[data-netbox-color-mode=dark] .min-vh-100{min-height:100vh!important}html[data-netbox-color-mode=dark] .flex-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-first{order:-1!important}html[data-netbox-color-mode=dark] .order-0{order:0!important}html[data-netbox-color-mode=dark] .order-1{order:1!important}html[data-netbox-color-mode=dark] .order-2{order:2!important}html[data-netbox-color-mode=dark] .order-3{order:3!important}html[data-netbox-color-mode=dark] .order-4{order:4!important}html[data-netbox-color-mode=dark] .order-5{order:5!important}html[data-netbox-color-mode=dark] .order-last{order:6!important}html[data-netbox-color-mode=dark] .m-0{margin:0!important}html[data-netbox-color-mode=dark] .m-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-0{padding:0!important}html[data-netbox-color-mode=dark] .p-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .font-monospace{font-family:var(--bs-font-monospace)!important}html[data-netbox-color-mode=dark] .fs-1{font-size:calc(1.375rem + 1.5vw)!important}html[data-netbox-color-mode=dark] .fs-2{font-size:calc(1.325rem + .9vw)!important}html[data-netbox-color-mode=dark] .fs-3{font-size:calc(1.3rem + .6vw)!important}html[data-netbox-color-mode=dark] .fs-4{font-size:calc(1.275rem + .3vw)!important}html[data-netbox-color-mode=dark] .fs-5{font-size:1.25rem!important}html[data-netbox-color-mode=dark] .fs-6{font-size:1rem!important}html[data-netbox-color-mode=dark] .fst-italic{font-style:italic!important}html[data-netbox-color-mode=dark] .fst-normal{font-style:normal!important}html[data-netbox-color-mode=dark] .fw-light{font-weight:300!important}html[data-netbox-color-mode=dark] .fw-lighter{font-weight:200!important}html[data-netbox-color-mode=dark] .fw-normal{font-weight:400!important}html[data-netbox-color-mode=dark] .fw-bold{font-weight:700!important}html[data-netbox-color-mode=dark] .fw-bolder{font-weight:800!important}html[data-netbox-color-mode=dark] .lh-1{line-height:1!important}html[data-netbox-color-mode=dark] .lh-sm{line-height:1.25!important}html[data-netbox-color-mode=dark] .lh-base{line-height:1.5!important}html[data-netbox-color-mode=dark] .lh-lg{line-height:1.75!important}html[data-netbox-color-mode=dark] .text-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-center{text-align:center!important}html[data-netbox-color-mode=dark] .text-decoration-none{text-decoration:none!important}html[data-netbox-color-mode=dark] .text-decoration-underline{text-decoration:underline!important}html[data-netbox-color-mode=dark] .text-decoration-line-through{text-decoration:line-through!important}html[data-netbox-color-mode=dark] .text-lowercase{text-transform:lowercase!important}html[data-netbox-color-mode=dark] .text-uppercase{text-transform:uppercase!important}html[data-netbox-color-mode=dark] .text-capitalize{text-transform:capitalize!important}html[data-netbox-color-mode=dark] .text-wrap{white-space:normal!important}html[data-netbox-color-mode=dark] .text-nowrap{white-space:nowrap!important}html[data-netbox-color-mode=dark] .text-break{word-wrap:break-word!important;word-break:break-word!important}html[data-netbox-color-mode=dark] .text-primary{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-secondary{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-success{color:#75b798!important}html[data-netbox-color-mode=dark] .text-info{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-warning{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-danger{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-light{color:#dee2e6!important}html[data-netbox-color-mode=dark] .text-dark{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-red{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-yellow{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-green{color:#75b798!important}html[data-netbox-color-mode=dark] .text-blue{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-cyan{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-indigo{color:#a370f7!important}html[data-netbox-color-mode=dark] .text-purple{color:#a98eda!important}html[data-netbox-color-mode=dark] .text-pink{color:#e685b5!important}html[data-netbox-color-mode=dark] .text-darker{color:#1b1f22!important}html[data-netbox-color-mode=dark] .text-darkest{color:#171b1d!important}html[data-netbox-color-mode=dark] .text-gray{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-gray-100{color:#f8f9fa!important}html[data-netbox-color-mode=dark] .text-gray-200{color:#e9ecef!important}html[data-netbox-color-mode=dark] .text-gray-300{color:#dee2e6!important}html[data-netbox-color-mode=dark] .text-gray-400{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-gray-500{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-gray-600{color:#6c757d!important}html[data-netbox-color-mode=dark] .text-gray-700{color:#495057!important}html[data-netbox-color-mode=dark] .text-gray-800{color:#343a40!important}html[data-netbox-color-mode=dark] .text-gray-900{color:#212529!important}html[data-netbox-color-mode=dark] .text-red-100{color:#f8d7da!important}html[data-netbox-color-mode=dark] .text-red-200{color:#f1aeb5!important}html[data-netbox-color-mode=dark] .text-red-300{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-red-400{color:#e35d6a!important}html[data-netbox-color-mode=dark] .text-red-500{color:#dc3545!important}html[data-netbox-color-mode=dark] .text-red-600{color:#b02a37!important}html[data-netbox-color-mode=dark] .text-red-700{color:#842029!important}html[data-netbox-color-mode=dark] .text-red-800{color:#58151c!important}html[data-netbox-color-mode=dark] .text-red-900{color:#2c0b0e!important}html[data-netbox-color-mode=dark] .text-yellow-100{color:#fff3cd!important}html[data-netbox-color-mode=dark] .text-yellow-200{color:#ffe69c!important}html[data-netbox-color-mode=dark] .text-yellow-300{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-yellow-400{color:#ffcd39!important}html[data-netbox-color-mode=dark] .text-yellow-500{color:#ffc107!important}html[data-netbox-color-mode=dark] .text-yellow-600{color:#cc9a06!important}html[data-netbox-color-mode=dark] .text-yellow-700{color:#997404!important}html[data-netbox-color-mode=dark] .text-yellow-800{color:#664d03!important}html[data-netbox-color-mode=dark] .text-yellow-900{color:#332701!important}html[data-netbox-color-mode=dark] .text-green-100{color:#d1e7dd!important}html[data-netbox-color-mode=dark] .text-green-200{color:#a3cfbb!important}html[data-netbox-color-mode=dark] .text-green-300{color:#75b798!important}html[data-netbox-color-mode=dark] .text-green-400{color:#479f76!important}html[data-netbox-color-mode=dark] .text-green-500{color:#198754!important}html[data-netbox-color-mode=dark] .text-green-600{color:#146c43!important}html[data-netbox-color-mode=dark] .text-green-700{color:#0f5132!important}html[data-netbox-color-mode=dark] .text-green-800{color:#0a3622!important}html[data-netbox-color-mode=dark] .text-green-900{color:#051b11!important}html[data-netbox-color-mode=dark] .text-blue-100{color:#cfe2ff!important}html[data-netbox-color-mode=dark] .text-blue-200{color:#9ec5fe!important}html[data-netbox-color-mode=dark] .text-blue-300{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-blue-400{color:#3d8bfd!important}html[data-netbox-color-mode=dark] .text-blue-500{color:#0d6efd!important}html[data-netbox-color-mode=dark] .text-blue-600{color:#0a58ca!important}html[data-netbox-color-mode=dark] .text-blue-700{color:#084298!important}html[data-netbox-color-mode=dark] .text-blue-800{color:#052c65!important}html[data-netbox-color-mode=dark] .text-blue-900{color:#031633!important}html[data-netbox-color-mode=dark] .text-cyan-100{color:#cff4fc!important}html[data-netbox-color-mode=dark] .text-cyan-200{color:#9eeaf9!important}html[data-netbox-color-mode=dark] .text-cyan-300{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-cyan-400{color:#3dd5f3!important}html[data-netbox-color-mode=dark] .text-cyan-500{color:#0dcaf0!important}html[data-netbox-color-mode=dark] .text-cyan-600{color:#0aa2c0!important}html[data-netbox-color-mode=dark] .text-cyan-700{color:#087990!important}html[data-netbox-color-mode=dark] .text-cyan-800{color:#055160!important}html[data-netbox-color-mode=dark] .text-cyan-900{color:#032830!important}html[data-netbox-color-mode=dark] .text-indigo-100{color:#e0cffc!important}html[data-netbox-color-mode=dark] .text-indigo-200{color:#c29ffa!important}html[data-netbox-color-mode=dark] .text-indigo-300{color:#a370f7!important}html[data-netbox-color-mode=dark] .text-indigo-400{color:#8540f5!important}html[data-netbox-color-mode=dark] .text-indigo-500{color:#6610f2!important}html[data-netbox-color-mode=dark] .text-indigo-600{color:#520dc2!important}html[data-netbox-color-mode=dark] .text-indigo-700{color:#3d0a91!important}html[data-netbox-color-mode=dark] .text-indigo-800{color:#290661!important}html[data-netbox-color-mode=dark] .text-indigo-900{color:#140330!important}html[data-netbox-color-mode=dark] .text-purple-100{color:#e2d9f3!important}html[data-netbox-color-mode=dark] .text-purple-200{color:#c5b3e6!important}html[data-netbox-color-mode=dark] .text-purple-300{color:#a98eda!important}html[data-netbox-color-mode=dark] .text-purple-400{color:#8c68cd!important}html[data-netbox-color-mode=dark] .text-purple-500{color:#6f42c1!important}html[data-netbox-color-mode=dark] .text-purple-600{color:#59359a!important}html[data-netbox-color-mode=dark] .text-purple-700{color:#432874!important}html[data-netbox-color-mode=dark] .text-purple-800{color:#2c1a4d!important}html[data-netbox-color-mode=dark] .text-purple-900{color:#160d27!important}html[data-netbox-color-mode=dark] .text-pink-100{color:#f7d6e6!important}html[data-netbox-color-mode=dark] .text-pink-200{color:#efadce!important}html[data-netbox-color-mode=dark] .text-pink-300{color:#e685b5!important}html[data-netbox-color-mode=dark] .text-pink-400{color:#de5c9d!important}html[data-netbox-color-mode=dark] .text-pink-500{color:#d63384!important}html[data-netbox-color-mode=dark] .text-pink-600{color:#ab296a!important}html[data-netbox-color-mode=dark] .text-pink-700{color:#801f4f!important}html[data-netbox-color-mode=dark] .text-pink-800{color:#561435!important}html[data-netbox-color-mode=dark] .text-pink-900{color:#2b0a1a!important}html[data-netbox-color-mode=dark] .text-white{color:#fff!important}html[data-netbox-color-mode=dark] .text-body{color:#fff!important}html[data-netbox-color-mode=dark] .text-muted{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-black-50{color:#00000080!important}html[data-netbox-color-mode=dark] .text-white-50{color:#ffffff80!important}html[data-netbox-color-mode=dark] .text-reset{color:inherit!important}html[data-netbox-color-mode=dark] .bg-primary{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-secondary{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-success{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-info{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-warning{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-danger{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-light{background-color:#dee2e6!important}html[data-netbox-color-mode=dark] .bg-dark{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-red{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-yellow{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-green{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-blue{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-cyan{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-indigo{background-color:#a370f7!important}html[data-netbox-color-mode=dark] .bg-purple{background-color:#a98eda!important}html[data-netbox-color-mode=dark] .bg-pink{background-color:#e685b5!important}html[data-netbox-color-mode=dark] .bg-darker{background-color:#1b1f22!important}html[data-netbox-color-mode=dark] .bg-darkest{background-color:#171b1d!important}html[data-netbox-color-mode=dark] .bg-gray{background-color:#ced4da!important}html[data-netbox-color-mode=dark] .bg-gray-100{background-color:#f8f9fa!important}html[data-netbox-color-mode=dark] .bg-gray-200{background-color:#e9ecef!important}html[data-netbox-color-mode=dark] .bg-gray-300{background-color:#dee2e6!important}html[data-netbox-color-mode=dark] .bg-gray-400{background-color:#ced4da!important}html[data-netbox-color-mode=dark] .bg-gray-500{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-gray-600{background-color:#6c757d!important}html[data-netbox-color-mode=dark] .bg-gray-700{background-color:#495057!important}html[data-netbox-color-mode=dark] .bg-gray-800{background-color:#343a40!important}html[data-netbox-color-mode=dark] .bg-gray-900{background-color:#212529!important}html[data-netbox-color-mode=dark] .bg-red-100{background-color:#f8d7da!important}html[data-netbox-color-mode=dark] .bg-red-200{background-color:#f1aeb5!important}html[data-netbox-color-mode=dark] .bg-red-300{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-red-400{background-color:#e35d6a!important}html[data-netbox-color-mode=dark] .bg-red-500{background-color:#dc3545!important}html[data-netbox-color-mode=dark] .bg-red-600{background-color:#b02a37!important}html[data-netbox-color-mode=dark] .bg-red-700{background-color:#842029!important}html[data-netbox-color-mode=dark] .bg-red-800{background-color:#58151c!important}html[data-netbox-color-mode=dark] .bg-red-900{background-color:#2c0b0e!important}html[data-netbox-color-mode=dark] .bg-yellow-100{background-color:#fff3cd!important}html[data-netbox-color-mode=dark] .bg-yellow-200{background-color:#ffe69c!important}html[data-netbox-color-mode=dark] .bg-yellow-300{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-yellow-400{background-color:#ffcd39!important}html[data-netbox-color-mode=dark] .bg-yellow-500{background-color:#ffc107!important}html[data-netbox-color-mode=dark] .bg-yellow-600{background-color:#cc9a06!important}html[data-netbox-color-mode=dark] .bg-yellow-700{background-color:#997404!important}html[data-netbox-color-mode=dark] .bg-yellow-800{background-color:#664d03!important}html[data-netbox-color-mode=dark] .bg-yellow-900{background-color:#332701!important}html[data-netbox-color-mode=dark] .bg-green-100{background-color:#d1e7dd!important}html[data-netbox-color-mode=dark] .bg-green-200{background-color:#a3cfbb!important}html[data-netbox-color-mode=dark] .bg-green-300{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-green-400{background-color:#479f76!important}html[data-netbox-color-mode=dark] .bg-green-500{background-color:#198754!important}html[data-netbox-color-mode=dark] .bg-green-600{background-color:#146c43!important}html[data-netbox-color-mode=dark] .bg-green-700{background-color:#0f5132!important}html[data-netbox-color-mode=dark] .bg-green-800{background-color:#0a3622!important}html[data-netbox-color-mode=dark] .bg-green-900{background-color:#051b11!important}html[data-netbox-color-mode=dark] .bg-blue-100{background-color:#cfe2ff!important}html[data-netbox-color-mode=dark] .bg-blue-200{background-color:#9ec5fe!important}html[data-netbox-color-mode=dark] .bg-blue-300{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-blue-400{background-color:#3d8bfd!important}html[data-netbox-color-mode=dark] .bg-blue-500{background-color:#0d6efd!important}html[data-netbox-color-mode=dark] .bg-blue-600{background-color:#0a58ca!important}html[data-netbox-color-mode=dark] .bg-blue-700{background-color:#084298!important}html[data-netbox-color-mode=dark] .bg-blue-800{background-color:#052c65!important}html[data-netbox-color-mode=dark] .bg-blue-900{background-color:#031633!important}html[data-netbox-color-mode=dark] .bg-cyan-100{background-color:#cff4fc!important}html[data-netbox-color-mode=dark] .bg-cyan-200{background-color:#9eeaf9!important}html[data-netbox-color-mode=dark] .bg-cyan-300{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-cyan-400{background-color:#3dd5f3!important}html[data-netbox-color-mode=dark] .bg-cyan-500{background-color:#0dcaf0!important}html[data-netbox-color-mode=dark] .bg-cyan-600{background-color:#0aa2c0!important}html[data-netbox-color-mode=dark] .bg-cyan-700{background-color:#087990!important}html[data-netbox-color-mode=dark] .bg-cyan-800{background-color:#055160!important}html[data-netbox-color-mode=dark] .bg-cyan-900{background-color:#032830!important}html[data-netbox-color-mode=dark] .bg-indigo-100{background-color:#e0cffc!important}html[data-netbox-color-mode=dark] .bg-indigo-200{background-color:#c29ffa!important}html[data-netbox-color-mode=dark] .bg-indigo-300{background-color:#a370f7!important}html[data-netbox-color-mode=dark] .bg-indigo-400{background-color:#8540f5!important}html[data-netbox-color-mode=dark] .bg-indigo-500{background-color:#6610f2!important}html[data-netbox-color-mode=dark] .bg-indigo-600{background-color:#520dc2!important}html[data-netbox-color-mode=dark] .bg-indigo-700{background-color:#3d0a91!important}html[data-netbox-color-mode=dark] .bg-indigo-800{background-color:#290661!important}html[data-netbox-color-mode=dark] .bg-indigo-900{background-color:#140330!important}html[data-netbox-color-mode=dark] .bg-purple-100{background-color:#e2d9f3!important}html[data-netbox-color-mode=dark] .bg-purple-200{background-color:#c5b3e6!important}html[data-netbox-color-mode=dark] .bg-purple-300{background-color:#a98eda!important}html[data-netbox-color-mode=dark] .bg-purple-400{background-color:#8c68cd!important}html[data-netbox-color-mode=dark] .bg-purple-500{background-color:#6f42c1!important}html[data-netbox-color-mode=dark] .bg-purple-600{background-color:#59359a!important}html[data-netbox-color-mode=dark] .bg-purple-700{background-color:#432874!important}html[data-netbox-color-mode=dark] .bg-purple-800{background-color:#2c1a4d!important}html[data-netbox-color-mode=dark] .bg-purple-900{background-color:#160d27!important}html[data-netbox-color-mode=dark] .bg-pink-100{background-color:#f7d6e6!important}html[data-netbox-color-mode=dark] .bg-pink-200{background-color:#efadce!important}html[data-netbox-color-mode=dark] .bg-pink-300{background-color:#e685b5!important}html[data-netbox-color-mode=dark] .bg-pink-400{background-color:#de5c9d!important}html[data-netbox-color-mode=dark] .bg-pink-500{background-color:#d63384!important}html[data-netbox-color-mode=dark] .bg-pink-600{background-color:#ab296a!important}html[data-netbox-color-mode=dark] .bg-pink-700{background-color:#801f4f!important}html[data-netbox-color-mode=dark] .bg-pink-800{background-color:#561435!important}html[data-netbox-color-mode=dark] .bg-pink-900{background-color:#2b0a1a!important}html[data-netbox-color-mode=dark] .bg-body{background-color:#1b1f22!important}html[data-netbox-color-mode=dark] .bg-white{background-color:#fff!important}html[data-netbox-color-mode=dark] .bg-transparent{background-color:transparent!important}html[data-netbox-color-mode=dark] .bg-gradient{background-image:var(--bs-gradient)!important}html[data-netbox-color-mode=dark] .user-select-all{user-select:all!important}html[data-netbox-color-mode=dark] .user-select-auto{user-select:auto!important}html[data-netbox-color-mode=dark] .user-select-none{user-select:none!important}html[data-netbox-color-mode=dark] .pe-none{pointer-events:none!important}html[data-netbox-color-mode=dark] .pe-auto{pointer-events:auto!important}html[data-netbox-color-mode=dark] .rounded{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-0{border-radius:0!important}html[data-netbox-color-mode=dark] .rounded-1{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-2{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-3{border-radius:.75rem!important}html[data-netbox-color-mode=dark] .rounded-circle{border-radius:50%!important}html[data-netbox-color-mode=dark] .rounded-pill{border-radius:50rem!important}html[data-netbox-color-mode=dark] .rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}html[data-netbox-color-mode=dark] .visible{visibility:visible!important}html[data-netbox-color-mode=dark] .invisible{visibility:hidden!important}@media (min-width: 576px){html[data-netbox-color-mode=dark] .float-sm-start{float:left!important}html[data-netbox-color-mode=dark] .float-sm-end{float:right!important}html[data-netbox-color-mode=dark] .float-sm-none{float:none!important}html[data-netbox-color-mode=dark] .d-sm-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-sm-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-sm-block{display:block!important}html[data-netbox-color-mode=dark] .d-sm-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-sm-table{display:table!important}html[data-netbox-color-mode=dark] .d-sm-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-sm-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-sm-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-sm-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-sm-none{display:none!important}html[data-netbox-color-mode=dark] .flex-sm-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-sm-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-sm-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-sm-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-sm-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-sm-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-sm-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-sm-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-sm-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-sm-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-sm-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-sm-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-sm-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-sm-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-sm-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-sm-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-sm-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-sm-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-sm-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-sm-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-sm-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-sm-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-sm-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-sm-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-sm-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-sm-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-sm-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-sm-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-sm-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-sm-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-sm-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-sm-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-sm-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-sm-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-sm-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-sm-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-sm-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-sm-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-sm-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-sm-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-sm-first{order:-1!important}html[data-netbox-color-mode=dark] .order-sm-0{order:0!important}html[data-netbox-color-mode=dark] .order-sm-1{order:1!important}html[data-netbox-color-mode=dark] .order-sm-2{order:2!important}html[data-netbox-color-mode=dark] .order-sm-3{order:3!important}html[data-netbox-color-mode=dark] .order-sm-4{order:4!important}html[data-netbox-color-mode=dark] .order-sm-5{order:5!important}html[data-netbox-color-mode=dark] .order-sm-last{order:6!important}html[data-netbox-color-mode=dark] .m-sm-0{margin:0!important}html[data-netbox-color-mode=dark] .m-sm-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-sm-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-sm-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-sm-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-sm-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-sm-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-sm-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-sm-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-sm-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-sm-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-sm-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-sm-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-sm-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-sm-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-sm-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-sm-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-sm-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-sm-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-sm-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-sm-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-sm-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-sm-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-sm-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-sm-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-sm-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-sm-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-sm-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-sm-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-sm-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-sm-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-sm-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-sm-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-sm-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-sm-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-sm-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-sm-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-sm-0{padding:0!important}html[data-netbox-color-mode=dark] .p-sm-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-sm-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-sm-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-sm-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-sm-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-sm-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-sm-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-sm-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-sm-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-sm-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-sm-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-sm-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-sm-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-sm-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-sm-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-sm-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-sm-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-sm-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-sm-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-sm-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-sm-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-sm-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-sm-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-sm-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-sm-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-sm-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-sm-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-sm-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-sm-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-sm-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-sm-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-sm-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-sm-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-sm-center{text-align:center!important}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .float-md-start{float:left!important}html[data-netbox-color-mode=dark] .float-md-end{float:right!important}html[data-netbox-color-mode=dark] .float-md-none{float:none!important}html[data-netbox-color-mode=dark] .d-md-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-md-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-md-block{display:block!important}html[data-netbox-color-mode=dark] .d-md-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-md-table{display:table!important}html[data-netbox-color-mode=dark] .d-md-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-md-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-md-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-md-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-md-none{display:none!important}html[data-netbox-color-mode=dark] .flex-md-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-md-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-md-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-md-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-md-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-md-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-md-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-md-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-md-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-md-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-md-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-md-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-md-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-md-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-md-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-md-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-md-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-md-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-md-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-md-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-md-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-md-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-md-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-md-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-md-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-md-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-md-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-md-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-md-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-md-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-md-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-md-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-md-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-md-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-md-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-md-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-md-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-md-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-md-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-md-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-md-first{order:-1!important}html[data-netbox-color-mode=dark] .order-md-0{order:0!important}html[data-netbox-color-mode=dark] .order-md-1{order:1!important}html[data-netbox-color-mode=dark] .order-md-2{order:2!important}html[data-netbox-color-mode=dark] .order-md-3{order:3!important}html[data-netbox-color-mode=dark] .order-md-4{order:4!important}html[data-netbox-color-mode=dark] .order-md-5{order:5!important}html[data-netbox-color-mode=dark] .order-md-last{order:6!important}html[data-netbox-color-mode=dark] .m-md-0{margin:0!important}html[data-netbox-color-mode=dark] .m-md-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-md-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-md-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-md-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-md-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-md-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-md-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-md-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-md-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-md-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-md-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-md-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-md-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-md-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-md-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-md-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-md-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-md-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-md-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-md-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-md-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-md-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-md-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-md-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-md-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-md-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-md-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-md-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-md-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-md-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-md-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-md-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-md-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-md-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-md-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-md-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-md-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-md-0{padding:0!important}html[data-netbox-color-mode=dark] .p-md-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-md-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-md-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-md-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-md-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-md-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-md-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-md-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-md-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-md-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-md-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-md-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-md-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-md-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-md-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-md-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-md-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-md-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-md-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-md-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-md-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-md-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-md-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-md-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-md-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-md-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-md-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-md-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-md-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-md-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-md-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-md-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-md-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-md-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-md-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-md-center{text-align:center!important}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .float-lg-start{float:left!important}html[data-netbox-color-mode=dark] .float-lg-end{float:right!important}html[data-netbox-color-mode=dark] .float-lg-none{float:none!important}html[data-netbox-color-mode=dark] .d-lg-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-lg-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-lg-block{display:block!important}html[data-netbox-color-mode=dark] .d-lg-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-lg-table{display:table!important}html[data-netbox-color-mode=dark] .d-lg-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-lg-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-lg-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-lg-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-lg-none{display:none!important}html[data-netbox-color-mode=dark] .flex-lg-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-lg-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-lg-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-lg-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-lg-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-lg-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-lg-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-lg-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-lg-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-lg-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-lg-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-lg-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-lg-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-lg-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-lg-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-lg-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-lg-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-lg-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-lg-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-lg-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-lg-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-lg-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-lg-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-lg-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-lg-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-lg-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-lg-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-lg-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-lg-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-lg-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-lg-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-lg-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-lg-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-lg-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-lg-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-lg-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-lg-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-lg-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-lg-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-lg-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-lg-first{order:-1!important}html[data-netbox-color-mode=dark] .order-lg-0{order:0!important}html[data-netbox-color-mode=dark] .order-lg-1{order:1!important}html[data-netbox-color-mode=dark] .order-lg-2{order:2!important}html[data-netbox-color-mode=dark] .order-lg-3{order:3!important}html[data-netbox-color-mode=dark] .order-lg-4{order:4!important}html[data-netbox-color-mode=dark] .order-lg-5{order:5!important}html[data-netbox-color-mode=dark] .order-lg-last{order:6!important}html[data-netbox-color-mode=dark] .m-lg-0{margin:0!important}html[data-netbox-color-mode=dark] .m-lg-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-lg-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-lg-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-lg-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-lg-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-lg-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-lg-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-lg-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-lg-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-lg-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-lg-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-lg-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-lg-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-lg-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-lg-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-lg-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-lg-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-lg-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-lg-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-lg-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-lg-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-lg-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-lg-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-lg-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-lg-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-lg-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-lg-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-lg-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-lg-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-lg-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-lg-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-lg-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-lg-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-lg-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-lg-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-lg-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-lg-0{padding:0!important}html[data-netbox-color-mode=dark] .p-lg-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-lg-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-lg-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-lg-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-lg-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-lg-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-lg-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-lg-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-lg-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-lg-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-lg-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-lg-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-lg-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-lg-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-lg-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-lg-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-lg-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-lg-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-lg-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-lg-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-lg-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-lg-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-lg-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-lg-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-lg-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-lg-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-lg-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-lg-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-lg-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-lg-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-lg-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-lg-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-lg-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-lg-center{text-align:center!important}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .float-xl-start{float:left!important}html[data-netbox-color-mode=dark] .float-xl-end{float:right!important}html[data-netbox-color-mode=dark] .float-xl-none{float:none!important}html[data-netbox-color-mode=dark] .d-xl-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-xl-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-xl-block{display:block!important}html[data-netbox-color-mode=dark] .d-xl-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-xl-table{display:table!important}html[data-netbox-color-mode=dark] .d-xl-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-xl-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-xl-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-xl-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-xl-none{display:none!important}html[data-netbox-color-mode=dark] .flex-xl-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-xl-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-xl-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-xl-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-xl-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-xl-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-xl-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-xl-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-xl-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-xl-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-xl-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-xl-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-xl-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-xl-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-xl-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-xl-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-xl-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-xl-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-xl-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-xl-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-xl-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-xl-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-xl-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-xl-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-xl-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-xl-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-xl-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-xl-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-xl-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-xl-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-xl-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-xl-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-xl-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-xl-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-xl-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-xl-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-xl-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-xl-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-xl-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-xl-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-xl-first{order:-1!important}html[data-netbox-color-mode=dark] .order-xl-0{order:0!important}html[data-netbox-color-mode=dark] .order-xl-1{order:1!important}html[data-netbox-color-mode=dark] .order-xl-2{order:2!important}html[data-netbox-color-mode=dark] .order-xl-3{order:3!important}html[data-netbox-color-mode=dark] .order-xl-4{order:4!important}html[data-netbox-color-mode=dark] .order-xl-5{order:5!important}html[data-netbox-color-mode=dark] .order-xl-last{order:6!important}html[data-netbox-color-mode=dark] .m-xl-0{margin:0!important}html[data-netbox-color-mode=dark] .m-xl-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-xl-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-xl-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-xl-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-xl-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-xl-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-xl-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-xl-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-xl-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-xl-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-xl-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-xl-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-xl-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-xl-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-xl-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-xl-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-xl-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-xl-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-xl-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-xl-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-xl-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-xl-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-xl-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-xl-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-xl-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-xl-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-xl-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-xl-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-xl-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-xl-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-xl-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-xl-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-xl-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-xl-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-xl-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-xl-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-xl-0{padding:0!important}html[data-netbox-color-mode=dark] .p-xl-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-xl-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-xl-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-xl-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-xl-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-xl-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-xl-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-xl-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-xl-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-xl-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-xl-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-xl-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-xl-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-xl-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-xl-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-xl-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-xl-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-xl-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-xl-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-xl-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-xl-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-xl-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-xl-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-xl-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-xl-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-xl-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-xl-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-xl-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-xl-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-xl-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-xl-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-xl-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-xl-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-xl-center{text-align:center!important}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .float-xxl-start{float:left!important}html[data-netbox-color-mode=dark] .float-xxl-end{float:right!important}html[data-netbox-color-mode=dark] .float-xxl-none{float:none!important}html[data-netbox-color-mode=dark] .d-xxl-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-xxl-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-xxl-block{display:block!important}html[data-netbox-color-mode=dark] .d-xxl-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-xxl-table{display:table!important}html[data-netbox-color-mode=dark] .d-xxl-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-xxl-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-xxl-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-xxl-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-xxl-none{display:none!important}html[data-netbox-color-mode=dark] .flex-xxl-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-xxl-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-xxl-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-xxl-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-xxl-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-xxl-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-xxl-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-xxl-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-xxl-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-xxl-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-xxl-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-xxl-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-xxl-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-xxl-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-xxl-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-xxl-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-xxl-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-xxl-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-xxl-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-xxl-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-xxl-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-xxl-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-xxl-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-xxl-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-xxl-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-xxl-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-xxl-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-xxl-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-xxl-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-xxl-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-xxl-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-xxl-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-xxl-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-xxl-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-xxl-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-xxl-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-xxl-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-xxl-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-xxl-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-xxl-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-xxl-first{order:-1!important}html[data-netbox-color-mode=dark] .order-xxl-0{order:0!important}html[data-netbox-color-mode=dark] .order-xxl-1{order:1!important}html[data-netbox-color-mode=dark] .order-xxl-2{order:2!important}html[data-netbox-color-mode=dark] .order-xxl-3{order:3!important}html[data-netbox-color-mode=dark] .order-xxl-4{order:4!important}html[data-netbox-color-mode=dark] .order-xxl-5{order:5!important}html[data-netbox-color-mode=dark] .order-xxl-last{order:6!important}html[data-netbox-color-mode=dark] .m-xxl-0{margin:0!important}html[data-netbox-color-mode=dark] .m-xxl-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-xxl-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-xxl-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-xxl-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-xxl-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-xxl-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-xxl-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-xxl-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-xxl-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-xxl-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-xxl-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-xxl-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-xxl-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-xxl-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-xxl-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-xxl-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-xxl-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-xxl-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-xxl-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-xxl-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-xxl-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-xxl-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-xxl-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-xxl-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-xxl-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-xxl-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-xxl-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-xxl-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-xxl-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-xxl-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-xxl-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-xxl-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-xxl-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-xxl-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-xxl-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-xxl-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-xxl-0{padding:0!important}html[data-netbox-color-mode=dark] .p-xxl-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-xxl-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-xxl-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-xxl-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-xxl-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-xxl-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-xxl-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-xxl-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-xxl-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-xxl-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-xxl-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-xxl-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-xxl-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-xxl-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-xxl-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-xxl-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-xxl-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-xxl-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-xxl-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-xxl-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-xxl-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-xxl-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-xxl-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-xxl-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-xxl-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-xxl-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-xxl-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-xxl-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-xxl-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-xxl-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-xxl-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-xxl-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-xxl-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-xxl-center{text-align:center!important}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .fs-1{font-size:2.5rem!important}html[data-netbox-color-mode=dark] .fs-2{font-size:2rem!important}html[data-netbox-color-mode=dark] .fs-3{font-size:1.75rem!important}html[data-netbox-color-mode=dark] .fs-4{font-size:1.5rem!important}}@media print{html[data-netbox-color-mode=dark] .d-print-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-print-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-print-block{display:block!important}html[data-netbox-color-mode=dark] .d-print-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-print-table{display:table!important}html[data-netbox-color-mode=dark] .d-print-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-print-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-print-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-print-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-print-none{display:none!important}}html[data-netbox-color-mode=dark] :root{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}html[data-netbox-color-mode=dark] .ss-main{position:relative;display:inline-block;user-select:none;color:#f8f9fa;width:100%}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-disabled{background-color:#495057;cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .ss-disabled{color:#adb5bd}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span{border:solid #f8f9fa;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled{background-color:#495057;cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#f8f9fa}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#adb5bd;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#6ea8fe;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#f8f9fa;position:relative;height:10px;width:2px;transition:transform .2s}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#f8f9fa;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}html[data-netbox-color-mode=dark] .ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #495057;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}html[data-netbox-color-mode=dark] .ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}html[data-netbox-color-mode=dark] .ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}html[data-netbox-color-mode=dark] .ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}html[data-netbox-color-mode=dark] .ss-content .ss-search input::placeholder{color:#495057;vertical-align:middle}html[data-netbox-color-mode=dark] .ss-content .ss-search input:focus{box-shadow:0 0 5px #6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #495057;border-radius:.375rem;box-sizing:border-box}html[data-netbox-color-mode=dark] .ss-content .ss-addable{padding-top:0}html[data-netbox-color-mode=dark] .ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option *{display:inline-block}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#adb5bd;background-color:#fff}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#f8f9fa;background-color:#6ea8fe1a}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-hide{display:none}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}html[data-netbox-color-mode=dark] .ss-main{color:#f8f9fa}html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-multi-selected{border-color:#198754}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#212529;border:1px solid #495057}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected[disabled]{color:#adb5bd;background-color:#495057}html[data-netbox-color-mode=dark] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#ced4da}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .depth{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder{line-height:1.5}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add{margin:0 .75rem}html[data-netbox-color-mode=dark] .ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#fff;background-color:var(--nbx-select-option-selected-bg)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#adb5bd}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search{padding-right:.5rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search button{margin-left:.75rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]{color:#f8f9fa;background-color:#212529;border:1px solid #495057}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .flatpickr-calendar{color:#fff;background:#343a40;border-radius:.375rem;box-shadow:1px 0 #495057,-1px 0 #495057,0 1px #495057,0 -1px #495057,0 3px 13px #00000014}html[data-netbox-color-mode=dark] .flatpickr-calendar.arrowTop:before,html[data-netbox-color-mode=dark] .flatpickr-calendar.arrowTop:after{border-bottom-color:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar span.flatpickr-weekday{color:#dee2e6}html[data-netbox-color-mode=dark] .flatpickr-calendar .numInputWrapper span.arrowUp:after{border-bottom-color:#f8f9fa}html[data-netbox-color-mode=dark] .flatpickr-calendar .numInputWrapper span.arrowDown:after{border-top-color:#f8f9fa}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-month{color:#fff;fill:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-next-month,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-prev-month{color:#fff;fill:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg{fill:#ea868f}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-current-month select{background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day{color:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay{color:#000;background:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day:hover{color:#000;background:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay{color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.prevMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.nextMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay:hover{color:#000;background:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input{color:#f8f9fa;background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input:active{background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time .flatpickr-time-separator{color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{border-top:1px solid #495057}html[data-netbox-color-mode=dark] .sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #495057;transition:all .1s ease-in-out}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .sidenav{transform:translate(-3rem)}html[data-netbox-color-mode=dark] .sidenav+.content-container[class]{margin-left:0}html[data-netbox-color-mode=dark] .sidenav .profile-button-container[class]{display:block}}html[data-netbox-color-mode=dark] .sidenav .profile-button-container{display:none;padding:.5rem 1rem}html[data-netbox-color-mode=dark] .sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-brand{margin-right:0}html[data-netbox-color-mode=dark] .sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sidenav .sidenav-inner{padding-right:0;padding-left:0}}html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}html[data-netbox-color-mode=dark] .sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}html[data-netbox-color-mode=dark] .sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-toggle{display:none}html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse>*{min-width:100%}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse{margin-right:0;margin-left:0}}html[data-netbox-color-mode=dark] .sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}html[data-netbox-color-mode=dark] .sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}html[data-netbox-color-mode=dark] .sidenav .nav .nav-item.no-buttons{padding-right:5rem}html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#000;background:#6397e5}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#ced4da;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#000}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#6ea8fe;transform:rotate(90deg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item{margin-top:2px}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}html[data-netbox-color-mode=dark] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav{max-width:16rem}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav{transform:translate(0)}}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0;transform:translate(-150%)}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand{display:block}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}@media (min-width: 992px){html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-toggle{display:inline-block}}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}html[data-netbox-color-mode=dark] body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}html[data-netbox-color-mode=dark] pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=dark] .small{font-size:smaller!important}html[data-netbox-color-mode=dark] a[type=button]{-webkit-appearance:unset!important}html[data-netbox-color-mode=dark] *[data-href]{cursor:pointer}html[data-netbox-color-mode=dark] .form-control:not([type=file]){font-size:inherit}html[data-netbox-color-mode=dark] .badge{font-size:.75rem}html[data-netbox-color-mode=dark] .text-xs{font-size:.75rem!important;line-height:1.25!important}html[data-netbox-color-mode=dark] .border-input{border:1px solid #495057!important}html[data-netbox-color-mode=dark] .ws-nowrap{white-space:nowrap!important}html[data-netbox-color-mode=dark] table tr .vertical-align,html[data-netbox-color-mode=dark] table td .vertical-align{vertical-align:middle}@media print{html[data-netbox-color-mode=dark] .noprint{display:none!important;visibility:hidden!important}}html[data-netbox-color-mode=dark] .printonly{display:none!important;visibility:hidden!important}@media print{html[data-netbox-color-mode=dark] .printonly{display:block!important;visibility:visible!important}}html[data-netbox-color-mode=dark] :root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #ced4da;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #dee2e6;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #6ea8fe;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}html[data-netbox-color-mode=dark] .bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-primary{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-primary:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=dark] .table-primary a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-primary .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-primary a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-primary,html[data-netbox-color-mode=dark] .toast.bg-primary,html[data-netbox-color-mode=dark] .toast-header.bg-primary,html[data-netbox-color-mode=dark] .progress-bar.bg-primary{color:#000}html[data-netbox-color-mode=dark] .bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=dark] .table-secondary a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-secondary .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-secondary a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-secondary,html[data-netbox-color-mode=dark] .toast.bg-secondary,html[data-netbox-color-mode=dark] .toast-header.bg-secondary,html[data-netbox-color-mode=dark] .progress-bar.bg-secondary{color:#000}html[data-netbox-color-mode=dark] .bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-success{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-success:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=dark] .table-success a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-success .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-success a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-success,html[data-netbox-color-mode=dark] .toast.bg-success,html[data-netbox-color-mode=dark] .toast-header.bg-success,html[data-netbox-color-mode=dark] .progress-bar.bg-success{color:#000}html[data-netbox-color-mode=dark] .bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-info{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-info:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=dark] .table-info a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-info .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-info a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-info,html[data-netbox-color-mode=dark] .toast.bg-info,html[data-netbox-color-mode=dark] .toast-header.bg-info,html[data-netbox-color-mode=dark] .progress-bar.bg-info{color:#000}html[data-netbox-color-mode=dark] .bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-warning{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-warning:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=dark] .table-warning a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-warning .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-warning a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-warning,html[data-netbox-color-mode=dark] .toast.bg-warning,html[data-netbox-color-mode=dark] .toast-header.bg-warning,html[data-netbox-color-mode=dark] .progress-bar.bg-warning{color:#000}html[data-netbox-color-mode=dark] .bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-danger{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-danger:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=dark] .table-danger a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-danger .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-danger a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-danger,html[data-netbox-color-mode=dark] .toast.bg-danger,html[data-netbox-color-mode=dark] .toast-header.bg-danger,html[data-netbox-color-mode=dark] .progress-bar.bg-danger{color:#000}html[data-netbox-color-mode=dark] .bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2d2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-light{color:#dee2e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-light:hover{background-color:#dee2e61f}html[data-netbox-color-mode=dark] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=dark] .table-light a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-light .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-light a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .badge.bg-light,html[data-netbox-color-mode=dark] .toast.bg-light,html[data-netbox-color-mode=dark] .toast-header.bg-light,html[data-netbox-color-mode=dark] .progress-bar.bg-light{color:#000}html[data-netbox-color-mode=dark] .bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-dark{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-dark:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=dark] .table-dark a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-dark .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-dark a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-dark,html[data-netbox-color-mode=dark] .toast.bg-dark,html[data-netbox-color-mode=dark] .toast-header.bg-dark,html[data-netbox-color-mode=dark] .progress-bar.bg-dark{color:#000}html[data-netbox-color-mode=dark] .bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-red:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=dark] .table-red a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-red,html[data-netbox-color-mode=dark] .toast.bg-red,html[data-netbox-color-mode=dark] .toast-header.bg-red,html[data-netbox-color-mode=dark] .progress-bar.bg-red{color:#000}html[data-netbox-color-mode=dark] .bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-yellow,html[data-netbox-color-mode=dark] .toast.bg-yellow,html[data-netbox-color-mode=dark] .toast-header.bg-yellow,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow{color:#000}html[data-netbox-color-mode=dark] .bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-green:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=dark] .table-green a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-green,html[data-netbox-color-mode=dark] .toast.bg-green,html[data-netbox-color-mode=dark] .toast-header.bg-green,html[data-netbox-color-mode=dark] .progress-bar.bg-green{color:#000}html[data-netbox-color-mode=dark] .bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=dark] .table-blue a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-blue,html[data-netbox-color-mode=dark] .toast.bg-blue,html[data-netbox-color-mode=dark] .toast-header.bg-blue,html[data-netbox-color-mode=dark] .progress-bar.bg-blue{color:#000}html[data-netbox-color-mode=dark] .bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-cyan,html[data-netbox-color-mode=dark] .toast.bg-cyan,html[data-netbox-color-mode=dark] .toast-header.bg-cyan,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan{color:#000}html[data-netbox-color-mode=dark] .bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23211631'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo{color:#a370f7}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo:hover{background-color:#a370f71f}html[data-netbox-color-mode=dark] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .badge.bg-indigo,html[data-netbox-color-mode=dark] .toast.bg-indigo,html[data-netbox-color-mode=dark] .toast-header.bg-indigo,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo{color:#000}html[data-netbox-color-mode=dark] .bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23221c2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple{color:#a98eda}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple:hover{background-color:#a98eda1f}html[data-netbox-color-mode=dark] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=dark] .table-purple a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .badge.bg-purple,html[data-netbox-color-mode=dark] .toast.bg-purple,html[data-netbox-color-mode=dark] .toast-header.bg-purple,html[data-netbox-color-mode=dark] .progress-bar.bg-purple{color:#000}html[data-netbox-color-mode=dark] .bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e1b24'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink{color:#e685b5}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink:hover{background-color:#e685b51f}html[data-netbox-color-mode=dark] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=dark] .table-pink a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .badge.bg-pink,html[data-netbox-color-mode=dark] .toast.bg-pink,html[data-netbox-color-mode=dark] .toast-header.bg-pink,html[data-netbox-color-mode=dark] .progress-bar.bg-pink{color:#000}html[data-netbox-color-mode=dark] .bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1d2d3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-darker{color:#1b1f22}html[data-netbox-color-mode=dark] .btn.btn-ghost-darker:hover{background-color:#1b1f221f}html[data-netbox-color-mode=dark] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=dark] .table-darker a:not(.btn){font-weight:700;color:#d1d2d3}html[data-netbox-color-mode=dark] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darker .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-darker a:not(.btn){font-weight:700;color:#d1d2d3}html[data-netbox-color-mode=dark] .badge.bg-darker,html[data-netbox-color-mode=dark] .toast.bg-darker,html[data-netbox-color-mode=dark] .toast-header.bg-darker,html[data-netbox-color-mode=dark] .progress-bar.bg-darker{color:#fff}html[data-netbox-color-mode=dark] .bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1d1d2'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest{color:#171b1d}html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest:hover{background-color:#171b1d1f}html[data-netbox-color-mode=dark] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=dark] .table-darkest a:not(.btn){font-weight:700;color:#d1d1d2}html[data-netbox-color-mode=dark] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darkest .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-darkest a:not(.btn){font-weight:700;color:#d1d1d2}html[data-netbox-color-mode=dark] .badge.bg-darkest,html[data-netbox-color-mode=dark] .toast.bg-darkest,html[data-netbox-color-mode=dark] .toast-header.bg-darkest,html[data-netbox-color-mode=dark] .progress-bar.bg-darkest{color:#fff}html[data-netbox-color-mode=dark] .bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292a2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray{color:#ced4da}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray:hover{background-color:#ced4da1f}html[data-netbox-color-mode=dark] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=dark] .table-gray a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .badge.bg-gray,html[data-netbox-color-mode=dark] .toast.bg-gray,html[data-netbox-color-mode=dark] .toast-header.bg-gray,html[data-netbox-color-mode=dark] .progress-bar.bg-gray{color:#000}html[data-netbox-color-mode=dark] .bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323232'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100{color:#f8f9fa}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}html[data-netbox-color-mode=dark] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-100 a:not(.btn){font-weight:700;color:#323232}html[data-netbox-color-mode=dark] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-100 a:not(.btn){font-weight:700;color:#323232}html[data-netbox-color-mode=dark] .badge.bg-gray-100,html[data-netbox-color-mode=dark] .toast.bg-gray-100,html[data-netbox-color-mode=dark] .toast-header.bg-gray-100,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-100{color:#000}html[data-netbox-color-mode=dark] .bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f2f30'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200{color:#e9ecef}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}html[data-netbox-color-mode=dark] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-200 a:not(.btn){font-weight:700;color:#2f2f30}html[data-netbox-color-mode=dark] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-200 a:not(.btn){font-weight:700;color:#2f2f30}html[data-netbox-color-mode=dark] .badge.bg-gray-200,html[data-netbox-color-mode=dark] .toast.bg-gray-200,html[data-netbox-color-mode=dark] .toast-header.bg-gray-200,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-200{color:#000}html[data-netbox-color-mode=dark] .bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2d2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300{color:#dee2e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}html[data-netbox-color-mode=dark] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-300 a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-300 a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .badge.bg-gray-300,html[data-netbox-color-mode=dark] .toast.bg-gray-300,html[data-netbox-color-mode=dark] .toast-header.bg-gray-300,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-300{color:#000}html[data-netbox-color-mode=dark] .bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292a2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400{color:#ced4da}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}html[data-netbox-color-mode=dark] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-400 a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-400 a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .badge.bg-gray-400,html[data-netbox-color-mode=dark] .toast.bg-gray-400,html[data-netbox-color-mode=dark] .toast-header.bg-gray-400,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-400{color:#000}html[data-netbox-color-mode=dark] .bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-500 a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-500 a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-gray-500,html[data-netbox-color-mode=dark] .toast.bg-gray-500,html[data-netbox-color-mode=dark] .toast-header.bg-gray-500,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-500{color:#000}html[data-netbox-color-mode=dark] .bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23161719'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600{color:#6c757d}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}html[data-netbox-color-mode=dark] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-600 a:not(.btn){font-weight:700;color:#161719}html[data-netbox-color-mode=dark] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-600 a:not(.btn){font-weight:700;color:#e2e3e5}html[data-netbox-color-mode=dark] .badge.bg-gray-600,html[data-netbox-color-mode=dark] .toast.bg-gray-600,html[data-netbox-color-mode=dark] .toast-header.bg-gray-600,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-600{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dbdcdd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700{color:#495057}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700:hover{background-color:#4950571f}html[data-netbox-color-mode=dark] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-700 a:not(.btn){font-weight:700;color:#dbdcdd}html[data-netbox-color-mode=dark] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-700 a:not(.btn){font-weight:700;color:#dbdcdd}html[data-netbox-color-mode=dark] .badge.bg-gray-700,html[data-netbox-color-mode=dark] .toast.bg-gray-700,html[data-netbox-color-mode=dark] .toast-header.bg-gray-700,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-700{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6d8d9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800{color:#343a40}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800:hover{background-color:#343a401f}html[data-netbox-color-mode=dark] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-800 a:not(.btn){font-weight:700;color:#d6d8d9}html[data-netbox-color-mode=dark] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-800 a:not(.btn){font-weight:700;color:#d6d8d9}html[data-netbox-color-mode=dark] .badge.bg-gray-800,html[data-netbox-color-mode=dark] .toast.bg-gray-800,html[data-netbox-color-mode=dark] .toast-header.bg-gray-800,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-800{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d3d3d4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900{color:#212529}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900:hover{background-color:#2125291f}html[data-netbox-color-mode=dark] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-900 a:not(.btn){font-weight:700;color:#d3d3d4}html[data-netbox-color-mode=dark] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-900 a:not(.btn){font-weight:700;color:#d3d3d4}html[data-netbox-color-mode=dark] .badge.bg-gray-900,html[data-netbox-color-mode=dark] .toast.bg-gray-900,html[data-netbox-color-mode=dark] .toast-header.bg-gray-900,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-900{color:#fff}html[data-netbox-color-mode=dark] .bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23322b2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100{color:#f8d7da}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}html[data-netbox-color-mode=dark] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-100 a:not(.btn){font-weight:700;color:#322b2c}html[data-netbox-color-mode=dark] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-100 a:not(.btn){font-weight:700;color:#322b2c}html[data-netbox-color-mode=dark] .badge.bg-red-100,html[data-netbox-color-mode=dark] .toast.bg-red-100,html[data-netbox-color-mode=dark] .toast-header.bg-red-100,html[data-netbox-color-mode=dark] .progress-bar.bg-red-100{color:#000}html[data-netbox-color-mode=dark] .bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23302324'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200{color:#f1aeb5}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}html[data-netbox-color-mode=dark] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-200 a:not(.btn){font-weight:700;color:#302324}html[data-netbox-color-mode=dark] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-200 a:not(.btn){font-weight:700;color:#302324}html[data-netbox-color-mode=dark] .badge.bg-red-200,html[data-netbox-color-mode=dark] .toast.bg-red-200,html[data-netbox-color-mode=dark] .toast-header.bg-red-200,html[data-netbox-color-mode=dark] .progress-bar.bg-red-200{color:#000}html[data-netbox-color-mode=dark] .bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-300 a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-300 a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-red-300,html[data-netbox-color-mode=dark] .toast.bg-red-300,html[data-netbox-color-mode=dark] .toast-header.bg-red-300,html[data-netbox-color-mode=dark] .progress-bar.bg-red-300{color:#000}html[data-netbox-color-mode=dark] .bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d1315'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400{color:#e35d6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}html[data-netbox-color-mode=dark] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-400 a:not(.btn){font-weight:700;color:#2d1315}html[data-netbox-color-mode=dark] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-400 a:not(.btn){font-weight:700;color:#2d1315}html[data-netbox-color-mode=dark] .badge.bg-red-400,html[data-netbox-color-mode=dark] .toast.bg-red-400,html[data-netbox-color-mode=dark] .toast-header.bg-red-400,html[data-netbox-color-mode=dark] .progress-bar.bg-red-400{color:#000}html[data-netbox-color-mode=dark] .bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c0b0e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500{color:#dc3545}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500:hover{background-color:#dc35451f}html[data-netbox-color-mode=dark] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-500 a:not(.btn){font-weight:700;color:#2c0b0e}html[data-netbox-color-mode=dark] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-500 a:not(.btn){font-weight:700;color:#f8d7da}html[data-netbox-color-mode=dark] .badge.bg-red-500,html[data-netbox-color-mode=dark] .toast.bg-red-500,html[data-netbox-color-mode=dark] .toast-header.bg-red-500,html[data-netbox-color-mode=dark] .progress-bar.bg-red-500{color:#fff}html[data-netbox-color-mode=dark] .bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23efd4d7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600{color:#b02a37}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600:hover{background-color:#b02a371f}html[data-netbox-color-mode=dark] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-600 a:not(.btn){font-weight:700;color:#efd4d7}html[data-netbox-color-mode=dark] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-600 a:not(.btn){font-weight:700;color:#efd4d7}html[data-netbox-color-mode=dark] .badge.bg-red-600,html[data-netbox-color-mode=dark] .toast.bg-red-600,html[data-netbox-color-mode=dark] .toast-header.bg-red-600,html[data-netbox-color-mode=dark] .progress-bar.bg-red-600{color:#fff}html[data-netbox-color-mode=dark] .bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6d2d4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700{color:#842029}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700:hover{background-color:#8420291f}html[data-netbox-color-mode=dark] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-700 a:not(.btn){font-weight:700;color:#e6d2d4}html[data-netbox-color-mode=dark] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-700 a:not(.btn){font-weight:700;color:#e6d2d4}html[data-netbox-color-mode=dark] .badge.bg-red-700,html[data-netbox-color-mode=dark] .toast.bg-red-700,html[data-netbox-color-mode=dark] .toast-header.bg-red-700,html[data-netbox-color-mode=dark] .progress-bar.bg-red-700{color:#fff}html[data-netbox-color-mode=dark] .bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ded0d2'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800{color:#58151c}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800:hover{background-color:#58151c1f}html[data-netbox-color-mode=dark] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-800 a:not(.btn){font-weight:700;color:#ded0d2}html[data-netbox-color-mode=dark] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-800 a:not(.btn){font-weight:700;color:#ded0d2}html[data-netbox-color-mode=dark] .badge.bg-red-800,html[data-netbox-color-mode=dark] .toast.bg-red-800,html[data-netbox-color-mode=dark] .toast-header.bg-red-800,html[data-netbox-color-mode=dark] .progress-bar.bg-red-800{color:#fff}html[data-netbox-color-mode=dark] .bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5cecf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900{color:#2c0b0e}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}html[data-netbox-color-mode=dark] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-900 a:not(.btn){font-weight:700;color:#d5cecf}html[data-netbox-color-mode=dark] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-900 a:not(.btn){font-weight:700;color:#d5cecf}html[data-netbox-color-mode=dark] .badge.bg-red-900,html[data-netbox-color-mode=dark] .toast.bg-red-900,html[data-netbox-color-mode=dark] .toast-header.bg-red-900,html[data-netbox-color-mode=dark] .progress-bar.bg-red-900{color:#fff}html[data-netbox-color-mode=dark] .bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333129'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100{color:#fff3cd}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-100 a:not(.btn){font-weight:700;color:#333129}html[data-netbox-color-mode=dark] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#333129}html[data-netbox-color-mode=dark] .badge.bg-yellow-100,html[data-netbox-color-mode=dark] .toast.bg-yellow-100,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-100,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-100{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332e1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200{color:#ffe69c}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-200 a:not(.btn){font-weight:700;color:#332e1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#332e1f}html[data-netbox-color-mode=dark] .badge.bg-yellow-200,html[data-netbox-color-mode=dark] .toast.bg-yellow-200,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-200,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-200{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-300 a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-yellow-300,html[data-netbox-color-mode=dark] .toast.bg-yellow-300,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-300,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-300{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2333290b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400{color:#ffcd39}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}html[data-netbox-color-mode=dark] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-400 a:not(.btn){font-weight:700;color:#33290b}html[data-netbox-color-mode=dark] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#33290b}html[data-netbox-color-mode=dark] .badge.bg-yellow-400,html[data-netbox-color-mode=dark] .toast.bg-yellow-400,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-400,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-400{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500{color:#ffc107}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}html[data-netbox-color-mode=dark] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-500 a:not(.btn){font-weight:700;color:#332701}html[data-netbox-color-mode=dark] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#332701}html[data-netbox-color-mode=dark] .badge.bg-yellow-500,html[data-netbox-color-mode=dark] .toast.bg-yellow-500,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-500,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-500{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23291f01'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600{color:#cc9a06}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}html[data-netbox-color-mode=dark] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-600 a:not(.btn){font-weight:700;color:#291f01}html[data-netbox-color-mode=dark] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#291f01}html[data-netbox-color-mode=dark] .badge.bg-yellow-600,html[data-netbox-color-mode=dark] .toast.bg-yellow-600,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-600,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-600{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700{color:#997404}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700:hover{background-color:#9974041f}html[data-netbox-color-mode=dark] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-700 a:not(.btn){font-weight:700;color:#1f1701}html[data-netbox-color-mode=dark] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#1f1701}html[data-netbox-color-mode=dark] .badge.bg-yellow-700,html[data-netbox-color-mode=dark] .toast.bg-yellow-700,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-700,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-700{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0dbcd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800{color:#664d03}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800:hover{background-color:#664d031f}html[data-netbox-color-mode=dark] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-800 a:not(.btn){font-weight:700;color:#e0dbcd}html[data-netbox-color-mode=dark] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#e0dbcd}html[data-netbox-color-mode=dark] .badge.bg-yellow-800,html[data-netbox-color-mode=dark] .toast.bg-yellow-800,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-800,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-800{color:#fff}html[data-netbox-color-mode=dark] .bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6d4cc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900{color:#332701}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900:hover{background-color:#3327011f}html[data-netbox-color-mode=dark] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-900 a:not(.btn){font-weight:700;color:#d6d4cc}html[data-netbox-color-mode=dark] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#d6d4cc}html[data-netbox-color-mode=dark] .badge.bg-yellow-900,html[data-netbox-color-mode=dark] .toast.bg-yellow-900,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-900,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-900{color:#fff}html[data-netbox-color-mode=dark] .bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a2e2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100{color:#d1e7dd}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}html[data-netbox-color-mode=dark] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-100 a:not(.btn){font-weight:700;color:#2a2e2c}html[data-netbox-color-mode=dark] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-100 a:not(.btn){font-weight:700;color:#2a2e2c}html[data-netbox-color-mode=dark] .badge.bg-green-100,html[data-netbox-color-mode=dark] .toast.bg-green-100,html[data-netbox-color-mode=dark] .toast-header.bg-green-100,html[data-netbox-color-mode=dark] .progress-bar.bg-green-100{color:#000}html[data-netbox-color-mode=dark] .bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212925'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200{color:#a3cfbb}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}html[data-netbox-color-mode=dark] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-200 a:not(.btn){font-weight:700;color:#212925}html[data-netbox-color-mode=dark] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-200 a:not(.btn){font-weight:700;color:#212925}html[data-netbox-color-mode=dark] .badge.bg-green-200,html[data-netbox-color-mode=dark] .toast.bg-green-200,html[data-netbox-color-mode=dark] .toast-header.bg-green-200,html[data-netbox-color-mode=dark] .progress-bar.bg-green-200{color:#000}html[data-netbox-color-mode=dark] .bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-300 a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-300 a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-green-300,html[data-netbox-color-mode=dark] .toast.bg-green-300,html[data-netbox-color-mode=dark] .toast-header.bg-green-300,html[data-netbox-color-mode=dark] .progress-bar.bg-green-300{color:#000}html[data-netbox-color-mode=dark] .bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e2018'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400{color:#479f76}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400:hover{background-color:#479f761f}html[data-netbox-color-mode=dark] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-400 a:not(.btn){font-weight:700;color:#0e2018}html[data-netbox-color-mode=dark] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-400 a:not(.btn){font-weight:700;color:#0e2018}html[data-netbox-color-mode=dark] .badge.bg-green-400,html[data-netbox-color-mode=dark] .toast.bg-green-400,html[data-netbox-color-mode=dark] .toast-header.bg-green-400,html[data-netbox-color-mode=dark] .progress-bar.bg-green-400{color:#000}html[data-netbox-color-mode=dark] .bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23051b11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500{color:#198754}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500:hover{background-color:#1987541f}html[data-netbox-color-mode=dark] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-500 a:not(.btn){font-weight:700;color:#051b11}html[data-netbox-color-mode=dark] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-500 a:not(.btn){font-weight:700;color:#d1e7dd}html[data-netbox-color-mode=dark] .badge.bg-green-500,html[data-netbox-color-mode=dark] .toast.bg-green-500,html[data-netbox-color-mode=dark] .toast-header.bg-green-500,html[data-netbox-color-mode=dark] .progress-bar.bg-green-500{color:#fff}html[data-netbox-color-mode=dark] .bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0e2d9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600{color:#146c43}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600:hover{background-color:#146c431f}html[data-netbox-color-mode=dark] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-600 a:not(.btn){font-weight:700;color:#d0e2d9}html[data-netbox-color-mode=dark] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-600 a:not(.btn){font-weight:700;color:#d0e2d9}html[data-netbox-color-mode=dark] .badge.bg-green-600,html[data-netbox-color-mode=dark] .toast.bg-green-600,html[data-netbox-color-mode=dark] .toast-header.bg-green-600,html[data-netbox-color-mode=dark] .progress-bar.bg-green-600{color:#fff}html[data-netbox-color-mode=dark] .bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cfdcd6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700{color:#0f5132}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700:hover{background-color:#0f51321f}html[data-netbox-color-mode=dark] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-700 a:not(.btn){font-weight:700;color:#cfdcd6}html[data-netbox-color-mode=dark] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-700 a:not(.btn){font-weight:700;color:#cfdcd6}html[data-netbox-color-mode=dark] .badge.bg-green-700,html[data-netbox-color-mode=dark] .toast.bg-green-700,html[data-netbox-color-mode=dark] .toast-header.bg-green-700,html[data-netbox-color-mode=dark] .progress-bar.bg-green-700{color:#fff}html[data-netbox-color-mode=dark] .bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced7d3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800{color:#0a3622}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800:hover{background-color:#0a36221f}html[data-netbox-color-mode=dark] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-800 a:not(.btn){font-weight:700;color:#ced7d3}html[data-netbox-color-mode=dark] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-800 a:not(.btn){font-weight:700;color:#ced7d3}html[data-netbox-color-mode=dark] .badge.bg-green-800,html[data-netbox-color-mode=dark] .toast.bg-green-800,html[data-netbox-color-mode=dark] .toast-header.bg-green-800,html[data-netbox-color-mode=dark] .progress-bar.bg-green-800{color:#fff}html[data-netbox-color-mode=dark] .bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd1cf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900{color:#051b11}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900:hover{background-color:#051b111f}html[data-netbox-color-mode=dark] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-900 a:not(.btn){font-weight:700;color:#cdd1cf}html[data-netbox-color-mode=dark] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-900 a:not(.btn){font-weight:700;color:#cdd1cf}html[data-netbox-color-mode=dark] .badge.bg-green-900,html[data-netbox-color-mode=dark] .toast.bg-green-900,html[data-netbox-color-mode=dark] .toast-header.bg-green-900,html[data-netbox-color-mode=dark] .progress-bar.bg-green-900{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292d33'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100{color:#cfe2ff}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}html[data-netbox-color-mode=dark] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-100 a:not(.btn){font-weight:700;color:#292d33}html[data-netbox-color-mode=dark] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-100 a:not(.btn){font-weight:700;color:#292d33}html[data-netbox-color-mode=dark] .badge.bg-blue-100,html[data-netbox-color-mode=dark] .toast.bg-blue-100,html[data-netbox-color-mode=dark] .toast-header.bg-blue-100,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-100{color:#000}html[data-netbox-color-mode=dark] .bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202733'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200{color:#9ec5fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-200 a:not(.btn){font-weight:700;color:#202733}html[data-netbox-color-mode=dark] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-200 a:not(.btn){font-weight:700;color:#202733}html[data-netbox-color-mode=dark] .badge.bg-blue-200,html[data-netbox-color-mode=dark] .toast.bg-blue-200,html[data-netbox-color-mode=dark] .toast-header.bg-blue-200,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-200{color:#000}html[data-netbox-color-mode=dark] .bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-300 a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-300 a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-blue-300,html[data-netbox-color-mode=dark] .toast.bg-blue-300,html[data-netbox-color-mode=dark] .toast-header.bg-blue-300,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-300{color:#000}html[data-netbox-color-mode=dark] .bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c1c33'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400{color:#3d8bfd}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}html[data-netbox-color-mode=dark] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-400 a:not(.btn){font-weight:700;color:#0c1c33}html[data-netbox-color-mode=dark] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-400 a:not(.btn){font-weight:700;color:#0c1c33}html[data-netbox-color-mode=dark] .badge.bg-blue-400,html[data-netbox-color-mode=dark] .toast.bg-blue-400,html[data-netbox-color-mode=dark] .toast-header.bg-blue-400,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-400{color:#000}html[data-netbox-color-mode=dark] .bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031633'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500{color:#0d6efd}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}html[data-netbox-color-mode=dark] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-500 a:not(.btn){font-weight:700;color:#031633}html[data-netbox-color-mode=dark] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-500 a:not(.btn){font-weight:700;color:#cfe2ff}html[data-netbox-color-mode=dark] .badge.bg-blue-500,html[data-netbox-color-mode=dark] .toast.bg-blue-500,html[data-netbox-color-mode=dark] .toast-header.bg-blue-500,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-500{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cedef4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600{color:#0a58ca}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}html[data-netbox-color-mode=dark] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-600 a:not(.btn){font-weight:700;color:#cedef4}html[data-netbox-color-mode=dark] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-600 a:not(.btn){font-weight:700;color:#cedef4}html[data-netbox-color-mode=dark] .badge.bg-blue-600,html[data-netbox-color-mode=dark] .toast.bg-blue-600,html[data-netbox-color-mode=dark] .toast-header.bg-blue-600,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-600{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced9ea'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700{color:#084298}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700:hover{background-color:#0842981f}html[data-netbox-color-mode=dark] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-700 a:not(.btn){font-weight:700;color:#ced9ea}html[data-netbox-color-mode=dark] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-700 a:not(.btn){font-weight:700;color:#ced9ea}html[data-netbox-color-mode=dark] .badge.bg-blue-700,html[data-netbox-color-mode=dark] .toast.bg-blue-700,html[data-netbox-color-mode=dark] .toast-header.bg-blue-700,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-700{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd5e0'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800{color:#052c65}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800:hover{background-color:#052c651f}html[data-netbox-color-mode=dark] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-800 a:not(.btn){font-weight:700;color:#cdd5e0}html[data-netbox-color-mode=dark] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-800 a:not(.btn){font-weight:700;color:#cdd5e0}html[data-netbox-color-mode=dark] .badge.bg-blue-800,html[data-netbox-color-mode=dark] .toast.bg-blue-800,html[data-netbox-color-mode=dark] .toast-header.bg-blue-800,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-800{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd0d6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900{color:#031633}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900:hover{background-color:#0316331f}html[data-netbox-color-mode=dark] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-900 a:not(.btn){font-weight:700;color:#cdd0d6}html[data-netbox-color-mode=dark] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-900 a:not(.btn){font-weight:700;color:#cdd0d6}html[data-netbox-color-mode=dark] .badge.bg-blue-900,html[data-netbox-color-mode=dark] .toast.bg-blue-900,html[data-netbox-color-mode=dark] .toast-header.bg-blue-900,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-900{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23293132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100{color:#cff4fc}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}html[data-netbox-color-mode=dark] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-100 a:not(.btn){font-weight:700;color:#293132}html[data-netbox-color-mode=dark] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#293132}html[data-netbox-color-mode=dark] .badge.bg-cyan-100,html[data-netbox-color-mode=dark] .toast.bg-cyan-100,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-100,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-100{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202f32'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200{color:#9eeaf9}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}html[data-netbox-color-mode=dark] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-200 a:not(.btn){font-weight:700;color:#202f32}html[data-netbox-color-mode=dark] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#202f32}html[data-netbox-color-mode=dark] .badge.bg-cyan-200,html[data-netbox-color-mode=dark] .toast.bg-cyan-200,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-200,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-200{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-300 a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-cyan-300,html[data-netbox-color-mode=dark] .toast.bg-cyan-300,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-300,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-300{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c2b31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400{color:#3dd5f3}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}html[data-netbox-color-mode=dark] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-400 a:not(.btn){font-weight:700;color:#0c2b31}html[data-netbox-color-mode=dark] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#0c2b31}html[data-netbox-color-mode=dark] .badge.bg-cyan-400,html[data-netbox-color-mode=dark] .toast.bg-cyan-400,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-400,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-400{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23032830'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500{color:#0dcaf0}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}html[data-netbox-color-mode=dark] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-500 a:not(.btn){font-weight:700;color:#032830}html[data-netbox-color-mode=dark] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#032830}html[data-netbox-color-mode=dark] .badge.bg-cyan-500,html[data-netbox-color-mode=dark] .toast.bg-cyan-500,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-500,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-500{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23022026'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600{color:#0aa2c0}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}html[data-netbox-color-mode=dark] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-600 a:not(.btn){font-weight:700;color:#022026}html[data-netbox-color-mode=dark] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#022026}html[data-netbox-color-mode=dark] .badge.bg-cyan-600,html[data-netbox-color-mode=dark] .toast.bg-cyan-600,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-600,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-600{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cee4e9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700{color:#087990}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700:hover{background-color:#0879901f}html[data-netbox-color-mode=dark] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-700 a:not(.btn){font-weight:700;color:#cee4e9}html[data-netbox-color-mode=dark] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#cee4e9}html[data-netbox-color-mode=dark] .badge.bg-cyan-700,html[data-netbox-color-mode=dark] .toast.bg-cyan-700,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-700,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-700{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cddcdf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800{color:#055160}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800:hover{background-color:#0551601f}html[data-netbox-color-mode=dark] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-800 a:not(.btn){font-weight:700;color:#cddcdf}html[data-netbox-color-mode=dark] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#cddcdf}html[data-netbox-color-mode=dark] .badge.bg-cyan-800,html[data-netbox-color-mode=dark] .toast.bg-cyan-800,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-800,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-800{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd4d6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900{color:#032830}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900:hover{background-color:#0328301f}html[data-netbox-color-mode=dark] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-900 a:not(.btn){font-weight:700;color:#cdd4d6}html[data-netbox-color-mode=dark] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#cdd4d6}html[data-netbox-color-mode=dark] .badge.bg-cyan-900,html[data-netbox-color-mode=dark] .toast.bg-cyan-900,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-900,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-900{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2932'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100{color:#e0cffc}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}html[data-netbox-color-mode=dark] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-100 a:not(.btn){font-weight:700;color:#2d2932}html[data-netbox-color-mode=dark] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#2d2932}html[data-netbox-color-mode=dark] .badge.bg-indigo-100,html[data-netbox-color-mode=dark] .toast.bg-indigo-100,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-100,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-100{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23272032'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200{color:#c29ffa}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}html[data-netbox-color-mode=dark] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-200 a:not(.btn){font-weight:700;color:#272032}html[data-netbox-color-mode=dark] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#272032}html[data-netbox-color-mode=dark] .badge.bg-indigo-200,html[data-netbox-color-mode=dark] .toast.bg-indigo-200,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-200,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-200{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23211631'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300{color:#a370f7}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}html[data-netbox-color-mode=dark] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-300 a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .badge.bg-indigo-300,html[data-netbox-color-mode=dark] .toast.bg-indigo-300,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-300,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-300{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e7d9fd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400{color:#8540f5}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}html[data-netbox-color-mode=dark] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-400 a:not(.btn){font-weight:700;color:#e7d9fd}html[data-netbox-color-mode=dark] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#e7d9fd}html[data-netbox-color-mode=dark] .badge.bg-indigo-400,html[data-netbox-color-mode=dark] .toast.bg-indigo-400,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-400,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-400{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0cffc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500{color:#6610f2}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}html[data-netbox-color-mode=dark] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-500 a:not(.btn){font-weight:700;color:#e0cffc}html[data-netbox-color-mode=dark] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#e0cffc}html[data-netbox-color-mode=dark] .badge.bg-indigo-500,html[data-netbox-color-mode=dark] .toast.bg-indigo-500,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-500,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-500{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dccff3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600{color:#520dc2}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}html[data-netbox-color-mode=dark] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-600 a:not(.btn){font-weight:700;color:#dccff3}html[data-netbox-color-mode=dark] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#dccff3}html[data-netbox-color-mode=dark] .badge.bg-indigo-600,html[data-netbox-color-mode=dark] .toast.bg-indigo-600,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-600,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-600{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d8cee9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700{color:#3d0a91}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}html[data-netbox-color-mode=dark] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-700 a:not(.btn){font-weight:700;color:#d8cee9}html[data-netbox-color-mode=dark] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#d8cee9}html[data-netbox-color-mode=dark] .badge.bg-indigo-700,html[data-netbox-color-mode=dark] .toast.bg-indigo-700,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-700,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-700{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4cddf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800{color:#290661}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800:hover{background-color:#2906611f}html[data-netbox-color-mode=dark] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-800 a:not(.btn){font-weight:700;color:#d4cddf}html[data-netbox-color-mode=dark] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#d4cddf}html[data-netbox-color-mode=dark] .badge.bg-indigo-800,html[data-netbox-color-mode=dark] .toast.bg-indigo-800,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-800,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-800{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0cdd6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900{color:#140330}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900:hover{background-color:#1403301f}html[data-netbox-color-mode=dark] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-900 a:not(.btn){font-weight:700;color:#d0cdd6}html[data-netbox-color-mode=dark] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#d0cdd6}html[data-netbox-color-mode=dark] .badge.bg-indigo-900,html[data-netbox-color-mode=dark] .toast.bg-indigo-900,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-900,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-900{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2b31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100{color:#e2d9f3}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}html[data-netbox-color-mode=dark] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-100 a:not(.btn){font-weight:700;color:#2d2b31}html[data-netbox-color-mode=dark] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-100 a:not(.btn){font-weight:700;color:#2d2b31}html[data-netbox-color-mode=dark] .badge.bg-purple-100,html[data-netbox-color-mode=dark] .toast.bg-purple-100,html[data-netbox-color-mode=dark] .toast-header.bg-purple-100,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-100{color:#000}html[data-netbox-color-mode=dark] .bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2327242e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200{color:#c5b3e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}html[data-netbox-color-mode=dark] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-200 a:not(.btn){font-weight:700;color:#27242e}html[data-netbox-color-mode=dark] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-200 a:not(.btn){font-weight:700;color:#27242e}html[data-netbox-color-mode=dark] .badge.bg-purple-200,html[data-netbox-color-mode=dark] .toast.bg-purple-200,html[data-netbox-color-mode=dark] .toast-header.bg-purple-200,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-200{color:#000}html[data-netbox-color-mode=dark] .bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23221c2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300{color:#a98eda}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}html[data-netbox-color-mode=dark] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-300 a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-300 a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .badge.bg-purple-300,html[data-netbox-color-mode=dark] .toast.bg-purple-300,html[data-netbox-color-mode=dark] .toast-header.bg-purple-300,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-300{color:#000}html[data-netbox-color-mode=dark] .bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c1529'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400{color:#8c68cd}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}html[data-netbox-color-mode=dark] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-400 a:not(.btn){font-weight:700;color:#1c1529}html[data-netbox-color-mode=dark] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-400 a:not(.btn){font-weight:700;color:#1c1529}html[data-netbox-color-mode=dark] .badge.bg-purple-400,html[data-netbox-color-mode=dark] .toast.bg-purple-400,html[data-netbox-color-mode=dark] .toast-header.bg-purple-400,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-400{color:#000}html[data-netbox-color-mode=dark] .bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e2d9f3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500{color:#6f42c1}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}html[data-netbox-color-mode=dark] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-500 a:not(.btn){font-weight:700;color:#e2d9f3}html[data-netbox-color-mode=dark] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-500 a:not(.btn){font-weight:700;color:#e2d9f3}html[data-netbox-color-mode=dark] .badge.bg-purple-500,html[data-netbox-color-mode=dark] .toast.bg-purple-500,html[data-netbox-color-mode=dark] .toast-header.bg-purple-500,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-500{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ded7eb'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600{color:#59359a}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600:hover{background-color:#59359a1f}html[data-netbox-color-mode=dark] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-600 a:not(.btn){font-weight:700;color:#ded7eb}html[data-netbox-color-mode=dark] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-600 a:not(.btn){font-weight:700;color:#ded7eb}html[data-netbox-color-mode=dark] .badge.bg-purple-600,html[data-netbox-color-mode=dark] .toast.bg-purple-600,html[data-netbox-color-mode=dark] .toast-header.bg-purple-600,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-600{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d9d4e3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700{color:#432874}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700:hover{background-color:#4328741f}html[data-netbox-color-mode=dark] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-700 a:not(.btn){font-weight:700;color:#d9d4e3}html[data-netbox-color-mode=dark] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-700 a:not(.btn){font-weight:700;color:#d9d4e3}html[data-netbox-color-mode=dark] .badge.bg-purple-700,html[data-netbox-color-mode=dark] .toast.bg-purple-700,html[data-netbox-color-mode=dark] .toast-header.bg-purple-700,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-700{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5d1db'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800{color:#2c1a4d}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}html[data-netbox-color-mode=dark] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-800 a:not(.btn){font-weight:700;color:#d5d1db}html[data-netbox-color-mode=dark] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-800 a:not(.btn){font-weight:700;color:#d5d1db}html[data-netbox-color-mode=dark] .badge.bg-purple-800,html[data-netbox-color-mode=dark] .toast.bg-purple-800,html[data-netbox-color-mode=dark] .toast-header.bg-purple-800,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-800{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0cfd4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900{color:#160d27}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900:hover{background-color:#160d271f}html[data-netbox-color-mode=dark] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-900 a:not(.btn){font-weight:700;color:#d0cfd4}html[data-netbox-color-mode=dark] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-900 a:not(.btn){font-weight:700;color:#d0cfd4}html[data-netbox-color-mode=dark] .badge.bg-purple-900,html[data-netbox-color-mode=dark] .toast.bg-purple-900,html[data-netbox-color-mode=dark] .toast-header.bg-purple-900,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-900{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23312b2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100{color:#f7d6e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}html[data-netbox-color-mode=dark] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-100 a:not(.btn){font-weight:700;color:#312b2e}html[data-netbox-color-mode=dark] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-100 a:not(.btn){font-weight:700;color:#312b2e}html[data-netbox-color-mode=dark] .badge.bg-pink-100,html[data-netbox-color-mode=dark] .toast.bg-pink-100,html[data-netbox-color-mode=dark] .toast-header.bg-pink-100,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-100{color:#000}html[data-netbox-color-mode=dark] .bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23302329'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200{color:#efadce}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200:hover{background-color:#efadce1f}html[data-netbox-color-mode=dark] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-200 a:not(.btn){font-weight:700;color:#302329}html[data-netbox-color-mode=dark] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-200 a:not(.btn){font-weight:700;color:#302329}html[data-netbox-color-mode=dark] .badge.bg-pink-200,html[data-netbox-color-mode=dark] .toast.bg-pink-200,html[data-netbox-color-mode=dark] .toast-header.bg-pink-200,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-200{color:#000}html[data-netbox-color-mode=dark] .bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e1b24'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300{color:#e685b5}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300:hover{background-color:#e685b51f}html[data-netbox-color-mode=dark] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-300 a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-300 a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .badge.bg-pink-300,html[data-netbox-color-mode=dark] .toast.bg-pink-300,html[data-netbox-color-mode=dark] .toast-header.bg-pink-300,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-300{color:#000}html[data-netbox-color-mode=dark] .bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c121f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400{color:#de5c9d}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}html[data-netbox-color-mode=dark] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-400 a:not(.btn){font-weight:700;color:#2c121f}html[data-netbox-color-mode=dark] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-400 a:not(.btn){font-weight:700;color:#2c121f}html[data-netbox-color-mode=dark] .badge.bg-pink-400,html[data-netbox-color-mode=dark] .toast.bg-pink-400,html[data-netbox-color-mode=dark] .toast-header.bg-pink-400,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-400{color:#000}html[data-netbox-color-mode=dark] .bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b0a1a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500{color:#d63384}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500:hover{background-color:#d633841f}html[data-netbox-color-mode=dark] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-500 a:not(.btn){font-weight:700;color:#2b0a1a}html[data-netbox-color-mode=dark] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-500 a:not(.btn){font-weight:700;color:#f7d6e6}html[data-netbox-color-mode=dark] .badge.bg-pink-500,html[data-netbox-color-mode=dark] .toast.bg-pink-500,html[data-netbox-color-mode=dark] .toast-header.bg-pink-500,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-500{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23eed4e1'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600{color:#ab296a}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}html[data-netbox-color-mode=dark] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-600 a:not(.btn){font-weight:700;color:#eed4e1}html[data-netbox-color-mode=dark] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-600 a:not(.btn){font-weight:700;color:#eed4e1}html[data-netbox-color-mode=dark] .badge.bg-pink-600,html[data-netbox-color-mode=dark] .toast.bg-pink-600,html[data-netbox-color-mode=dark] .toast-header.bg-pink-600,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-600{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6d2dc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700{color:#801f4f}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}html[data-netbox-color-mode=dark] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-700 a:not(.btn){font-weight:700;color:#e6d2dc}html[data-netbox-color-mode=dark] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-700 a:not(.btn){font-weight:700;color:#e6d2dc}html[data-netbox-color-mode=dark] .badge.bg-pink-700,html[data-netbox-color-mode=dark] .toast.bg-pink-700,html[data-netbox-color-mode=dark] .toast-header.bg-pink-700,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-700{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ddd0d7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800{color:#561435}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800:hover{background-color:#5614351f}html[data-netbox-color-mode=dark] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-800 a:not(.btn){font-weight:700;color:#ddd0d7}html[data-netbox-color-mode=dark] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-800 a:not(.btn){font-weight:700;color:#ddd0d7}html[data-netbox-color-mode=dark] .badge.bg-pink-800,html[data-netbox-color-mode=dark] .toast.bg-pink-800,html[data-netbox-color-mode=dark] .toast-header.bg-pink-800,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-800{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5ced1'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900{color:#2b0a1a}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}html[data-netbox-color-mode=dark] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-900 a:not(.btn){font-weight:700;color:#d5ced1}html[data-netbox-color-mode=dark] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-900 a:not(.btn){font-weight:700;color:#d5ced1}html[data-netbox-color-mode=dark] .badge.bg-pink-900,html[data-netbox-color-mode=dark] .toast.bg-pink-900,html[data-netbox-color-mode=dark] .toast-header.bg-pink-900,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-900{color:#fff}html[data-netbox-color-mode=dark] table td>.progress{min-width:6rem}html[data-netbox-color-mode=dark] .small .form-control{font-size:.875rem}html[data-netbox-color-mode=dark] :not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}html[data-netbox-color-mode=dark] .nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .nav-mobile{display:flex}}html[data-netbox-color-mode=dark] .nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}html[data-netbox-color-mode=dark] .card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#495057;border-top:1px solid rgba(255,255,255,.125);border-bottom-color:#ffffff20}html[data-netbox-color-mode=dark] .card>.table.table-flush th,html[data-netbox-color-mode=dark] .card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]{border-color:#ffffff20!important}html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}html[data-netbox-color-mode=dark] .header-alert-container .alert{width:100%}@media (min-width: 768px){html[data-netbox-color-mode=dark] .header-alert-container .alert{max-width:75%}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .header-alert-container .alert{max-width:50%}}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}html[data-netbox-color-mode=dark] div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}html[data-netbox-color-mode=dark] table td a{text-decoration:none}html[data-netbox-color-mode=dark] table td a:hover{text-decoration:underline}html[data-netbox-color-mode=dark] table th a,html[data-netbox-color-mode=dark] table th a:hover{color:#fff;text-decoration:none}html[data-netbox-color-mode=dark] table td,html[data-netbox-color-mode=dark] table th{font-size:.875rem;line-height:1.25;vertical-align:middle}html[data-netbox-color-mode=dark] table td.min-width,html[data-netbox-color-mode=dark] table th.min-width{width:1%}html[data-netbox-color-mode=dark] table td .form-check-input,html[data-netbox-color-mode=dark] table th .form-check-input{margin-top:.125em;font-size:1rem}html[data-netbox-color-mode=dark] table td .btn-sm,html[data-netbox-color-mode=dark] table td .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table th .btn-sm,html[data-netbox-color-mode=dark] table th .btn-group-sm>.btn{line-height:1}html[data-netbox-color-mode=dark] table td p,html[data-netbox-color-mode=dark] table th p{margin-bottom:0}html[data-netbox-color-mode=dark] table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}html[data-netbox-color-mode=dark] table.attr-table th{font-weight:normal;width:25%}html[data-netbox-color-mode=dark] div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}@media (min-width: 992px){html[data-netbox-color-mode=dark] div.title-container{flex-direction:row}}html[data-netbox-color-mode=dark] div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .controls{margin-bottom:.5rem}@media print{html[data-netbox-color-mode=dark] .controls{display:none!important}}html[data-netbox-color-mode=dark] .controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}@media (min-width: 992px){html[data-netbox-color-mode=dark] .controls .control-group{justify-content:flex-end}}html[data-netbox-color-mode=dark] .controls .control-group>*{margin:.25rem}html[data-netbox-color-mode=dark] .controls .control-group>*:first-child{margin-left:0}html[data-netbox-color-mode=dark] .controls .control-group>*:last-child{margin-right:0}html[data-netbox-color-mode=dark] .object-subtitle{display:block;font-size:.875rem;color:#ced4da}@media (min-width: 768px){html[data-netbox-color-mode=dark] .object-subtitle{display:inline-block}}html[data-netbox-color-mode=dark] .object-subtitle>span{display:block}html[data-netbox-color-mode=dark] .object-subtitle>span.separator{display:none}@media (min-width: 768px){html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span.separator{display:inline-block}}html[data-netbox-color-mode=dark] nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}html[data-netbox-color-mode=dark] nav.search .search-container{display:flex;width:100%}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] nav.search .search-container{display:none}}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selected{border-color:#495057}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle{color:#fff;border-color:#495057;margin-left:0;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#495057;border:1px solid #495057;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.disabled{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:after{display:none}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}html[data-netbox-color-mode=dark] main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}@media print{html[data-netbox-color-mode=dark] main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}html[data-netbox-color-mode=dark] main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}html[data-netbox-color-mode=dark] main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}html[data-netbox-color-mode=dark] .footer{padding:0}html[data-netbox-color-mode=dark] .footer .nav-link{padding:.5rem}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .footer{margin-bottom:8rem}}html[data-netbox-color-mode=dark] footer.login-footer{height:4rem;margin-top:auto}html[data-netbox-color-mode=dark] footer.login-footer .container-fluid,html[data-netbox-color-mode=dark] footer.login-footer .container-sm,html[data-netbox-color-mode=dark] footer.login-footer .container-md,html[data-netbox-color-mode=dark] footer.login-footer .container-lg,html[data-netbox-color-mode=dark] footer.login-footer .container-xl,html[data-netbox-color-mode=dark] footer.login-footer .container-xxl{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}html[data-netbox-color-mode=dark] h1.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h1,html[data-netbox-color-mode=dark] h2.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h2,html[data-netbox-color-mode=dark] h3.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h3,html[data-netbox-color-mode=dark] h4.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h4,html[data-netbox-color-mode=dark] h5.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h5,html[data-netbox-color-mode=dark] h6.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h6{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}html[data-netbox-color-mode=dark] .form-login{width:100%;max-width:330px;padding:15px}html[data-netbox-color-mode=dark] .form-login input:focus{z-index:1}html[data-netbox-color-mode=dark] .form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}html[data-netbox-color-mode=dark] .navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link:hover{color:#000;background-color:#6397e5}html[data-netbox-color-mode=dark] div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}html[data-netbox-color-mode=dark] div.content-container:focus,html[data-netbox-color-mode=dark] div.content-container:focus-visible{outline:0}html[data-netbox-color-mode=dark] div.content-container div.content{flex:1}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] div.content-container{width:100%}}@media print{html[data-netbox-color-mode=dark] div.content-container{width:100%!important;margin-left:0!important}}@media (max-width: 768px){html[data-netbox-color-mode=dark] .sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}html[data-netbox-color-mode=dark] .tooltip{pointer-events:none}html[data-netbox-color-mode=dark] span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}html[data-netbox-color-mode=dark] .btn{white-space:nowrap}html[data-netbox-color-mode=dark] .card{box-shadow:0 .125rem .25rem #00000013}html[data-netbox-color-mode=dark] .card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}html[data-netbox-color-mode=dark] .card .card-header+.card-body{padding-top:0}html[data-netbox-color-mode=dark] .card .card-body.small .form-control,html[data-netbox-color-mode=dark] .card .card-body.small .form-select{font-size:.875rem}html[data-netbox-color-mode=dark] .card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(255,255,255,.125);opacity:.25}@media print{html[data-netbox-color-mode=dark] .card{box-shadow:unset!important}}html[data-netbox-color-mode=dark] .form-floating{position:relative}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-floating>.input-group>label{transition:none}}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control::placeholder{color:transparent}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=dark] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=dark] .form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.choices~label,html[data-netbox-color-mode=dark] .form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .form-object-edit{margin:0 auto;max-width:800px}html[data-netbox-color-mode=dark] textarea.form-control[rows="10"]{height:18rem}html[data-netbox-color-mode=dark] textarea#id_local_context_data,html[data-netbox-color-mode=dark] textarea.markdown,html[data-netbox-color-mode=dark] textarea#id_public_key,html[data-netbox-color-mode=dark] textarea.form-control[name=csv],html[data-netbox-color-mode=dark] textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}html[data-netbox-color-mode=dark] .card:not(:only-of-type){margin-bottom:1rem}html[data-netbox-color-mode=dark] .stat-btn{min-width:3rem}html[data-netbox-color-mode=dark] nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}html[data-netbox-color-mode=dark] div.paginator>form>div.input-group{width:fit-content}html[data-netbox-color-mode=dark] label.required{font-weight:700}html[data-netbox-color-mode=dark] label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}html[data-netbox-color-mode=dark] div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}html[data-netbox-color-mode=dark] table tbody tr.primary{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.secondary{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.success{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.info{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.warning{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.danger{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.light{background-color:#dee2e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.dark{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo{background-color:#a370f726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple{background-color:#a98eda26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink{background-color:#e685b526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge:not(.badge){padding:0 .65em}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}html[data-netbox-color-mode=dark] pre.change-data{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}html[data-netbox-color-mode=dark] pre.change-data>span.added{background-color:var(--nbx-change-added)}html[data-netbox-color-mode=dark] pre.change-data>span.removed{background-color:var(--nbx-change-removed)}html[data-netbox-color-mode=dark] pre.change-diff{border-color:transparent}html[data-netbox-color-mode=dark] pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}html[data-netbox-color-mode=dark] pre.change-diff.change-added{background-color:var(--nbx-change-added)}html[data-netbox-color-mode=dark] div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}html[data-netbox-color-mode=dark] div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#adb5bd}html[data-netbox-color-mode=dark] .table-controls{display:flex}@media (min-width: 768px){html[data-netbox-color-mode=dark] .table-controls{margin-top:0!important;margin-bottom:0!important}}html[data-netbox-color-mode=dark] .table-controls .table-configure{justify-content:flex-start}@media (min-width: 768px){html[data-netbox-color-mode=dark] .table-controls .table-configure{justify-content:flex-end}}html[data-netbox-color-mode=dark] .table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}html[data-netbox-color-mode=dark] .paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover{border-bottom-color:transparent}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active{background-color:#171b1d;border-bottom-color:#171b1d;transform:translateY(1px)}html[data-netbox-color-mode=dark] .tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#171b1d;border-bottom:1px solid #495057}@media print{html[data-netbox-color-mode=dark] .tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{html[data-netbox-color-mode=dark] .masonry{position:static!important;display:block!important;height:unset!important}}@media print{html[data-netbox-color-mode=dark] .masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}html[data-netbox-color-mode=dark] .record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}html[data-netbox-color-mode=dark] .record-depth span:only-of-type,html[data-netbox-color-mode=dark] .record-depth span:last-of-type{margin-right:.25rem}html[data-netbox-color-mode=dark] .popover.image-preview-popover{max-width:unset}html[data-netbox-color-mode=dark] #django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}html[data-netbox-color-mode=dark] html[data-netbox-url-name=login] #django-messages{display:none} +html[data-netbox-color-mode=dark] :root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #6ea8fe;--bs-secondary: #adb5bd;--bs-success: #75b798;--bs-info: #6edff6;--bs-warning: #ffda6a;--bs-danger: #ea868f;--bs-light: #dee2e6;--bs-dark: #adb5bd;--bs-red: #ea868f;--bs-yellow: #ffda6a;--bs-green: #75b798;--bs-blue: #6ea8fe;--bs-cyan: #6edff6;--bs-indigo: #a370f7;--bs-purple: #a98eda;--bs-pink: #e685b5;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}html[data-netbox-color-mode=dark] *,html[data-netbox-color-mode=dark] *:before,html[data-netbox-color-mode=dark] *:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){html[data-netbox-color-mode=dark] :root{scroll-behavior:smooth}}html[data-netbox-color-mode=dark] body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#fff;background-color:#1b1f22;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}html[data-netbox-color-mode=dark] hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}html[data-netbox-color-mode=dark] hr:not([size]){height:1px}html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=dark] .h1{font-size:2.5rem}}html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=dark] .h2{font-size:2rem}}html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=dark] .h3{font-size:1.75rem}}html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=dark] .h4{font-size:1.5rem}}html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=dark] .h5{font-size:1.25rem}html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=dark] .h6{font-size:1rem}html[data-netbox-color-mode=dark] p{margin-top:0;margin-bottom:1rem}html[data-netbox-color-mode=dark] abbr[title],html[data-netbox-color-mode=dark] abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}html[data-netbox-color-mode=dark] address{margin-bottom:1rem;font-style:normal;line-height:inherit}html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul{padding-left:2rem}html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=dark] dl{margin-top:0;margin-bottom:1rem}html[data-netbox-color-mode=dark] ol ol,html[data-netbox-color-mode=dark] ul ul,html[data-netbox-color-mode=dark] ol ul,html[data-netbox-color-mode=dark] ul ol{margin-bottom:0}html[data-netbox-color-mode=dark] dt{font-weight:700}html[data-netbox-color-mode=dark] dd{margin-bottom:.5rem;margin-left:0}html[data-netbox-color-mode=dark] blockquote{margin:0 0 1rem}html[data-netbox-color-mode=dark] b,html[data-netbox-color-mode=dark] strong{font-weight:800}html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=dark] .small{font-size:.875em}html[data-netbox-color-mode=dark] mark,html[data-netbox-color-mode=dark] .mark{padding:.2em;background-color:#fcf8e3}html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=dark] sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}html[data-netbox-color-mode=dark] sub{bottom:-.25em}html[data-netbox-color-mode=dark] sup{top:-.5em}html[data-netbox-color-mode=dark] a{color:#9ec5fe;text-decoration:underline}html[data-netbox-color-mode=dark] a:hover{color:#cfe2ff}html[data-netbox-color-mode=dark] a:not([href]):not([class]),html[data-netbox-color-mode=dark] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=dark] samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}html[data-netbox-color-mode=dark] pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}html[data-netbox-color-mode=dark] pre code{font-size:inherit;color:inherit;word-break:normal}html[data-netbox-color-mode=dark] code{font-size:.875em;color:#e9ecef;word-wrap:break-word}a>html[data-netbox-color-mode=dark] code{color:inherit}html[data-netbox-color-mode=dark] kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#dee2e6;border-radius:.375rem}html[data-netbox-color-mode=dark] kbd kbd{padding:0;font-size:1em;font-weight:700}html[data-netbox-color-mode=dark] figure{margin:0 0 1rem}html[data-netbox-color-mode=dark] img,html[data-netbox-color-mode=dark] svg{vertical-align:middle}html[data-netbox-color-mode=dark] table{caption-side:bottom;border-collapse:collapse}html[data-netbox-color-mode=dark] caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}html[data-netbox-color-mode=dark] th{text-align:inherit;text-align:-webkit-match-parent}html[data-netbox-color-mode=dark] thead,html[data-netbox-color-mode=dark] tbody,html[data-netbox-color-mode=dark] tfoot,html[data-netbox-color-mode=dark] tr,html[data-netbox-color-mode=dark] td,html[data-netbox-color-mode=dark] th{border-color:inherit;border-style:solid;border-width:0}html[data-netbox-color-mode=dark] label{display:inline-block}html[data-netbox-color-mode=dark] button{border-radius:0}html[data-netbox-color-mode=dark] button:focus:not(:focus-visible){outline:0}html[data-netbox-color-mode=dark] input,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=dark] optgroup,html[data-netbox-color-mode=dark] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select{text-transform:none}html[data-netbox-color-mode=dark] [role=button]{cursor:pointer}html[data-netbox-color-mode=dark] select{word-wrap:normal}html[data-netbox-color-mode=dark] select:disabled{opacity:1}html[data-netbox-color-mode=dark] [list]::-webkit-calendar-picker-indicator{display:none}html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] [type=button],html[data-netbox-color-mode=dark] [type=reset],html[data-netbox-color-mode=dark] [type=submit]{-webkit-appearance:button}html[data-netbox-color-mode=dark] button:not(:disabled),html[data-netbox-color-mode=dark] [type=button]:not(:disabled),html[data-netbox-color-mode=dark] [type=reset]:not(:disabled),html[data-netbox-color-mode=dark] [type=submit]:not(:disabled){cursor:pointer}html[data-netbox-color-mode=dark] ::-moz-focus-inner{padding:0;border-style:none}html[data-netbox-color-mode=dark] textarea{resize:vertical}html[data-netbox-color-mode=dark] fieldset{min-width:0;padding:0;margin:0;border:0}html[data-netbox-color-mode=dark] legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){html[data-netbox-color-mode=dark] legend{font-size:1.5rem}}html[data-netbox-color-mode=dark] legend+*{clear:left}html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-year-field{padding:0}html[data-netbox-color-mode=dark] ::-webkit-inner-spin-button{height:auto}html[data-netbox-color-mode=dark] [type=search]{outline-offset:-2px;-webkit-appearance:textfield}html[data-netbox-color-mode=dark] ::-webkit-search-decoration{-webkit-appearance:none}html[data-netbox-color-mode=dark] ::-webkit-color-swatch-wrapper{padding:0}html[data-netbox-color-mode=dark] ::file-selector-button{font:inherit}html[data-netbox-color-mode=dark] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}html[data-netbox-color-mode=dark] output{display:inline-block}html[data-netbox-color-mode=dark] iframe{border:0}html[data-netbox-color-mode=dark] summary{display:list-item;cursor:pointer}html[data-netbox-color-mode=dark] progress{vertical-align:baseline}html[data-netbox-color-mode=dark] [hidden]{display:none!important}html[data-netbox-color-mode=dark] .lead{font-size:1.25rem;font-weight:300}html[data-netbox-color-mode=dark] .display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-1{font-size:5rem}}html[data-netbox-color-mode=dark] .display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-2{font-size:4.5rem}}html[data-netbox-color-mode=dark] .display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-3{font-size:4rem}}html[data-netbox-color-mode=dark] .display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-4{font-size:3.5rem}}html[data-netbox-color-mode=dark] .display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-5{font-size:3rem}}html[data-netbox-color-mode=dark] .display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .display-6{font-size:2.5rem}}html[data-netbox-color-mode=dark] .list-unstyled{padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .list-inline{padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .list-inline-item{display:inline-block}html[data-netbox-color-mode=dark] .list-inline-item:not(:last-child){margin-right:.5rem}html[data-netbox-color-mode=dark] .initialism{font-size:.875em;text-transform:uppercase}html[data-netbox-color-mode=dark] .blockquote{margin-bottom:1rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .blockquote>:last-child{margin-bottom:0}html[data-netbox-color-mode=dark] .blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}html[data-netbox-color-mode=dark] .blockquote-footer:before{content:"\2014\a0"}html[data-netbox-color-mode=dark] .img-fluid{max-width:100%;height:auto}html[data-netbox-color-mode=dark] .img-thumbnail{padding:.25rem;background-color:#1b1f22;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}html[data-netbox-color-mode=dark] .figure{display:inline-block}html[data-netbox-color-mode=dark] .figure-img{margin-bottom:.5rem;line-height:1}html[data-netbox-color-mode=dark] .figure-caption{font-size:.875em;color:#6c757d}html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=dark] .container-fluid,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:540px}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:720px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:960px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:1140px}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=dark] .container{max-width:1320px}}html[data-netbox-color-mode=dark] .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}html[data-netbox-color-mode=dark] .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}html[data-netbox-color-mode=dark] .col{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width: 576px){html[data-netbox-color-mode=dark] .col-sm{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-sm-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-sm-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-sm-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-sm-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-sm-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .col-md{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-md-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-md-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-md-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-md-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-md-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .col-lg{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-lg-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-lg-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-lg-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-lg-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-lg-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .col-xl{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-xl-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-xl-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-xl-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-xl-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-xl-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .col-xxl{flex:1 0 0%}html[data-netbox-color-mode=dark] .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .row-cols-xxl-1>*{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .row-cols-xxl-2>*{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}html[data-netbox-color-mode=dark] .row-cols-xxl-4>*{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .row-cols-xxl-5>*{flex:0 0 auto;width:20%}html[data-netbox-color-mode=dark] .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}html[data-netbox-color-mode=dark] .col-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gx-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gy-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gx-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gy-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gx-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gy-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gx-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gy-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gx-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gy-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gx-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .col-sm-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-sm-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-sm-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-sm-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-sm-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-sm-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-sm-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-sm-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-sm-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-sm-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-sm-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-sm-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-sm-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-sm-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-sm-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-sm-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-sm-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-sm-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-sm-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-sm-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-sm-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-sm-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-sm-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-sm-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-sm-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gx-sm-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gy-sm-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gx-sm-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gy-sm-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gx-sm-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gy-sm-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gx-sm-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gy-sm-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gx-sm-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gy-sm-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gx-sm-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .col-md-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-md-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-md-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-md-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-md-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-md-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-md-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-md-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-md-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-md-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-md-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-md-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-md-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-md-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-md-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-md-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-md-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-md-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-md-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-md-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-md-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-md-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-md-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-md-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-md-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gx-md-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gy-md-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gx-md-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gy-md-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gx-md-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gy-md-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gx-md-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gy-md-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gx-md-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gy-md-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gx-md-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .col-lg-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-lg-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-lg-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-lg-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-lg-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-lg-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-lg-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-lg-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-lg-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-lg-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-lg-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-lg-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-lg-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-lg-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-lg-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-lg-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-lg-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-lg-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-lg-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-lg-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-lg-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-lg-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-lg-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-lg-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-lg-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gx-lg-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gy-lg-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gx-lg-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gy-lg-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gx-lg-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gy-lg-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gx-lg-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gy-lg-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gx-lg-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gy-lg-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gx-lg-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .col-xl-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-xl-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-xl-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-xl-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-xl-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-xl-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-xl-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-xl-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-xl-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-xl-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-xl-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-xl-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-xl-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-xl-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-xl-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-xl-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-xl-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-xl-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-xl-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-xl-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-xl-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-xl-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-xl-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-xl-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-xl-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gx-xl-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gy-xl-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gx-xl-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gy-xl-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gx-xl-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gy-xl-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gx-xl-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gy-xl-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gx-xl-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gy-xl-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gx-xl-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .col-xxl-auto{flex:0 0 auto;width:auto}html[data-netbox-color-mode=dark] .col-xxl-1{flex:0 0 auto;width:8.33333333%}html[data-netbox-color-mode=dark] .col-xxl-2{flex:0 0 auto;width:16.66666667%}html[data-netbox-color-mode=dark] .col-xxl-3{flex:0 0 auto;width:25%}html[data-netbox-color-mode=dark] .col-xxl-4{flex:0 0 auto;width:33.33333333%}html[data-netbox-color-mode=dark] .col-xxl-5{flex:0 0 auto;width:41.66666667%}html[data-netbox-color-mode=dark] .col-xxl-6{flex:0 0 auto;width:50%}html[data-netbox-color-mode=dark] .col-xxl-7{flex:0 0 auto;width:58.33333333%}html[data-netbox-color-mode=dark] .col-xxl-8{flex:0 0 auto;width:66.66666667%}html[data-netbox-color-mode=dark] .col-xxl-9{flex:0 0 auto;width:75%}html[data-netbox-color-mode=dark] .col-xxl-10{flex:0 0 auto;width:83.33333333%}html[data-netbox-color-mode=dark] .col-xxl-11{flex:0 0 auto;width:91.66666667%}html[data-netbox-color-mode=dark] .col-xxl-12{flex:0 0 auto;width:100%}html[data-netbox-color-mode=dark] .offset-xxl-0{margin-left:0}html[data-netbox-color-mode=dark] .offset-xxl-1{margin-left:8.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-2{margin-left:16.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-3{margin-left:25%}html[data-netbox-color-mode=dark] .offset-xxl-4{margin-left:33.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-5{margin-left:41.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-6{margin-left:50%}html[data-netbox-color-mode=dark] .offset-xxl-7{margin-left:58.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-8{margin-left:66.66666667%}html[data-netbox-color-mode=dark] .offset-xxl-9{margin-left:75%}html[data-netbox-color-mode=dark] .offset-xxl-10{margin-left:83.33333333%}html[data-netbox-color-mode=dark] .offset-xxl-11{margin-left:91.66666667%}html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gx-xxl-0{--bs-gutter-x: 0}html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gy-xxl-0{--bs-gutter-y: 0}html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gx-xxl-1{--bs-gutter-x: .25rem}html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gy-xxl-1{--bs-gutter-y: .25rem}html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gx-xxl-2{--bs-gutter-x: .5rem}html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gy-xxl-2{--bs-gutter-y: .5rem}html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gx-xxl-3{--bs-gutter-x: 1rem}html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gy-xxl-3{--bs-gutter-y: 1rem}html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gx-xxl-4{--bs-gutter-x: 1.5rem}html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gy-xxl-4{--bs-gutter-y: 1.5rem}html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gx-xxl-5{--bs-gutter-x: 3rem}html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gy-xxl-5{--bs-gutter-y: 3rem}}html[data-netbox-color-mode=dark] .table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #f8f9fa;--bs-table-striped-bg: rgba(255, 255, 255, .05);--bs-table-active-color: #f8f9fa;--bs-table-active-bg: rgba(255, 255, 255, .1);--bs-table-hover-color: #f8f9fa;--bs-table-hover-bg: rgba(255, 255, 255, .075);width:100%;margin-bottom:1rem;color:#f8f9fa;vertical-align:top;border-color:#495057}html[data-netbox-color-mode=dark] .table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}html[data-netbox-color-mode=dark] .table>tbody{vertical-align:inherit}html[data-netbox-color-mode=dark] .table>thead{vertical-align:bottom}html[data-netbox-color-mode=dark] .table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}html[data-netbox-color-mode=dark] .caption-top{caption-side:top}html[data-netbox-color-mode=dark] .table-sm>:not(caption)>*>*{padding:.25rem}html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*{border-width:1px 0}html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*>*{border-width:0 1px}html[data-netbox-color-mode=dark] .table-borderless>:not(caption)>*>*{border-bottom-width:0}html[data-netbox-color-mode=dark] .table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}html[data-netbox-color-mode=dark] .table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}html[data-netbox-color-mode=dark] .table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}html[data-netbox-color-mode=dark] .table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}html[data-netbox-color-mode=dark] .table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}html[data-netbox-color-mode=dark] .table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}html[data-netbox-color-mode=dark] .table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}html[data-netbox-color-mode=dark] .table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}html[data-netbox-color-mode=dark] .table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}html[data-netbox-color-mode=dark] .table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}html[data-netbox-color-mode=dark] .table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}html[data-netbox-color-mode=dark] .table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width: 575.98px){html[data-netbox-color-mode=dark] .table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1199.98px){html[data-netbox-color-mode=dark] .table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1399.98px){html[data-netbox-color-mode=dark] .table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}html[data-netbox-color-mode=dark] .form-label{margin-bottom:.5rem}html[data-netbox-color-mode=dark] .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}html[data-netbox-color-mode=dark] .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}html[data-netbox-color-mode=dark] .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}html[data-netbox-color-mode=dark] .form-text{margin-top:.25rem;font-size:.875em;color:#ced4da}html[data-netbox-color-mode=dark] .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#212529;background-clip:padding-box;border:1px solid #495057;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control{transition:none}}html[data-netbox-color-mode=dark] .form-control[type=file]{overflow:hidden}html[data-netbox-color-mode=dark] .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}html[data-netbox-color-mode=dark] .form-control:focus{color:#f8f9fa;background-color:#212529;border-color:#7db1fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-control::-webkit-date-and-time-value{height:1.5em}html[data-netbox-color-mode=dark] .form-control::placeholder{color:#495057;opacity:1}html[data-netbox-color-mode=dark] .form-control:disabled,html[data-netbox-color-mode=dark] .form-control[readonly]{background-color:#495057;opacity:1}html[data-netbox-color-mode=dark] .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#f8f9fa;background-color:#495057;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control::file-selector-button{transition:none}}html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#454c53}html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#f8f9fa;background-color:#495057;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button{transition:none}}html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#454c53}html[data-netbox-color-mode=dark] .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#fff;background-color:transparent;border:solid transparent;border-width:1px 0}html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] .form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html[data-netbox-color-mode=dark] .form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html[data-netbox-color-mode=dark] .form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html[data-netbox-color-mode=dark] .form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html[data-netbox-color-mode=dark] textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}html[data-netbox-color-mode=dark] textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}html[data-netbox-color-mode=dark] textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}html[data-netbox-color-mode=dark] .form-control-color{max-width:3rem;height:auto;padding:.375rem}html[data-netbox-color-mode=dark] .form-control-color:not(:disabled):not([readonly]){cursor:pointer}html[data-netbox-color-mode=dark] .form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}html[data-netbox-color-mode=dark] .form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#212529;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #495057;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-select{transition:none}}html[data-netbox-color-mode=dark] .form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-select[multiple],html[data-netbox-color-mode=dark] .form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}html[data-netbox-color-mode=dark] .form-select:disabled{color:#adb5bd;background-color:#495057}html[data-netbox-color-mode=dark] .form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #f8f9fa}html[data-netbox-color-mode=dark] .form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}html[data-netbox-color-mode=dark] .form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}html[data-netbox-color-mode=dark] .form-check .form-check-input{float:left;margin-left:-1.5em}html[data-netbox-color-mode=dark] .form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#212529;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(255,255,255,.25);appearance:none;color-adjust:exact}html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]{border-radius:.25em}html[data-netbox-color-mode=dark] .form-check-input[type=radio]{border-radius:50%}html[data-netbox-color-mode=dark] .form-check-input:active{filter:brightness(90%)}html[data-netbox-color-mode=dark] .form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-check-input:checked{background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]:indeterminate{background-color:#6ea8fe;border-color:#6ea8fe;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}html[data-netbox-color-mode=dark] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input:disabled~.form-check-label{opacity:.5}html[data-netbox-color-mode=dark] .form-switch{padding-left:2.5em}html[data-netbox-color-mode=dark] .form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-switch .form-check-input{transition:none}}html[data-netbox-color-mode=dark] .form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .form-check-inline{display:inline-block;margin-right:1rem}html[data-netbox-color-mode=dark] .btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html[data-netbox-color-mode=dark] .btn-check[disabled]+.btn,html[data-netbox-color-mode=dark] .btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}html[data-netbox-color-mode=dark] .form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}html[data-netbox-color-mode=dark] .form-range:focus{outline:0}html[data-netbox-color-mode=dark] .form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1b1f22,0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1b1f22,0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .form-range::-moz-focus-outer{border:0}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#6ea8fe;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb{transition:none}}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb:active{background-color:#d4e5ff}html[data-netbox-color-mode=dark] .form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#6ea8fe;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb{transition:none}}html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb:active{background-color:#d4e5ff}html[data-netbox-color-mode=dark] .form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html[data-netbox-color-mode=dark] .form-range:disabled{pointer-events:none}html[data-netbox-color-mode=dark] .form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html[data-netbox-color-mode=dark] .form-range:disabled::-moz-range-thumb{background-color:#adb5bd}html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}html[data-netbox-color-mode=dark] .form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-floating>label{transition:none}}html[data-netbox-color-mode=dark] .form-floating>.form-control{padding:1rem .75rem}html[data-netbox-color-mode=dark] .form-floating>.form-control::placeholder{color:transparent}html[data-netbox-color-mode=dark] .form-floating>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html[data-netbox-color-mode=dark] .input-group>.form-control,html[data-netbox-color-mode=dark] .input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}html[data-netbox-color-mode=dark] .input-group>.form-control:focus,html[data-netbox-color-mode=dark] .input-group>.form-select:focus{z-index:3}html[data-netbox-color-mode=dark] .input-group .btn{position:relative;z-index:2}html[data-netbox-color-mode=dark] .input-group .btn:focus{z-index:3}html[data-netbox-color-mode=dark] .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#f8f9fa;text-align:center;white-space:nowrap;background-color:#495057;border:1px solid #495057;border-radius:.375rem}html[data-netbox-color-mode=dark] .input-group-lg>.form-control,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.input-group-text,html[data-netbox-color-mode=dark] .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .input-group-sm>.form-control,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.input-group-text,html[data-netbox-color-mode=dark] .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.form-select{padding-right:3rem}html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}html[data-netbox-color-mode=dark] .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated html[data-netbox-color-mode=dark]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-tooltip,html[data-netbox-color-mode=dark].is-valid~.valid-feedback,html[data-netbox-color-mode=dark].is-valid~.valid-tooltip{display:block}.was-validated html[data-netbox-color-mode=dark] .form-control:valid,html[data-netbox-color-mode=dark] .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-control:valid:focus,html[data-netbox-color-mode=dark] .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] textarea.form-control:valid,html[data-netbox-color-mode=dark] textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:valid,html[data-netbox-color-mode=dark] .form-select.is-valid{border-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:valid:focus,html[data-netbox-color-mode=dark] .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid,html[data-netbox-color-mode=dark] .form-check-input.is-valid{border-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-valid:checked{background-color:#198754}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-valid~.form-check-label{color:#198754}html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid{z-index:1}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid:focus{z-index:3}html[data-netbox-color-mode=dark] .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}html[data-netbox-color-mode=dark] .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-tooltip,html[data-netbox-color-mode=dark].is-invalid~.invalid-feedback,html[data-netbox-color-mode=dark].is-invalid~.invalid-tooltip{display:block}.was-validated html[data-netbox-color-mode=dark] .form-control:invalid,html[data-netbox-color-mode=dark] .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-control:invalid:focus,html[data-netbox-color-mode=dark] .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] textarea.form-control:invalid,html[data-netbox-color-mode=dark] textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid,html[data-netbox-color-mode=dark] .form-select.is-invalid{border-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:focus,html[data-netbox-color-mode=dark] .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid,html[data-netbox-color-mode=dark] .form-check-input.is-invalid{border-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-invalid~.form-check-label{color:#dc3545}html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid{z-index:2}.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid:focus{z-index:3}html[data-netbox-color-mode=dark] .btn{display:inline-block;font-weight:400;line-height:1.5;color:#fff;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .btn{transition:none}}html[data-netbox-color-mode=dark] .btn:hover{color:#fff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=dark] .btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .btn:disabled,html[data-netbox-color-mode=dark] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=dark] .btn{pointer-events:none;opacity:.65}html[data-netbox-color-mode=dark] .btn-primary{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-primary:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:active,html[data-netbox-color-mode=dark] .btn-primary.active,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary:focus,html[data-netbox-color-mode=dark] .btn-primary:active:focus,html[data-netbox-color-mode=dark] .btn-primary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-primary:disabled,html[data-netbox-color-mode=dark] .btn-primary.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-secondary{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-secondary:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:active,html[data-netbox-color-mode=dark] .btn-secondary.active,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary:focus,html[data-netbox-color-mode=dark] .btn-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-secondary:disabled,html[data-netbox-color-mode=dark] .btn-secondary.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-success{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-success:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:active,html[data-netbox-color-mode=dark] .btn-success.active,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success:focus,html[data-netbox-color-mode=dark] .btn-success:active:focus,html[data-netbox-color-mode=dark] .btn-success.active:focus,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-success:disabled,html[data-netbox-color-mode=dark] .btn-success.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-info{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-info:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:active,html[data-netbox-color-mode=dark] .btn-info.active,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info:focus,html[data-netbox-color-mode=dark] .btn-info:active:focus,html[data-netbox-color-mode=dark] .btn-info.active:focus,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-info:disabled,html[data-netbox-color-mode=dark] .btn-info.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-warning{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-warning:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:active,html[data-netbox-color-mode=dark] .btn-warning.active,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning:focus,html[data-netbox-color-mode=dark] .btn-warning:active:focus,html[data-netbox-color-mode=dark] .btn-warning.active:focus,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-warning:disabled,html[data-netbox-color-mode=dark] .btn-warning.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-danger{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-danger:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:active,html[data-netbox-color-mode=dark] .btn-danger.active,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger:focus,html[data-netbox-color-mode=dark] .btn-danger:active:focus,html[data-netbox-color-mode=dark] .btn-danger.active:focus,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-danger:disabled,html[data-netbox-color-mode=dark] .btn-danger.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-light{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-light:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:active,html[data-netbox-color-mode=dark] .btn-light.active,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light:focus,html[data-netbox-color-mode=dark] .btn-light:active:focus,html[data-netbox-color-mode=dark] .btn-light.active:focus,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html[data-netbox-color-mode=dark] .btn-light:disabled,html[data-netbox-color-mode=dark] .btn-light.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-dark{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-dark:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:active,html[data-netbox-color-mode=dark] .btn-dark.active,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark:focus,html[data-netbox-color-mode=dark] .btn-dark:active:focus,html[data-netbox-color-mode=dark] .btn-dark.active:focus,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-dark:disabled,html[data-netbox-color-mode=dark] .btn-dark.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-red{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:active,html[data-netbox-color-mode=dark] .btn-red.active,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red:focus,html[data-netbox-color-mode=dark] .btn-red:active:focus,html[data-netbox-color-mode=dark] .btn-red.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-red:disabled,html[data-netbox-color-mode=dark] .btn-red.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-yellow{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:active,html[data-netbox-color-mode=dark] .btn-yellow.active,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow:focus,html[data-netbox-color-mode=dark] .btn-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-yellow:disabled,html[data-netbox-color-mode=dark] .btn-yellow.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-green{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:active,html[data-netbox-color-mode=dark] .btn-green.active,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green:focus,html[data-netbox-color-mode=dark] .btn-green:active:focus,html[data-netbox-color-mode=dark] .btn-green.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-green:disabled,html[data-netbox-color-mode=dark] .btn-green.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-blue{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:active,html[data-netbox-color-mode=dark] .btn-blue.active,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue:focus,html[data-netbox-color-mode=dark] .btn-blue:active:focus,html[data-netbox-color-mode=dark] .btn-blue.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-blue:disabled,html[data-netbox-color-mode=dark] .btn-blue.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-cyan{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:active,html[data-netbox-color-mode=dark] .btn-cyan.active,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan:focus,html[data-netbox-color-mode=dark] .btn-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-cyan:disabled,html[data-netbox-color-mode=dark] .btn-cyan.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-indigo{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:active,html[data-netbox-color-mode=dark] .btn-indigo.active,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo:focus,html[data-netbox-color-mode=dark] .btn-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html[data-netbox-color-mode=dark] .btn-indigo:disabled,html[data-netbox-color-mode=dark] .btn-indigo.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-purple{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:active,html[data-netbox-color-mode=dark] .btn-purple.active,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple:focus,html[data-netbox-color-mode=dark] .btn-purple:active:focus,html[data-netbox-color-mode=dark] .btn-purple.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html[data-netbox-color-mode=dark] .btn-purple:disabled,html[data-netbox-color-mode=dark] .btn-purple.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-pink{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:active,html[data-netbox-color-mode=dark] .btn-pink.active,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink:focus,html[data-netbox-color-mode=dark] .btn-pink:active:focus,html[data-netbox-color-mode=dark] .btn-pink.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html[data-netbox-color-mode=dark] .btn-pink:disabled,html[data-netbox-color-mode=dark] .btn-pink.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:active,html[data-netbox-color-mode=dark] .btn-darker.active,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker:focus,html[data-netbox-color-mode=dark] .btn-darker:active:focus,html[data-netbox-color-mode=dark] .btn-darker.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}html[data-netbox-color-mode=dark] .btn-darker:disabled,html[data-netbox-color-mode=dark] .btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:active,html[data-netbox-color-mode=dark] .btn-darkest.active,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest:focus,html[data-netbox-color-mode=dark] .btn-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}html[data-netbox-color-mode=dark] .btn-darkest:disabled,html[data-netbox-color-mode=dark] .btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:active,html[data-netbox-color-mode=dark] .btn-gray.active,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray:focus,html[data-netbox-color-mode=dark] .btn-gray:active:focus,html[data-netbox-color-mode=dark] .btn-gray.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html[data-netbox-color-mode=dark] .btn-gray:disabled,html[data-netbox-color-mode=dark] .btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:active,html[data-netbox-color-mode=dark] .btn-gray-100.active,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100:focus,html[data-netbox-color-mode=dark] .btn-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html[data-netbox-color-mode=dark] .btn-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:active,html[data-netbox-color-mode=dark] .btn-gray-200.active,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200:focus,html[data-netbox-color-mode=dark] .btn-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}html[data-netbox-color-mode=dark] .btn-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:active,html[data-netbox-color-mode=dark] .btn-gray-300.active,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300:focus,html[data-netbox-color-mode=dark] .btn-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html[data-netbox-color-mode=dark] .btn-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:active,html[data-netbox-color-mode=dark] .btn-gray-400.active,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400:focus,html[data-netbox-color-mode=dark] .btn-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html[data-netbox-color-mode=dark] .btn-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:active,html[data-netbox-color-mode=dark] .btn-gray-500.active,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500:focus,html[data-netbox-color-mode=dark] .btn-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html[data-netbox-color-mode=dark] .btn-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:active,html[data-netbox-color-mode=dark] .btn-gray-600.active,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600:focus,html[data-netbox-color-mode=dark] .btn-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html[data-netbox-color-mode=dark] .btn-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:active,html[data-netbox-color-mode=dark] .btn-gray-700.active,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700:focus,html[data-netbox-color-mode=dark] .btn-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html[data-netbox-color-mode=dark] .btn-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:active,html[data-netbox-color-mode=dark] .btn-gray-800.active,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800:focus,html[data-netbox-color-mode=dark] .btn-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}html[data-netbox-color-mode=dark] .btn-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:active,html[data-netbox-color-mode=dark] .btn-gray-900.active,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900:focus,html[data-netbox-color-mode=dark] .btn-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html[data-netbox-color-mode=dark] .btn-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:active,html[data-netbox-color-mode=dark] .btn-red-100.active,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100:focus,html[data-netbox-color-mode=dark] .btn-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}html[data-netbox-color-mode=dark] .btn-red-100:disabled,html[data-netbox-color-mode=dark] .btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:active,html[data-netbox-color-mode=dark] .btn-red-200.active,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200:focus,html[data-netbox-color-mode=dark] .btn-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}html[data-netbox-color-mode=dark] .btn-red-200:disabled,html[data-netbox-color-mode=dark] .btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:active,html[data-netbox-color-mode=dark] .btn-red-300.active,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300:focus,html[data-netbox-color-mode=dark] .btn-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html[data-netbox-color-mode=dark] .btn-red-300:disabled,html[data-netbox-color-mode=dark] .btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:active,html[data-netbox-color-mode=dark] .btn-red-400.active,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400:focus,html[data-netbox-color-mode=dark] .btn-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}html[data-netbox-color-mode=dark] .btn-red-400:disabled,html[data-netbox-color-mode=dark] .btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:active,html[data-netbox-color-mode=dark] .btn-red-500.active,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500:focus,html[data-netbox-color-mode=dark] .btn-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html[data-netbox-color-mode=dark] .btn-red-500:disabled,html[data-netbox-color-mode=dark] .btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:active,html[data-netbox-color-mode=dark] .btn-red-600.active,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600:focus,html[data-netbox-color-mode=dark] .btn-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}html[data-netbox-color-mode=dark] .btn-red-600:disabled,html[data-netbox-color-mode=dark] .btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-red-700{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:active,html[data-netbox-color-mode=dark] .btn-red-700.active,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700:focus,html[data-netbox-color-mode=dark] .btn-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}html[data-netbox-color-mode=dark] .btn-red-700:disabled,html[data-netbox-color-mode=dark] .btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:active,html[data-netbox-color-mode=dark] .btn-red-800.active,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800:focus,html[data-netbox-color-mode=dark] .btn-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}html[data-netbox-color-mode=dark] .btn-red-800:disabled,html[data-netbox-color-mode=dark] .btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:active,html[data-netbox-color-mode=dark] .btn-red-900.active,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900:focus,html[data-netbox-color-mode=dark] .btn-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}html[data-netbox-color-mode=dark] .btn-red-900:disabled,html[data-netbox-color-mode=dark] .btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:active,html[data-netbox-color-mode=dark] .btn-yellow-100.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}html[data-netbox-color-mode=dark] .btn-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:active,html[data-netbox-color-mode=dark] .btn-yellow-200.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}html[data-netbox-color-mode=dark] .btn-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:active,html[data-netbox-color-mode=dark] .btn-yellow-300.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html[data-netbox-color-mode=dark] .btn-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:active,html[data-netbox-color-mode=dark] .btn-yellow-400.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}html[data-netbox-color-mode=dark] .btn-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:active,html[data-netbox-color-mode=dark] .btn-yellow-500.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html[data-netbox-color-mode=dark] .btn-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:active,html[data-netbox-color-mode=dark] .btn-yellow-600.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}html[data-netbox-color-mode=dark] .btn-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:active,html[data-netbox-color-mode=dark] .btn-yellow-700.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}html[data-netbox-color-mode=dark] .btn-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:active,html[data-netbox-color-mode=dark] .btn-yellow-800.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}html[data-netbox-color-mode=dark] .btn-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:active,html[data-netbox-color-mode=dark] .btn-yellow-900.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}html[data-netbox-color-mode=dark] .btn-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:active,html[data-netbox-color-mode=dark] .btn-green-100.active,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100:focus,html[data-netbox-color-mode=dark] .btn-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}html[data-netbox-color-mode=dark] .btn-green-100:disabled,html[data-netbox-color-mode=dark] .btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:active,html[data-netbox-color-mode=dark] .btn-green-200.active,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200:focus,html[data-netbox-color-mode=dark] .btn-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}html[data-netbox-color-mode=dark] .btn-green-200:disabled,html[data-netbox-color-mode=dark] .btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:active,html[data-netbox-color-mode=dark] .btn-green-300.active,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300:focus,html[data-netbox-color-mode=dark] .btn-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html[data-netbox-color-mode=dark] .btn-green-300:disabled,html[data-netbox-color-mode=dark] .btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:active,html[data-netbox-color-mode=dark] .btn-green-400.active,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400:focus,html[data-netbox-color-mode=dark] .btn-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}html[data-netbox-color-mode=dark] .btn-green-400:disabled,html[data-netbox-color-mode=dark] .btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-green-500{color:#fff;background-color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:active,html[data-netbox-color-mode=dark] .btn-green-500.active,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500:focus,html[data-netbox-color-mode=dark] .btn-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html[data-netbox-color-mode=dark] .btn-green-500:disabled,html[data-netbox-color-mode=dark] .btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:active,html[data-netbox-color-mode=dark] .btn-green-600.active,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600:focus,html[data-netbox-color-mode=dark] .btn-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}html[data-netbox-color-mode=dark] .btn-green-600:disabled,html[data-netbox-color-mode=dark] .btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:active,html[data-netbox-color-mode=dark] .btn-green-700.active,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700:focus,html[data-netbox-color-mode=dark] .btn-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}html[data-netbox-color-mode=dark] .btn-green-700:disabled,html[data-netbox-color-mode=dark] .btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:active,html[data-netbox-color-mode=dark] .btn-green-800.active,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800:focus,html[data-netbox-color-mode=dark] .btn-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}html[data-netbox-color-mode=dark] .btn-green-800:disabled,html[data-netbox-color-mode=dark] .btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:active,html[data-netbox-color-mode=dark] .btn-green-900.active,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900:focus,html[data-netbox-color-mode=dark] .btn-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}html[data-netbox-color-mode=dark] .btn-green-900:disabled,html[data-netbox-color-mode=dark] .btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:active,html[data-netbox-color-mode=dark] .btn-blue-100.active,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100:focus,html[data-netbox-color-mode=dark] .btn-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}html[data-netbox-color-mode=dark] .btn-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:active,html[data-netbox-color-mode=dark] .btn-blue-200.active,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200:focus,html[data-netbox-color-mode=dark] .btn-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}html[data-netbox-color-mode=dark] .btn-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:active,html[data-netbox-color-mode=dark] .btn-blue-300.active,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300:focus,html[data-netbox-color-mode=dark] .btn-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html[data-netbox-color-mode=dark] .btn-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:active,html[data-netbox-color-mode=dark] .btn-blue-400.active,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400:focus,html[data-netbox-color-mode=dark] .btn-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}html[data-netbox-color-mode=dark] .btn-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:active,html[data-netbox-color-mode=dark] .btn-blue-500.active,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500:focus,html[data-netbox-color-mode=dark] .btn-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html[data-netbox-color-mode=dark] .btn-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:active,html[data-netbox-color-mode=dark] .btn-blue-600.active,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600:focus,html[data-netbox-color-mode=dark] .btn-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}html[data-netbox-color-mode=dark] .btn-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:active,html[data-netbox-color-mode=dark] .btn-blue-700.active,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700:focus,html[data-netbox-color-mode=dark] .btn-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}html[data-netbox-color-mode=dark] .btn-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:active,html[data-netbox-color-mode=dark] .btn-blue-800.active,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800:focus,html[data-netbox-color-mode=dark] .btn-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}html[data-netbox-color-mode=dark] .btn-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:active,html[data-netbox-color-mode=dark] .btn-blue-900.active,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900:focus,html[data-netbox-color-mode=dark] .btn-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}html[data-netbox-color-mode=dark] .btn-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:active,html[data-netbox-color-mode=dark] .btn-cyan-100.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}html[data-netbox-color-mode=dark] .btn-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:active,html[data-netbox-color-mode=dark] .btn-cyan-200.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}html[data-netbox-color-mode=dark] .btn-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:active,html[data-netbox-color-mode=dark] .btn-cyan-300.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html[data-netbox-color-mode=dark] .btn-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:active,html[data-netbox-color-mode=dark] .btn-cyan-400.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}html[data-netbox-color-mode=dark] .btn-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:active,html[data-netbox-color-mode=dark] .btn-cyan-500.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html[data-netbox-color-mode=dark] .btn-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:active,html[data-netbox-color-mode=dark] .btn-cyan-600.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}html[data-netbox-color-mode=dark] .btn-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:active,html[data-netbox-color-mode=dark] .btn-cyan-700.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}html[data-netbox-color-mode=dark] .btn-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:active,html[data-netbox-color-mode=dark] .btn-cyan-800.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}html[data-netbox-color-mode=dark] .btn-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:active,html[data-netbox-color-mode=dark] .btn-cyan-900.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}html[data-netbox-color-mode=dark] .btn-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:active,html[data-netbox-color-mode=dark] .btn-indigo-100.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}html[data-netbox-color-mode=dark] .btn-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:active,html[data-netbox-color-mode=dark] .btn-indigo-200.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}html[data-netbox-color-mode=dark] .btn-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:active,html[data-netbox-color-mode=dark] .btn-indigo-300.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html[data-netbox-color-mode=dark] .btn-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:active,html[data-netbox-color-mode=dark] .btn-indigo-400.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}html[data-netbox-color-mode=dark] .btn-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:active,html[data-netbox-color-mode=dark] .btn-indigo-500.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html[data-netbox-color-mode=dark] .btn-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:active,html[data-netbox-color-mode=dark] .btn-indigo-600.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}html[data-netbox-color-mode=dark] .btn-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:active,html[data-netbox-color-mode=dark] .btn-indigo-700.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}html[data-netbox-color-mode=dark] .btn-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:active,html[data-netbox-color-mode=dark] .btn-indigo-800.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}html[data-netbox-color-mode=dark] .btn-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:active,html[data-netbox-color-mode=dark] .btn-indigo-900.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}html[data-netbox-color-mode=dark] .btn-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:active,html[data-netbox-color-mode=dark] .btn-purple-100.active,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100:focus,html[data-netbox-color-mode=dark] .btn-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}html[data-netbox-color-mode=dark] .btn-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:active,html[data-netbox-color-mode=dark] .btn-purple-200.active,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200:focus,html[data-netbox-color-mode=dark] .btn-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}html[data-netbox-color-mode=dark] .btn-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:active,html[data-netbox-color-mode=dark] .btn-purple-300.active,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300:focus,html[data-netbox-color-mode=dark] .btn-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html[data-netbox-color-mode=dark] .btn-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:active,html[data-netbox-color-mode=dark] .btn-purple-400.active,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400:focus,html[data-netbox-color-mode=dark] .btn-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}html[data-netbox-color-mode=dark] .btn-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:active,html[data-netbox-color-mode=dark] .btn-purple-500.active,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500:focus,html[data-netbox-color-mode=dark] .btn-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html[data-netbox-color-mode=dark] .btn-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:active,html[data-netbox-color-mode=dark] .btn-purple-600.active,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600:focus,html[data-netbox-color-mode=dark] .btn-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}html[data-netbox-color-mode=dark] .btn-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:active,html[data-netbox-color-mode=dark] .btn-purple-700.active,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700:focus,html[data-netbox-color-mode=dark] .btn-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}html[data-netbox-color-mode=dark] .btn-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:active,html[data-netbox-color-mode=dark] .btn-purple-800.active,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800:focus,html[data-netbox-color-mode=dark] .btn-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}html[data-netbox-color-mode=dark] .btn-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:active,html[data-netbox-color-mode=dark] .btn-purple-900.active,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900:focus,html[data-netbox-color-mode=dark] .btn-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}html[data-netbox-color-mode=dark] .btn-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:active,html[data-netbox-color-mode=dark] .btn-pink-100.active,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100:focus,html[data-netbox-color-mode=dark] .btn-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}html[data-netbox-color-mode=dark] .btn-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:active,html[data-netbox-color-mode=dark] .btn-pink-200.active,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200:focus,html[data-netbox-color-mode=dark] .btn-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}html[data-netbox-color-mode=dark] .btn-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:active,html[data-netbox-color-mode=dark] .btn-pink-300.active,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300:focus,html[data-netbox-color-mode=dark] .btn-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html[data-netbox-color-mode=dark] .btn-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:active,html[data-netbox-color-mode=dark] .btn-pink-400.active,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400:focus,html[data-netbox-color-mode=dark] .btn-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}html[data-netbox-color-mode=dark] .btn-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:active,html[data-netbox-color-mode=dark] .btn-pink-500.active,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500:focus,html[data-netbox-color-mode=dark] .btn-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html[data-netbox-color-mode=dark] .btn-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:active,html[data-netbox-color-mode=dark] .btn-pink-600.active,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600:focus,html[data-netbox-color-mode=dark] .btn-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}html[data-netbox-color-mode=dark] .btn-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:active,html[data-netbox-color-mode=dark] .btn-pink-700.active,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700:focus,html[data-netbox-color-mode=dark] .btn-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}html[data-netbox-color-mode=dark] .btn-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:active,html[data-netbox-color-mode=dark] .btn-pink-800.active,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800:focus,html[data-netbox-color-mode=dark] .btn-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}html[data-netbox-color-mode=dark] .btn-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:active,html[data-netbox-color-mode=dark] .btn-pink-900.active,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900:focus,html[data-netbox-color-mode=dark] .btn-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}html[data-netbox-color-mode=dark] .btn-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-outline-primary{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-primary:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:active,html[data-netbox-color-mode=dark] .btn-outline-primary.active,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,html[data-netbox-color-mode=dark] .btn-outline-primary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-primary:disabled,html[data-netbox-color-mode=dark] .btn-outline-primary.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-secondary{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-secondary:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:active,html[data-netbox-color-mode=dark] .btn-outline-secondary.active,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-secondary:disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-success{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-success:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:active,html[data-netbox-color-mode=dark] .btn-outline-success.active,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success:focus,html[data-netbox-color-mode=dark] .btn-outline-success:active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-success:disabled,html[data-netbox-color-mode=dark] .btn-outline-success.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-info{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-info:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:active,html[data-netbox-color-mode=dark] .btn-outline-info.active,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info:focus,html[data-netbox-color-mode=dark] .btn-outline-info:active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-info:disabled,html[data-netbox-color-mode=dark] .btn-outline-info.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-warning{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-warning:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:active,html[data-netbox-color-mode=dark] .btn-outline-warning.active,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,html[data-netbox-color-mode=dark] .btn-outline-warning:active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-warning:disabled,html[data-netbox-color-mode=dark] .btn-outline-warning.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-danger{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-danger:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:active,html[data-netbox-color-mode=dark] .btn-outline-danger.active,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,html[data-netbox-color-mode=dark] .btn-outline-danger:active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-danger:disabled,html[data-netbox-color-mode=dark] .btn-outline-danger.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-light{color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-outline-light:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:active,html[data-netbox-color-mode=dark] .btn-outline-light.active,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light:focus,html[data-netbox-color-mode=dark] .btn-outline-light:active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html[data-netbox-color-mode=dark] .btn-outline-light:disabled,html[data-netbox-color-mode=dark] .btn-outline-light.disabled{color:#dee2e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-dark{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-dark:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:active,html[data-netbox-color-mode=dark] .btn-outline-dark.active,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,html[data-netbox-color-mode=dark] .btn-outline-dark:active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-dark:disabled,html[data-netbox-color-mode=dark] .btn-outline-dark.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-red:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:active,html[data-netbox-color-mode=dark] .btn-outline-red.active,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red:focus,html[data-netbox-color-mode=dark] .btn-outline-red:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-red:disabled,html[data-netbox-color-mode=dark] .btn-outline-red.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-yellow:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:active,html[data-netbox-color-mode=dark] .btn-outline-yellow.active,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-yellow:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-green:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:active,html[data-netbox-color-mode=dark] .btn-outline-green.active,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green:focus,html[data-netbox-color-mode=dark] .btn-outline-green:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-green:disabled,html[data-netbox-color-mode=dark] .btn-outline-green.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-blue:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:active,html[data-netbox-color-mode=dark] .btn-outline-blue.active,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,html[data-netbox-color-mode=dark] .btn-outline-blue:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-blue:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-cyan:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:active,html[data-netbox-color-mode=dark] .btn-outline-cyan.active,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-cyan:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo{color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-outline-indigo:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:active,html[data-netbox-color-mode=dark] .btn-outline-indigo.active,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html[data-netbox-color-mode=dark] .btn-outline-indigo:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo.disabled{color:#a370f7;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple{color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-outline-purple:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:active,html[data-netbox-color-mode=dark] .btn-outline-purple.active,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,html[data-netbox-color-mode=dark] .btn-outline-purple:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html[data-netbox-color-mode=dark] .btn-outline-purple:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple.disabled{color:#a98eda;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink{color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-outline-pink:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:active,html[data-netbox-color-mode=dark] .btn-outline-pink.active,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,html[data-netbox-color-mode=dark] .btn-outline-pink:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html[data-netbox-color-mode=dark] .btn-outline-pink:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink.disabled{color:#e685b5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-darker{color:#1b1f22;border-color:#1b1f22}html[data-netbox-color-mode=dark] .btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:active,html[data-netbox-color-mode=dark] .btn-outline-darker.active,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,html[data-netbox-color-mode=dark] .btn-outline-darker:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}html[data-netbox-color-mode=dark] .btn-outline-darker:disabled,html[data-netbox-color-mode=dark] .btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-darkest{color:#171b1d;border-color:#171b1d}html[data-netbox-color-mode=dark] .btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:active,html[data-netbox-color-mode=dark] .btn-outline-darkest.active,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}html[data-netbox-color-mode=dark] .btn-outline-darkest:disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray{color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:active,html[data-netbox-color-mode=dark] .btn-outline-gray.active,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,html[data-netbox-color-mode=dark] .btn-outline-gray:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html[data-netbox-color-mode=dark] .btn-outline-gray:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray.disabled{color:#ced4da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}html[data-netbox-color-mode=dark] .btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html[data-netbox-color-mode=dark] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}html[data-netbox-color-mode=dark] .btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}html[data-netbox-color-mode=dark] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}html[data-netbox-color-mode=dark] .btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html[data-netbox-color-mode=dark] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-400{color:#ced4da;border-color:#ced4da}html[data-netbox-color-mode=dark] .btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html[data-netbox-color-mode=dark] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html[data-netbox-color-mode=dark] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-600{color:#6c757d;border-color:#6c757d}html[data-netbox-color-mode=dark] .btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html[data-netbox-color-mode=dark] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-700{color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] .btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}html[data-netbox-color-mode=dark] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700.disabled{color:#495057;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-800{color:#343a40;border-color:#343a40}html[data-netbox-color-mode=dark] .btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}html[data-netbox-color-mode=dark] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-gray-900{color:#212529;border-color:#212529}html[data-netbox-color-mode=dark] .btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html[data-netbox-color-mode=dark] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900.disabled{color:#212529;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}html[data-netbox-color-mode=dark] .btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:active,html[data-netbox-color-mode=dark] .btn-outline-red-100.active,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}html[data-netbox-color-mode=dark] .btn-outline-red-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}html[data-netbox-color-mode=dark] .btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:active,html[data-netbox-color-mode=dark] .btn-outline-red-200.active,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}html[data-netbox-color-mode=dark] .btn-outline-red-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-300{color:#ea868f;border-color:#ea868f}html[data-netbox-color-mode=dark] .btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:active,html[data-netbox-color-mode=dark] .btn-outline-red-300.active,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html[data-netbox-color-mode=dark] .btn-outline-red-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}html[data-netbox-color-mode=dark] .btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:active,html[data-netbox-color-mode=dark] .btn-outline-red-400.active,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}html[data-netbox-color-mode=dark] .btn-outline-red-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-500{color:#dc3545;border-color:#dc3545}html[data-netbox-color-mode=dark] .btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:active,html[data-netbox-color-mode=dark] .btn-outline-red-500.active,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html[data-netbox-color-mode=dark] .btn-outline-red-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-600{color:#b02a37;border-color:#b02a37}html[data-netbox-color-mode=dark] .btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:active,html[data-netbox-color-mode=dark] .btn-outline-red-600.active,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}html[data-netbox-color-mode=dark] .btn-outline-red-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-700{color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:active,html[data-netbox-color-mode=dark] .btn-outline-red-700.active,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}html[data-netbox-color-mode=dark] .btn-outline-red-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700.disabled{color:#842029;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-800{color:#58151c;border-color:#58151c}html[data-netbox-color-mode=dark] .btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:active,html[data-netbox-color-mode=dark] .btn-outline-red-800.active,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}html[data-netbox-color-mode=dark] .btn-outline-red-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800.disabled{color:#58151c;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}html[data-netbox-color-mode=dark] .btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:active,html[data-netbox-color-mode=dark] .btn-outline-red-900.active,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}html[data-netbox-color-mode=dark] .btn-outline-red-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}html[data-netbox-color-mode=dark] .btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}html[data-netbox-color-mode=dark] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}html[data-netbox-color-mode=dark] .btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}html[data-netbox-color-mode=dark] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}html[data-netbox-color-mode=dark] .btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html[data-netbox-color-mode=dark] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}html[data-netbox-color-mode=dark] .btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}html[data-netbox-color-mode=dark] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}html[data-netbox-color-mode=dark] .btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html[data-netbox-color-mode=dark] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}html[data-netbox-color-mode=dark] .btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}html[data-netbox-color-mode=dark] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-700{color:#997404;border-color:#997404}html[data-netbox-color-mode=dark] .btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}html[data-netbox-color-mode=dark] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-800{color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}html[data-netbox-color-mode=dark] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-yellow-900{color:#332701;border-color:#332701}html[data-netbox-color-mode=dark] .btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}html[data-netbox-color-mode=dark] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}html[data-netbox-color-mode=dark] .btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:active,html[data-netbox-color-mode=dark] .btn-outline-green-100.active,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}html[data-netbox-color-mode=dark] .btn-outline-green-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}html[data-netbox-color-mode=dark] .btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:active,html[data-netbox-color-mode=dark] .btn-outline-green-200.active,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}html[data-netbox-color-mode=dark] .btn-outline-green-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-300{color:#75b798;border-color:#75b798}html[data-netbox-color-mode=dark] .btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:active,html[data-netbox-color-mode=dark] .btn-outline-green-300.active,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html[data-netbox-color-mode=dark] .btn-outline-green-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300.disabled{color:#75b798;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-400{color:#479f76;border-color:#479f76}html[data-netbox-color-mode=dark] .btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:active,html[data-netbox-color-mode=dark] .btn-outline-green-400.active,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}html[data-netbox-color-mode=dark] .btn-outline-green-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400.disabled{color:#479f76;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-500{color:#198754;border-color:#198754}html[data-netbox-color-mode=dark] .btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:active,html[data-netbox-color-mode=dark] .btn-outline-green-500.active,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html[data-netbox-color-mode=dark] .btn-outline-green-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500.disabled{color:#198754;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-600{color:#146c43;border-color:#146c43}html[data-netbox-color-mode=dark] .btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:active,html[data-netbox-color-mode=dark] .btn-outline-green-600.active,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}html[data-netbox-color-mode=dark] .btn-outline-green-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600.disabled{color:#146c43;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-700{color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:active,html[data-netbox-color-mode=dark] .btn-outline-green-700.active,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}html[data-netbox-color-mode=dark] .btn-outline-green-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-800{color:#0a3622;border-color:#0a3622}html[data-netbox-color-mode=dark] .btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:active,html[data-netbox-color-mode=dark] .btn-outline-green-800.active,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}html[data-netbox-color-mode=dark] .btn-outline-green-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-green-900{color:#051b11;border-color:#051b11}html[data-netbox-color-mode=dark] .btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:active,html[data-netbox-color-mode=dark] .btn-outline-green-900.active,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}html[data-netbox-color-mode=dark] .btn-outline-green-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900.disabled{color:#051b11;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}html[data-netbox-color-mode=dark] .btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}html[data-netbox-color-mode=dark] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}html[data-netbox-color-mode=dark] .btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}html[data-netbox-color-mode=dark] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html[data-netbox-color-mode=dark] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}html[data-netbox-color-mode=dark] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}html[data-netbox-color-mode=dark] .btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html[data-netbox-color-mode=dark] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}html[data-netbox-color-mode=dark] .btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}html[data-netbox-color-mode=dark] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-700{color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}html[data-netbox-color-mode=dark] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700.disabled{color:#084298;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-800{color:#052c65;border-color:#052c65}html[data-netbox-color-mode=dark] .btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}html[data-netbox-color-mode=dark] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-blue-900{color:#031633;border-color:#031633}html[data-netbox-color-mode=dark] .btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}html[data-netbox-color-mode=dark] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900.disabled{color:#031633;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}html[data-netbox-color-mode=dark] .btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}html[data-netbox-color-mode=dark] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}html[data-netbox-color-mode=dark] .btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}html[data-netbox-color-mode=dark] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}html[data-netbox-color-mode=dark] .btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html[data-netbox-color-mode=dark] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}html[data-netbox-color-mode=dark] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}html[data-netbox-color-mode=dark] .btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html[data-netbox-color-mode=dark] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}html[data-netbox-color-mode=dark] .btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}html[data-netbox-color-mode=dark] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-700{color:#087990;border-color:#087990}html[data-netbox-color-mode=dark] .btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}html[data-netbox-color-mode=dark] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-800{color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}html[data-netbox-color-mode=dark] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-cyan-900{color:#032830;border-color:#032830}html[data-netbox-color-mode=dark] .btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}html[data-netbox-color-mode=dark] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}html[data-netbox-color-mode=dark] .btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}html[data-netbox-color-mode=dark] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}html[data-netbox-color-mode=dark] .btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}html[data-netbox-color-mode=dark] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}html[data-netbox-color-mode=dark] .btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html[data-netbox-color-mode=dark] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}html[data-netbox-color-mode=dark] .btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}html[data-netbox-color-mode=dark] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}html[data-netbox-color-mode=dark] .btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html[data-netbox-color-mode=dark] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}html[data-netbox-color-mode=dark] .btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}html[data-netbox-color-mode=dark] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}html[data-netbox-color-mode=dark] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-800{color:#290661;border-color:#290661}html[data-netbox-color-mode=dark] .btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}html[data-netbox-color-mode=dark] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-indigo-900{color:#140330;border-color:#140330}html[data-netbox-color-mode=dark] .btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}html[data-netbox-color-mode=dark] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}html[data-netbox-color-mode=dark] .btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}html[data-netbox-color-mode=dark] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}html[data-netbox-color-mode=dark] .btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}html[data-netbox-color-mode=dark] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-300{color:#a98eda;border-color:#a98eda}html[data-netbox-color-mode=dark] .btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html[data-netbox-color-mode=dark] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}html[data-netbox-color-mode=dark] .btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}html[data-netbox-color-mode=dark] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}html[data-netbox-color-mode=dark] .btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html[data-netbox-color-mode=dark] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-600{color:#59359a;border-color:#59359a}html[data-netbox-color-mode=dark] .btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}html[data-netbox-color-mode=dark] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-700{color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}html[data-netbox-color-mode=dark] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700.disabled{color:#432874;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}html[data-netbox-color-mode=dark] .btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}html[data-netbox-color-mode=dark] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-purple-900{color:#160d27;border-color:#160d27}html[data-netbox-color-mode=dark] .btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}html[data-netbox-color-mode=dark] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}html[data-netbox-color-mode=dark] .btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}html[data-netbox-color-mode=dark] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-200{color:#efadce;border-color:#efadce}html[data-netbox-color-mode=dark] .btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}html[data-netbox-color-mode=dark] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-300{color:#e685b5;border-color:#e685b5}html[data-netbox-color-mode=dark] .btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html[data-netbox-color-mode=dark] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}html[data-netbox-color-mode=dark] .btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}html[data-netbox-color-mode=dark] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-500{color:#d63384;border-color:#d63384}html[data-netbox-color-mode=dark] .btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html[data-netbox-color-mode=dark] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-600{color:#ab296a;border-color:#ab296a}html[data-netbox-color-mode=dark] .btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}html[data-netbox-color-mode=dark] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-700{color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}html[data-netbox-color-mode=dark] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-800{color:#561435;border-color:#561435}html[data-netbox-color-mode=dark] .btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}html[data-netbox-color-mode=dark] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800.disabled{color:#561435;background-color:transparent}html[data-netbox-color-mode=dark] .btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}html[data-netbox-color-mode=dark] .btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}html[data-netbox-color-mode=dark] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}html[data-netbox-color-mode=dark] .btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}html[data-netbox-color-mode=dark] .btn-link:hover{color:#0a58ca}html[data-netbox-color-mode=dark] .btn-link:disabled,html[data-netbox-color-mode=dark] .btn-link.disabled{color:#dee2e6}html[data-netbox-color-mode=dark] .btn-lg,html[data-netbox-color-mode=dark] .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html[data-netbox-color-mode=dark] .btn-sm,html[data-netbox-color-mode=dark] .btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] .fade{transition:opacity .15s linear}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .fade{transition:none}}html[data-netbox-color-mode=dark] .fade:not(.show){opacity:0}html[data-netbox-color-mode=dark] .collapse:not(.show){display:none}html[data-netbox-color-mode=dark] .collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .collapsing{transition:none}}html[data-netbox-color-mode=dark] .dropup,html[data-netbox-color-mode=dark] .dropend,html[data-netbox-color-mode=dark] .dropdown,html[data-netbox-color-mode=dark] .dropstart{position:relative}html[data-netbox-color-mode=dark] .dropdown-toggle{white-space:nowrap}html[data-netbox-color-mode=dark] .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html[data-netbox-color-mode=dark] .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#fff;text-align:left;list-style:none;background-color:#212529;background-clip:padding-box;border:1px solid rgba(255,255,255,.15);border-radius:.375rem}html[data-netbox-color-mode=dark] .dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}html[data-netbox-color-mode=dark] .dropdown-menu-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .dropdown-menu-sm-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-sm-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .dropdown-menu-md-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-md-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .dropdown-menu-lg-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-lg-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .dropdown-menu-xl-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-xl-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start{--bs-position: start}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end{--bs-position: end}html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}html[data-netbox-color-mode=dark] .dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after{vertical-align:0}html[data-netbox-color-mode=dark] .dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after{display:none}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:empty:after{margin-left:0}html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before{vertical-align:0}html[data-netbox-color-mode=dark] .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}html[data-netbox-color-mode=dark] .dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#f8f9fa;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}html[data-netbox-color-mode=dark] .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-item:focus{color:#fff;background-color:#6c757d}html[data-netbox-color-mode=dark] .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}html[data-netbox-color-mode=dark] .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-item:disabled{color:#343a40;pointer-events:none;background-color:transparent}html[data-netbox-color-mode=dark] .dropdown-menu.show{display:block}html[data-netbox-color-mode=dark] .dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}html[data-netbox-color-mode=dark] .dropdown-item-text{display:block;padding:.25rem 1rem;color:#f8f9fa}html[data-netbox-color-mode=dark] .dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item{color:#dee2e6}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-divider{border-color:#00000026}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item-text{color:#dee2e6}html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-header{color:#adb5bd}html[data-netbox-color-mode=dark] .btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html[data-netbox-color-mode=dark] .btn-group>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn{position:relative;flex:1 1 auto}html[data-netbox-color-mode=dark] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:hover,html[data-netbox-color-mode=dark] .btn-group>.btn:focus,html[data-netbox-color-mode=dark] .btn-group>.btn:active,html[data-netbox-color-mode=dark] .btn-group>.btn.active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn.active{z-index:1}html[data-netbox-color-mode=dark] .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .btn-toolbar .input-group{width:auto}html[data-netbox-color-mode=dark] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child){margin-left:-1px}html[data-netbox-color-mode=dark] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=dark] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=dark] .dropdown-toggle-split:after{margin-left:0}.dropstart html[data-netbox-color-mode=dark] .dropdown-toggle-split:before{margin-right:0}html[data-netbox-color-mode=dark] .btn-sm+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html[data-netbox-color-mode=dark] .btn-lg+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html[data-netbox-color-mode=dark] .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group{width:100%}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}html[data-netbox-color-mode=dark] .nav-link{display:block;padding:.5rem 1rem;color:#fff;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .nav-link{transition:none}}html[data-netbox-color-mode=dark] .nav-link.disabled{color:#343a40;pointer-events:none;cursor:default}html[data-netbox-color-mode=dark] .nav-tabs{border-bottom:1px solid #495057}html[data-netbox-color-mode=dark] .nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:focus{border-color:rgba(52,58,64,.5) rgba(52,58,64,.5) #495057;isolation:isolate}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.disabled{color:#343a40;background-color:transparent;border-color:transparent}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-item.show .nav-link{color:#f8f9fa;background-color:#1b1f22;border-color:#343a40 #343a40 #1b1f22}html[data-netbox-color-mode=dark] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .nav-pills .nav-link{background:none;border:0;border-radius:.375rem}html[data-netbox-color-mode=dark] .nav-pills .nav-link.active,html[data-netbox-color-mode=dark] .nav-pills .show>.nav-link{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .nav-fill>.nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item{flex:1 1 auto;text-align:center}html[data-netbox-color-mode=dark] .nav-justified>.nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}html[data-netbox-color-mode=dark] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item .nav-link{width:100%}html[data-netbox-color-mode=dark] .tab-content>.tab-pane{display:none}html[data-netbox-color-mode=dark] .tab-content>.active{display:block}html[data-netbox-color-mode=dark] .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar>.container,html[data-netbox-color-mode=dark] .navbar>.container-fluid,html[data-netbox-color-mode=dark] .navbar>.container-sm,html[data-netbox-color-mode=dark] .navbar>.container-md,html[data-netbox-color-mode=dark] .navbar>.container-lg,html[data-netbox-color-mode=dark] .navbar>.container-xl,html[data-netbox-color-mode=dark] .navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}html[data-netbox-color-mode=dark] .navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}html[data-netbox-color-mode=dark] .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html[data-netbox-color-mode=dark] .navbar-nav .nav-link{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] .navbar-nav .dropdown-menu{position:static}html[data-netbox-color-mode=dark] .navbar-text{padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}html[data-netbox-color-mode=dark] .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .navbar-toggler{transition:none}}html[data-netbox-color-mode=dark] .navbar-toggler:hover{text-decoration:none}html[data-netbox-color-mode=dark] .navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}html[data-netbox-color-mode=dark] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}html[data-netbox-color-mode=dark] .navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media (min-width: 576px){html[data-netbox-color-mode=dark] .navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-toggler{display:none}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-toggler{display:none}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-toggler{display:none}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-toggler{display:none}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-toggler{display:none}}html[data-netbox-color-mode=dark] .navbar-expand{flex-wrap:nowrap;justify-content:flex-start}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav{flex-direction:row}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav-scroll{overflow:visible}html[data-netbox-color-mode=dark] .navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}html[data-netbox-color-mode=dark] .navbar-expand .navbar-toggler{display:none}html[data-netbox-color-mode=dark] .navbar-light .navbar-brand{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:focus{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link{color:#adb5bd}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:focus{color:#000000b3}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.active{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler{color:#adb5bd;border-color:#495057}html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23adb5bd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .navbar-light .navbar-text{color:#adb5bd}html[data-netbox-color-mode=dark] .navbar-light .navbar-text a,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:focus{color:#000000e6}html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:focus{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link{color:#ffffff8c}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.active{color:#fff}html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .navbar-dark .navbar-text{color:#ffffff8c}html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:focus{color:#fff}html[data-netbox-color-mode=dark] .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#212529;background-clip:border-box;border:1px solid rgba(255,255,255,.125);border-radius:.375rem}html[data-netbox-color-mode=dark] .card>hr{margin-right:0;margin-left:0}html[data-netbox-color-mode=dark] .card>.list-group{border-top:inherit;border-bottom:inherit}html[data-netbox-color-mode=dark] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card>.card-header+.list-group,html[data-netbox-color-mode=dark] .card>.list-group+.card-footer{border-top:0}html[data-netbox-color-mode=dark] .card-body{flex:1 1 auto;padding:1rem}html[data-netbox-color-mode=dark] .card-title{margin-bottom:.5rem}html[data-netbox-color-mode=dark] .card-subtitle{margin-top:-.25rem;margin-bottom:0}html[data-netbox-color-mode=dark] .card-text:last-child{margin-bottom:0}html[data-netbox-color-mode=dark] .card-link:hover{text-decoration:none}html[data-netbox-color-mode=dark] .card-link+.card-link{margin-left:1rem}html[data-netbox-color-mode=dark] .card-header{padding:.5rem 1rem;margin-bottom:0;background-color:"unset";border-bottom:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}html[data-netbox-color-mode=dark] .card-footer{padding:.5rem 1rem;background-color:"unset";border-top:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}html[data-netbox-color-mode=dark] .card-header-tabs .nav-link.active{background-color:#212529;border-bottom-color:#212529}html[data-netbox-color-mode=dark] .card-header-pills{margin-right:-.5rem;margin-left:-.5rem}html[data-netbox-color-mode=dark] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=dark] .card-img-bottom{width:100%}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .card-group>.card{margin-bottom:.75rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .card-group{display:flex;flex-flow:row wrap}html[data-netbox-color-mode=dark] .card-group>.card{flex:1 0 0%;margin-bottom:0}html[data-netbox-color-mode=dark] .card-group>.card+.card{margin-left:0;border-left:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}html[data-netbox-color-mode=dark] .accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#fff;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .accordion-button{transition:none}}html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed){color:#000;background-color:#6397e5;box-shadow:inset 0 -1px #495057}html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}html[data-netbox-color-mode=dark] .accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .accordion-button:after{transition:none}}html[data-netbox-color-mode=dark] .accordion-button:hover{z-index:2}html[data-netbox-color-mode=dark] .accordion-button:focus{z-index:3;border-color:#7db1fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .accordion-header{margin-bottom:0}html[data-netbox-color-mode=dark] .accordion-item{background-color:transparent;border:1px solid #495057}html[data-netbox-color-mode=dark] .accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .accordion-item:not(:first-of-type){border-top:0}html[data-netbox-color-mode=dark] .accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .accordion-body{padding:1rem 1.25rem}html[data-netbox-color-mode=dark] .accordion-flush .accordion-collapse{border-width:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:first-child{border-top:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:last-child{border-bottom:0}html[data-netbox-color-mode=dark] .accordion-flush .accordion-item .accordion-button{border-radius:0}html[data-netbox-color-mode=dark] .breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#f8f9fa;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%23f8f9fa'/%3E%3C/svg%3E"))}html[data-netbox-color-mode=dark] .breadcrumb-item.active{color:#fff}html[data-netbox-color-mode=dark] .pagination{display:flex;padding-left:0;list-style:none}html[data-netbox-color-mode=dark] .page-link{position:relative;display:block;color:#9ec5fe;text-decoration:none;background-color:#343a40;border:1px solid #6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .page-link{transition:none}}html[data-netbox-color-mode=dark] .page-link:hover{z-index:2;color:#cfe2ff;background-color:#ced4da;border-color:#adb5bd}html[data-netbox-color-mode=dark] .page-link:focus{z-index:3;color:#cfe2ff;background-color:#ced4da;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .page-item:not(:first-child) .page-link{margin-left:-1px}html[data-netbox-color-mode=dark] .page-item.active .page-link{z-index:3;color:#fff;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#343a40;border-color:#6c757d}html[data-netbox-color-mode=dark] .page-link{padding:.375rem .75rem}html[data-netbox-color-mode=dark] .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}html[data-netbox-color-mode=dark] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}html[data-netbox-color-mode=dark] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}html[data-netbox-color-mode=dark] .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}html[data-netbox-color-mode=dark] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}html[data-netbox-color-mode=dark] .badge:empty{display:none}html[data-netbox-color-mode=dark] .btn .badge{position:relative;top:-1px}html[data-netbox-color-mode=dark] .alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}html[data-netbox-color-mode=dark] .alert-heading{color:inherit}html[data-netbox-color-mode=dark] .alert-link{font-weight:700}html[data-netbox-color-mode=dark] .alert-dismissible{padding-right:3rem}html[data-netbox-color-mode=dark] .alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}html[data-netbox-color-mode=dark] .alert-primary{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-primary .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-secondary{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-secondary .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-success{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-success .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-info{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-info .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-warning{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-warning .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-danger{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-danger .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-light{color:#2c2d2e;background-color:#e0e3e7;border-color:#e5e8eb}html[data-netbox-color-mode=dark] .alert-light .alert-link{color:#232425}html[data-netbox-color-mode=dark] .alert-dark{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-dark .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-red{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-red .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-yellow{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-yellow .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-green{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-green .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-blue{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-blue .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-cyan{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-cyan .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-indigo{color:#211631;background-color:#a877f7;border-color:#b58df9}html[data-netbox-color-mode=dark] .alert-indigo .alert-link{color:#1a1227}html[data-netbox-color-mode=dark] .alert-purple{color:#221c2c;background-color:#ad94dc;border-color:#baa5e1}html[data-netbox-color-mode=dark] .alert-purple .alert-link{color:#1b1623}html[data-netbox-color-mode=dark] .alert-pink{color:#2e1b24;background-color:#e78bb9;border-color:#eb9dc4}html[data-netbox-color-mode=dark] .alert-pink .alert-link{color:#25161d}html[data-netbox-color-mode=dark] .alert-darker{color:#d1d2d3;background-color:#262a2d;border-color:#494c4e}html[data-netbox-color-mode=dark] .alert-darker .alert-link{color:#a7a8a9}html[data-netbox-color-mode=dark] .alert-darkest{color:#d1d1d2;background-color:#232628;border-color:#45494a}html[data-netbox-color-mode=dark] .alert-darkest .alert-link{color:#a7a7a8}html[data-netbox-color-mode=dark] .alert-gray{color:#292a2c;background-color:#d0d6dc;border-color:#d8dde1}html[data-netbox-color-mode=dark] .alert-gray .alert-link{color:#212223}html[data-netbox-color-mode=dark] .alert-gray-100{color:#323232;background-color:#f8f9fa;border-color:#f9fafb}html[data-netbox-color-mode=dark] .alert-gray-100 .alert-link{color:#282828}html[data-netbox-color-mode=dark] .alert-gray-200{color:#2f2f30;background-color:#eaedf0;border-color:#edf0f2}html[data-netbox-color-mode=dark] .alert-gray-200 .alert-link{color:#262626}html[data-netbox-color-mode=dark] .alert-gray-300{color:#2c2d2e;background-color:#e0e3e7;border-color:#e5e8eb}html[data-netbox-color-mode=dark] .alert-gray-300 .alert-link{color:#232425}html[data-netbox-color-mode=dark] .alert-gray-400{color:#292a2c;background-color:#d0d6dc;border-color:#d8dde1}html[data-netbox-color-mode=dark] .alert-gray-400 .alert-link{color:#212223}html[data-netbox-color-mode=dark] .alert-gray-500{color:#232426;background-color:#b1b9c0;border-color:#bdc4ca}html[data-netbox-color-mode=dark] .alert-gray-500 .alert-link{color:#1c1d1e}html[data-netbox-color-mode=dark] .alert-gray-600{color:#161719;background-color:#737c84;border-color:#899197}html[data-netbox-color-mode=dark] .alert-gray-600 .alert-link{color:#121214}html[data-netbox-color-mode=dark] .alert-gray-700{color:#dbdcdd;background-color:#52595f;border-color:#6d7379}html[data-netbox-color-mode=dark] .alert-gray-700 .alert-link{color:#afb0b1}html[data-netbox-color-mode=dark] .alert-gray-800{color:#d6d8d9;background-color:#3e444a;border-color:#5d6166}html[data-netbox-color-mode=dark] .alert-gray-800 .alert-link{color:#abadae}html[data-netbox-color-mode=dark] .alert-gray-900{color:#d3d3d4;background-color:#2c3034;border-color:#4d5154}html[data-netbox-color-mode=dark] .alert-gray-900 .alert-link{color:#a9a9aa}html[data-netbox-color-mode=dark] .alert-red-100{color:#322b2c;background-color:#f8d9dc;border-color:#f9dfe1}html[data-netbox-color-mode=dark] .alert-red-100 .alert-link{color:#282223}html[data-netbox-color-mode=dark] .alert-red-200{color:#302324;background-color:#f2b2b9;border-color:#f4bec4}html[data-netbox-color-mode=dark] .alert-red-200 .alert-link{color:#261c1d}html[data-netbox-color-mode=dark] .alert-red-300{color:#2f1b1d;background-color:#eb8c95;border-color:#ee9ea5}html[data-netbox-color-mode=dark] .alert-red-300 .alert-link{color:#261617}html[data-netbox-color-mode=dark] .alert-red-400{color:#2d1315;background-color:#e46571;border-color:#e97d88}html[data-netbox-color-mode=dark] .alert-red-400 .alert-link{color:#240f11}html[data-netbox-color-mode=dark] .alert-red-500{color:#2c0b0e;background-color:#de3f4e;border-color:#e35d6a}html[data-netbox-color-mode=dark] .alert-red-500 .alert-link{color:#23090b}html[data-netbox-color-mode=dark] .alert-red-600{color:#efd4d7;background-color:#b43541;border-color:#c0555f}html[data-netbox-color-mode=dark] .alert-red-600 .alert-link{color:#bfaaac}html[data-netbox-color-mode=dark] .alert-red-700{color:#e6d2d4;background-color:#8a2b34;border-color:#9d4d54}html[data-netbox-color-mode=dark] .alert-red-700 .alert-link{color:#b8a8aa}html[data-netbox-color-mode=dark] .alert-red-800{color:#ded0d2;background-color:#602127;border-color:#794449}html[data-netbox-color-mode=dark] .alert-red-800 .alert-link{color:#b2a6a8}html[data-netbox-color-mode=dark] .alert-red-900{color:#d5cecf;background-color:#37171a;border-color:#563c3e}html[data-netbox-color-mode=dark] .alert-red-900 .alert-link{color:#aaa5a6}html[data-netbox-color-mode=dark] .alert-yellow-100{color:#333129;background-color:#fff4d0;border-color:#fff5d7}html[data-netbox-color-mode=dark] .alert-yellow-100 .alert-link{color:#292721}html[data-netbox-color-mode=dark] .alert-yellow-200{color:#332e1f;background-color:#ffe7a1;border-color:#ffebb0}html[data-netbox-color-mode=dark] .alert-yellow-200 .alert-link{color:#292519}html[data-netbox-color-mode=dark] .alert-yellow-300{color:#332c15;background-color:#ffdc71;border-color:#ffe188}html[data-netbox-color-mode=dark] .alert-yellow-300 .alert-link{color:#292311}html[data-netbox-color-mode=dark] .alert-yellow-400{color:#33290b;background-color:#ffd043;border-color:#ffd761}html[data-netbox-color-mode=dark] .alert-yellow-400 .alert-link{color:#292109}html[data-netbox-color-mode=dark] .alert-yellow-500{color:#332701;background-color:#ffc413;border-color:#ffcd39}html[data-netbox-color-mode=dark] .alert-yellow-500 .alert-link{color:#291f01}html[data-netbox-color-mode=dark] .alert-yellow-600{color:#291f01;background-color:#cf9f12;border-color:#d6ae38}html[data-netbox-color-mode=dark] .alert-yellow-600 .alert-link{color:#211901}html[data-netbox-color-mode=dark] .alert-yellow-700{color:#1f1701;background-color:#9e7b11;border-color:#ad9036}html[data-netbox-color-mode=dark] .alert-yellow-700 .alert-link{color:#191201}html[data-netbox-color-mode=dark] .alert-yellow-800{color:#e0dbcd;background-color:#6e5610;border-color:#857135}html[data-netbox-color-mode=dark] .alert-yellow-800 .alert-link{color:#b3afa4}html[data-netbox-color-mode=dark] .alert-yellow-900{color:#d6d4cc;background-color:#3d320e;border-color:#5c5234}html[data-netbox-color-mode=dark] .alert-yellow-900 .alert-link{color:#abaaa3}html[data-netbox-color-mode=dark] .alert-green-100{color:#2a2e2c;background-color:#d3e8df;border-color:#daece4}html[data-netbox-color-mode=dark] .alert-green-100 .alert-link{color:#222523}html[data-netbox-color-mode=dark] .alert-green-200{color:#212925;background-color:#a8d1be;border-color:#b5d9c9}html[data-netbox-color-mode=dark] .alert-green-200 .alert-link{color:#1a211e}html[data-netbox-color-mode=dark] .alert-green-300{color:#17251e;background-color:#7cbb9d;border-color:#91c5ad}html[data-netbox-color-mode=dark] .alert-green-300 .alert-link{color:#121e18}html[data-netbox-color-mode=dark] .alert-green-400{color:#0e2018;background-color:#50a47d;border-color:#6cb291}html[data-netbox-color-mode=dark] .alert-green-400 .alert-link{color:#0b1a13}html[data-netbox-color-mode=dark] .alert-green-500{color:#051b11;background-color:#258d5d;border-color:#479f76}html[data-netbox-color-mode=dark] .alert-green-500 .alert-link{color:#04160e}html[data-netbox-color-mode=dark] .alert-green-600{color:#d0e2d9;background-color:#20734c;border-color:#438969}html[data-netbox-color-mode=dark] .alert-green-600 .alert-link{color:#a6b5ae}html[data-netbox-color-mode=dark] .alert-green-700{color:#cfdcd6;background-color:#1b5a3c;border-color:#3f745b}html[data-netbox-color-mode=dark] .alert-green-700 .alert-link{color:#a6b0ab}html[data-netbox-color-mode=dark] .alert-green-800{color:#ced7d3;background-color:#16402d;border-color:#3b5e4e}html[data-netbox-color-mode=dark] .alert-green-800 .alert-link{color:#a5aca9}html[data-netbox-color-mode=dark] .alert-green-900{color:#cdd1cf;background-color:#12261d;border-color:#374941}html[data-netbox-color-mode=dark] .alert-green-900 .alert-link{color:#a4a7a6}html[data-netbox-color-mode=dark] .alert-blue-100{color:#292d33;background-color:#d1e3ff;border-color:#d9e8ff}html[data-netbox-color-mode=dark] .alert-blue-100 .alert-link{color:#212429}html[data-netbox-color-mode=dark] .alert-blue-200{color:#202733;background-color:#a3c8fe;border-color:#b1d1fe}html[data-netbox-color-mode=dark] .alert-blue-200 .alert-link{color:#1a1f29}html[data-netbox-color-mode=dark] .alert-blue-300{color:#162233;background-color:#75acfe;border-color:#8bb9fe}html[data-netbox-color-mode=dark] .alert-blue-300 .alert-link{color:#121b29}html[data-netbox-color-mode=dark] .alert-blue-400{color:#0c1c33;background-color:#4791fd;border-color:#64a2fd}html[data-netbox-color-mode=dark] .alert-blue-400 .alert-link{color:#0a1629}html[data-netbox-color-mode=dark] .alert-blue-500{color:#031633;background-color:#1975fd;border-color:#3d8bfd}html[data-netbox-color-mode=dark] .alert-blue-500 .alert-link{color:#021229}html[data-netbox-color-mode=dark] .alert-blue-600{color:#cedef4;background-color:#1660cd;border-color:#3b79d5}html[data-netbox-color-mode=dark] .alert-blue-600 .alert-link{color:#a5b2c3}html[data-netbox-color-mode=dark] .alert-blue-700{color:#ced9ea;background-color:#144b9d;border-color:#3968ad}html[data-netbox-color-mode=dark] .alert-blue-700 .alert-link{color:#a5aebb}html[data-netbox-color-mode=dark] .alert-blue-800{color:#cdd5e0;background-color:#12376d;border-color:#375684}html[data-netbox-color-mode=dark] .alert-blue-800 .alert-link{color:#a4aab3}html[data-netbox-color-mode=dark] .alert-blue-900{color:#cdd0d6;background-color:#10223d;border-color:#35455c}html[data-netbox-color-mode=dark] .alert-blue-900 .alert-link{color:#a4a6ab}html[data-netbox-color-mode=dark] .alert-cyan-100{color:#293132;background-color:#d1f5fc;border-color:#d9f6fd}html[data-netbox-color-mode=dark] .alert-cyan-100 .alert-link{color:#212728}html[data-netbox-color-mode=dark] .alert-cyan-200{color:#202f32;background-color:#a3ebf9;border-color:#b1eefa}html[data-netbox-color-mode=dark] .alert-cyan-200 .alert-link{color:#1a2628}html[data-netbox-color-mode=dark] .alert-cyan-300{color:#162d31;background-color:#75e1f6;border-color:#8be5f8}html[data-netbox-color-mode=dark] .alert-cyan-300 .alert-link{color:#122427}html[data-netbox-color-mode=dark] .alert-cyan-400{color:#0c2b31;background-color:#47d7f4;border-color:#64ddf5}html[data-netbox-color-mode=dark] .alert-cyan-400 .alert-link{color:#0a2227}html[data-netbox-color-mode=dark] .alert-cyan-500{color:#032830;background-color:#19cdf1;border-color:#3dd5f3}html[data-netbox-color-mode=dark] .alert-cyan-500 .alert-link{color:#022026}html[data-netbox-color-mode=dark] .alert-cyan-600{color:#022026;background-color:#16a7c3;border-color:#3bb5cd}html[data-netbox-color-mode=dark] .alert-cyan-600 .alert-link{color:#021a1e}html[data-netbox-color-mode=dark] .alert-cyan-700{color:#cee4e9;background-color:#148096;border-color:#3994a6}html[data-netbox-color-mode=dark] .alert-cyan-700 .alert-link{color:#a5b6ba}html[data-netbox-color-mode=dark] .alert-cyan-800{color:#cddcdf;background-color:#125a68;border-color:#377480}html[data-netbox-color-mode=dark] .alert-cyan-800 .alert-link{color:#a4b0b2}html[data-netbox-color-mode=dark] .alert-cyan-900{color:#cdd4d6;background-color:#10333a;border-color:#355359}html[data-netbox-color-mode=dark] .alert-cyan-900 .alert-link{color:#a4aaab}html[data-netbox-color-mode=dark] .alert-indigo-100{color:#2d2932;background-color:#e2d1fc;border-color:#e6d9fd}html[data-netbox-color-mode=dark] .alert-indigo-100 .alert-link{color:#242128}html[data-netbox-color-mode=dark] .alert-indigo-200{color:#272032;background-color:#c5a4fa;border-color:#ceb2fb}html[data-netbox-color-mode=dark] .alert-indigo-200 .alert-link{color:#1f1a28}html[data-netbox-color-mode=dark] .alert-indigo-300{color:#211631;background-color:#a877f7;border-color:#b58df9}html[data-netbox-color-mode=dark] .alert-indigo-300 .alert-link{color:#1a1227}html[data-netbox-color-mode=dark] .alert-indigo-400{color:#e7d9fd;background-color:#8b4af6;border-color:#9d66f7}html[data-netbox-color-mode=dark] .alert-indigo-400 .alert-link{color:#b9aeca}html[data-netbox-color-mode=dark] .alert-indigo-500{color:#e0cffc;background-color:#6e1cf3;border-color:#8540f5}html[data-netbox-color-mode=dark] .alert-indigo-500 .alert-link{color:#b3a6ca}html[data-netbox-color-mode=dark] .alert-indigo-600{color:#dccff3;background-color:#5b19c5;border-color:#753dce}html[data-netbox-color-mode=dark] .alert-indigo-600 .alert-link{color:#b0a6c2}html[data-netbox-color-mode=dark] .alert-indigo-700{color:#d8cee9;background-color:#471697;border-color:#643ba7}html[data-netbox-color-mode=dark] .alert-indigo-700 .alert-link{color:#ada5ba}html[data-netbox-color-mode=dark] .alert-indigo-800{color:#d4cddf;background-color:#341269;border-color:#543881}html[data-netbox-color-mode=dark] .alert-indigo-800 .alert-link{color:#aaa4b2}html[data-netbox-color-mode=dark] .alert-indigo-900{color:#d0cdd6;background-color:#20103a;border-color:#433559}html[data-netbox-color-mode=dark] .alert-indigo-900 .alert-link{color:#a6a4ab}html[data-netbox-color-mode=dark] .alert-purple-100{color:#2d2b31;background-color:#e3dbf4;border-color:#e8e1f5}html[data-netbox-color-mode=dark] .alert-purple-100 .alert-link{color:#242227}html[data-netbox-color-mode=dark] .alert-purple-200{color:#27242e;background-color:#c8b7e7;border-color:#d1c2eb}html[data-netbox-color-mode=dark] .alert-purple-200 .alert-link{color:#1f1d25}html[data-netbox-color-mode=dark] .alert-purple-300{color:#221c2c;background-color:#ad94dc;border-color:#baa5e1}html[data-netbox-color-mode=dark] .alert-purple-300 .alert-link{color:#1b1623}html[data-netbox-color-mode=dark] .alert-purple-400{color:#1c1529;background-color:#9270d0;border-color:#a386d7}html[data-netbox-color-mode=dark] .alert-purple-400 .alert-link{color:#161121}html[data-netbox-color-mode=dark] .alert-purple-500{color:#e2d9f3;background-color:#764bc4;border-color:#8c68cd}html[data-netbox-color-mode=dark] .alert-purple-500 .alert-link{color:#b5aec2}html[data-netbox-color-mode=dark] .alert-purple-600{color:#ded7eb;background-color:#613f9f;border-color:#7a5dae}html[data-netbox-color-mode=dark] .alert-purple-600 .alert-link{color:#b2acbc}html[data-netbox-color-mode=dark] .alert-purple-700{color:#d9d4e3;background-color:#4c337b;border-color:#695390}html[data-netbox-color-mode=dark] .alert-purple-700 .alert-link{color:#aeaab6}html[data-netbox-color-mode=dark] .alert-purple-800{color:#d5d1db;background-color:#372556;border-color:#564871}html[data-netbox-color-mode=dark] .alert-purple-800 .alert-link{color:#aaa7af}html[data-netbox-color-mode=dark] .alert-purple-900{color:#d0cfd4;background-color:#221932;border-color:#453d52}html[data-netbox-color-mode=dark] .alert-purple-900 .alert-link{color:#a6a6aa}html[data-netbox-color-mode=dark] .alert-pink-100{color:#312b2e;background-color:#f7d8e7;border-color:#f9deeb}html[data-netbox-color-mode=dark] .alert-pink-100 .alert-link{color:#272225}html[data-netbox-color-mode=dark] .alert-pink-200{color:#302329;background-color:#f0b1d0;border-color:#f2bdd8}html[data-netbox-color-mode=dark] .alert-pink-200 .alert-link{color:#261c21}html[data-netbox-color-mode=dark] .alert-pink-300{color:#2e1b24;background-color:#e78bb9;border-color:#eb9dc4}html[data-netbox-color-mode=dark] .alert-pink-300 .alert-link{color:#25161d}html[data-netbox-color-mode=dark] .alert-pink-400{color:#2c121f;background-color:#e064a2;border-color:#e57db1}html[data-netbox-color-mode=dark] .alert-pink-400 .alert-link{color:#230e19}html[data-netbox-color-mode=dark] .alert-pink-500{color:#2b0a1a;background-color:#d83d8a;border-color:#de5c9d}html[data-netbox-color-mode=dark] .alert-pink-500 .alert-link{color:#220815}html[data-netbox-color-mode=dark] .alert-pink-600{color:#eed4e1;background-color:#af3471;border-color:#bc5488}html[data-netbox-color-mode=dark] .alert-pink-600 .alert-link{color:#beaab4}html[data-netbox-color-mode=dark] .alert-pink-700{color:#e6d2dc;background-color:#862a58;border-color:#994c72}html[data-netbox-color-mode=dark] .alert-pink-700 .alert-link{color:#b8a8b0}html[data-netbox-color-mode=dark] .alert-pink-800{color:#ddd0d7;background-color:#5e203f;border-color:#78435d}html[data-netbox-color-mode=dark] .alert-pink-800 .alert-link{color:#b1a6ac}html[data-netbox-color-mode=dark] .alert-pink-900{color:#d5ced1;background-color:#361625;border-color:#553b48}html[data-netbox-color-mode=dark] .alert-pink-900 .alert-link{color:#aaa5a7}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}html[data-netbox-color-mode=dark] .progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#6c757d;border-radius:.375rem}html[data-netbox-color-mode=dark] .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#6ea8fe;transition:width .6s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .progress-bar{transition:none}}html[data-netbox-color-mode=dark] .progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}html[data-netbox-color-mode=dark] .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .progress-bar-animated{animation:none}}html[data-netbox-color-mode=dark] .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}html[data-netbox-color-mode=dark] .list-group-numbered{list-style-type:none;counter-reset:section}html[data-netbox-color-mode=dark] .list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}html[data-netbox-color-mode=dark] .list-group-item-action{width:100%;color:#dee2e6;text-align:inherit}html[data-netbox-color-mode=dark] .list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-action:focus{z-index:1;color:#fff;text-decoration:none;background-color:#f8f9fa26}html[data-netbox-color-mode=dark] .list-group-item-action:active{color:#fff;background-color:#dee2e620}html[data-netbox-color-mode=dark] .list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#fff;text-decoration:none;background-color:#212529;border:1px solid rgba(255,255,255,.125)}html[data-netbox-color-mode=dark] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html[data-netbox-color-mode=dark] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html[data-netbox-color-mode=dark] .list-group-item.disabled,html[data-netbox-color-mode=dark] .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#212529}html[data-netbox-color-mode=dark] .list-group-item.active{z-index:2;color:#fff;background-color:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item{border-top-width:0}html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active{margin-top:-1px;border-top-width:1px}html[data-netbox-color-mode=dark] .list-group-horizontal{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){html[data-netbox-color-mode=dark] .list-group-horizontal-sm{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .list-group-horizontal-md{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .list-group-horizontal-lg{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .list-group-horizontal-xl{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .list-group-horizontal-xxl{flex-direction:row}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}html[data-netbox-color-mode=dark] .list-group-flush{border-radius:0}html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item{border-width:0 0 1px}html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}html[data-netbox-color-mode=dark] .list-group-item-primary{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-secondary{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-success{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-info{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-warning{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-danger{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-light{color:#595a5c;background-color:#f8f9fa}html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}html[data-netbox-color-mode=dark] .list-group-item-dark{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-red{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-yellow{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-green{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-blue{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-cyan{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-indigo{color:#624394;background-color:#ede2fd}html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}html[data-netbox-color-mode=dark] .list-group-item-purple{color:#655583;background-color:#eee8f8}html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}html[data-netbox-color-mode=dark] .list-group-item-pink{color:#8a506d;background-color:#fae7f0}html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}html[data-netbox-color-mode=dark] .list-group-item-darker{color:#101314;background-color:#d1d2d3}html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}html[data-netbox-color-mode=dark] .list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}html[data-netbox-color-mode=dark] .list-group-item-gray{color:#525557;background-color:#f5f6f8}html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}html[data-netbox-color-mode=dark] .list-group-item-gray-100{color:#636464;background-color:#fefefe}html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}html[data-netbox-color-mode=dark] .list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}html[data-netbox-color-mode=dark] .list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}html[data-netbox-color-mode=dark] .list-group-item-gray-400{color:#525557;background-color:#f5f6f8}html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}html[data-netbox-color-mode=dark] .list-group-item-gray-500{color:#686d71;background-color:#eff0f2}html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}html[data-netbox-color-mode=dark] .list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}html[data-netbox-color-mode=dark] .list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}html[data-netbox-color-mode=dark] .list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}html[data-netbox-color-mode=dark] .list-group-item-gray-900{color:#141619;background-color:#d3d3d4}html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}html[data-netbox-color-mode=dark] .list-group-item-red-100{color:#635657;background-color:#fef7f8}html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}html[data-netbox-color-mode=dark] .list-group-item-red-200{color:#604648;background-color:#fceff0}html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}html[data-netbox-color-mode=dark] .list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}html[data-netbox-color-mode=dark] .list-group-item-red-400{color:#883840;background-color:#f9dfe1}html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}html[data-netbox-color-mode=dark] .list-group-item-red-500{color:#842029;background-color:#f8d7da}html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}html[data-netbox-color-mode=dark] .list-group-item-red-600{color:#6a1921;background-color:#efd4d7}html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}html[data-netbox-color-mode=dark] .list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}html[data-netbox-color-mode=dark] .list-group-item-red-800{color:#350d11;background-color:#ded0d2}html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}html[data-netbox-color-mode=dark] .list-group-item-red-900{color:#1a0708;background-color:#d5cecf}html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}html[data-netbox-color-mode=dark] .list-group-item-yellow-100{color:#666152;background-color:#fffdf5}html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}html[data-netbox-color-mode=dark] .list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}html[data-netbox-color-mode=dark] .list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}html[data-netbox-color-mode=dark] .list-group-item-yellow-400{color:#665217;background-color:#fff5d7}html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}html[data-netbox-color-mode=dark] .list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}html[data-netbox-color-mode=dark] .list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}html[data-netbox-color-mode=dark] .list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}html[data-netbox-color-mode=dark] .list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}html[data-netbox-color-mode=dark] .list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}html[data-netbox-color-mode=dark] .list-group-item-green-100{color:#545c58;background-color:#f6faf8}html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}html[data-netbox-color-mode=dark] .list-group-item-green-200{color:#41534b;background-color:#edf5f1}html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}html[data-netbox-color-mode=dark] .list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}html[data-netbox-color-mode=dark] .list-group-item-green-400{color:#2b5f47;background-color:#daece4}html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}html[data-netbox-color-mode=dark] .list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}html[data-netbox-color-mode=dark] .list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}html[data-netbox-color-mode=dark] .list-group-item-green-700{color:#09311e;background-color:#cfdcd6}html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}html[data-netbox-color-mode=dark] .list-group-item-green-800{color:#062014;background-color:#ced7d3}html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}html[data-netbox-color-mode=dark] .list-group-item-green-900{color:#03100a;background-color:#cdd1cf}html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}html[data-netbox-color-mode=dark] .list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}html[data-netbox-color-mode=dark] .list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}html[data-netbox-color-mode=dark] .list-group-item-blue-300{color:#426598;background-color:#e2eeff}html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}html[data-netbox-color-mode=dark] .list-group-item-blue-400{color:#255398;background-color:#d8e8ff}html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}html[data-netbox-color-mode=dark] .list-group-item-blue-500{color:#084298;background-color:#cfe2ff}html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}html[data-netbox-color-mode=dark] .list-group-item-blue-600{color:#063579;background-color:#cedef4}html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}html[data-netbox-color-mode=dark] .list-group-item-blue-700{color:#05285b;background-color:#ced9ea}html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}html[data-netbox-color-mode=dark] .list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}html[data-netbox-color-mode=dark] .list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}html[data-netbox-color-mode=dark] .list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}html[data-netbox-color-mode=dark] .list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}html[data-netbox-color-mode=dark] .list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}html[data-netbox-color-mode=dark] .list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}html[data-netbox-color-mode=dark] .list-group-item-cyan-500{color:#055160;background-color:#cff4fc}html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}html[data-netbox-color-mode=dark] .list-group-item-cyan-600{color:#066173;background-color:#ceecf2}html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}html[data-netbox-color-mode=dark] .list-group-item-cyan-700{color:#054956;background-color:#cee4e9}html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}html[data-netbox-color-mode=dark] .list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}html[data-netbox-color-mode=dark] .list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}html[data-netbox-color-mode=dark] .list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}html[data-netbox-color-mode=dark] .list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}html[data-netbox-color-mode=dark] .list-group-item-indigo-300{color:#624394;background-color:#ede2fd}html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}html[data-netbox-color-mode=dark] .list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}html[data-netbox-color-mode=dark] .list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html[data-netbox-color-mode=dark] .list-group-item-indigo-600{color:#310874;background-color:#dccff3}html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}html[data-netbox-color-mode=dark] .list-group-item-indigo-700{color:#250657;background-color:#d8cee9}html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}html[data-netbox-color-mode=dark] .list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}html[data-netbox-color-mode=dark] .list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}html[data-netbox-color-mode=dark] .list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}html[data-netbox-color-mode=dark] .list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}html[data-netbox-color-mode=dark] .list-group-item-purple-300{color:#655583;background-color:#eee8f8}html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}html[data-netbox-color-mode=dark] .list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}html[data-netbox-color-mode=dark] .list-group-item-purple-500{color:#432874;background-color:#e2d9f3}html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}html[data-netbox-color-mode=dark] .list-group-item-purple-600{color:#35205c;background-color:#ded7eb}html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}html[data-netbox-color-mode=dark] .list-group-item-purple-700{color:#281846;background-color:#d9d4e3}html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}html[data-netbox-color-mode=dark] .list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}html[data-netbox-color-mode=dark] .list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}html[data-netbox-color-mode=dark] .list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}html[data-netbox-color-mode=dark] .list-group-item-pink-200{color:#604552;background-color:#fceff5}html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}html[data-netbox-color-mode=dark] .list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}html[data-netbox-color-mode=dark] .list-group-item-pink-400{color:#85375e;background-color:#f8deeb}html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}html[data-netbox-color-mode=dark] .list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}html[data-netbox-color-mode=dark] .list-group-item-pink-600{color:#671940;background-color:#eed4e1}html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}html[data-netbox-color-mode=dark] .list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}html[data-netbox-color-mode=dark] .list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}html[data-netbox-color-mode=dark] .list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}html[data-netbox-color-mode=dark] .btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#fff;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}html[data-netbox-color-mode=dark] .btn-close:hover{color:#fff;text-decoration:none;opacity:.75}html[data-netbox-color-mode=dark] .btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}html[data-netbox-color-mode=dark] .btn-close:disabled,html[data-netbox-color-mode=dark] .btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}html[data-netbox-color-mode=dark] .btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}html[data-netbox-color-mode=dark] .toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}html[data-netbox-color-mode=dark] .toast:not(.showing):not(.show){opacity:0}html[data-netbox-color-mode=dark] .toast.hide{display:none}html[data-netbox-color-mode=dark] .toast-container{width:max-content;max-width:100%;pointer-events:none}html[data-netbox-color-mode=dark] .toast-container>:not(:last-child){margin-bottom:.75rem}html[data-netbox-color-mode=dark] .toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html[data-netbox-color-mode=dark] .toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}html[data-netbox-color-mode=dark] .toast-body{padding:.75rem;word-wrap:break-word}html[data-netbox-color-mode=dark] .modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}html[data-netbox-color-mode=dark] .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade html[data-netbox-color-mode=dark] .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion: reduce){.modal.fade html[data-netbox-color-mode=dark] .modal-dialog{transition:none}}.modal.show html[data-netbox-color-mode=dark] .modal-dialog{transform:none}.modal.modal-static html[data-netbox-color-mode=dark] .modal-dialog{transform:scale(1.02)}html[data-netbox-color-mode=dark] .modal-dialog-scrollable{height:calc(100% - 1rem)}html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}html[data-netbox-color-mode=dark] .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#343a40;background-clip:padding-box;border:1px solid rgba(255,255,255,.2);border-radius:.75rem;outline:0}html[data-netbox-color-mode=dark] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html[data-netbox-color-mode=dark] .modal-backdrop.fade{opacity:0}html[data-netbox-color-mode=dark] .modal-backdrop.show{opacity:.5}html[data-netbox-color-mode=dark] .modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #495057;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}html[data-netbox-color-mode=dark] .modal-title{margin-bottom:0;line-height:1.5}html[data-netbox-color-mode=dark] .modal-body{position:relative;flex:1 1 auto;padding:1rem}html[data-netbox-color-mode=dark] .modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #495057;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .modal-footer>*{margin:.25rem}@media (min-width: 576px){html[data-netbox-color-mode=dark] .modal-dialog{max-width:500px;margin:1.75rem auto}html[data-netbox-color-mode=dark] .modal-dialog-scrollable{height:calc(100% - 3.5rem)}html[data-netbox-color-mode=dark] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html[data-netbox-color-mode=dark] .modal-sm{max-width:300px}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .modal-lg,html[data-netbox-color-mode=dark] .modal-xl{max-width:800px}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .modal-xl{max-width:1140px}}html[data-netbox-color-mode=dark] .modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-header{border-radius:0}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-body{overflow-y:auto}html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-footer{border-radius:0}}html[data-netbox-color-mode=dark] .tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html[data-netbox-color-mode=dark] .tooltip.show{opacity:.9}html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}html[data-netbox-color-mode=dark] .bs-tooltip-top,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-end,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-bottom,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#495057}html[data-netbox-color-mode=dark] .bs-tooltip-start,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#495057}html[data-netbox-color-mode=dark] .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#495057;border-radius:.375rem}html[data-netbox-color-mode=dark] .popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#495057;background-clip:padding-box;border:1px solid rgba(255,255,255,.2);border-radius:.75rem}html[data-netbox-color-mode=dark] .popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}html[data-netbox-color-mode=dark] .popover .popover-arrow:before,html[data-netbox-color-mode=dark] .popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#495057}html[data-netbox-color-mode=dark] .bs-popover-bottom .popover-header:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=bottom] .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #454b52}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#ffffff40}html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#495057}html[data-netbox-color-mode=dark] .popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#454b52;border-bottom:1px solid rgba(255,255,255,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html[data-netbox-color-mode=dark] .popover-header:empty{display:none}html[data-netbox-color-mode=dark] .popover-body{padding:1rem;color:#fff}html[data-netbox-color-mode=dark] .carousel{position:relative}html[data-netbox-color-mode=dark] .carousel.pointer-event{touch-action:pan-y}html[data-netbox-color-mode=dark] .carousel-inner{position:relative;width:100%;overflow:hidden}html[data-netbox-color-mode=dark] .carousel-inner:after{display:block;clear:both;content:""}html[data-netbox-color-mode=dark] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-item{transition:none}}html[data-netbox-color-mode=dark] .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-item-next,html[data-netbox-color-mode=dark] .carousel-item-prev{display:block}html[data-netbox-color-mode=dark] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=dark] .active.carousel-item-end{transform:translate(100%)}html[data-netbox-color-mode=dark] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=dark] .active.carousel-item-start{transform:translate(-100%)}html[data-netbox-color-mode=dark] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html[data-netbox-color-mode=dark] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end{transition:none}}html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next{transition:none}}html[data-netbox-color-mode=dark] .carousel-control-prev:hover,html[data-netbox-color-mode=dark] .carousel-control-prev:focus,html[data-netbox-color-mode=dark] .carousel-control-next:hover,html[data-netbox-color-mode=dark] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}html[data-netbox-color-mode=dark] .carousel-control-prev{left:0}html[data-netbox-color-mode=dark] .carousel-control-next{right:0}html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}html[data-netbox-color-mode=dark] .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}html[data-netbox-color-mode=dark] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target]{transition:none}}html[data-netbox-color-mode=dark] .carousel-indicators .active{opacity:1}html[data-netbox-color-mode=dark] .carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}html[data-netbox-color-mode=dark] .carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}html[data-netbox-color-mode=dark] .carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}html[data-netbox-color-mode=dark] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}html[data-netbox-color-mode=dark] .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}html[data-netbox-color-mode=dark] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}html[data-netbox-color-mode=dark] .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=dark] .spinner-grow{animation-duration:1.5s}}html[data-netbox-color-mode=dark] .clearfix:after{display:block;clear:both;content:""}html[data-netbox-color-mode=dark] .link-primary{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-primary:hover,html[data-netbox-color-mode=dark] .link-primary:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-secondary{color:#adb5bd}html[data-netbox-color-mode=dark] .link-secondary:hover,html[data-netbox-color-mode=dark] .link-secondary:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-success{color:#75b798}html[data-netbox-color-mode=dark] .link-success:hover,html[data-netbox-color-mode=dark] .link-success:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-info{color:#6edff6}html[data-netbox-color-mode=dark] .link-info:hover,html[data-netbox-color-mode=dark] .link-info:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-warning{color:#ffda6a}html[data-netbox-color-mode=dark] .link-warning:hover,html[data-netbox-color-mode=dark] .link-warning:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-danger{color:#ea868f}html[data-netbox-color-mode=dark] .link-danger:hover,html[data-netbox-color-mode=dark] .link-danger:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-light{color:#dee2e6}html[data-netbox-color-mode=dark] .link-light:hover,html[data-netbox-color-mode=dark] .link-light:focus{color:#e5e8eb}html[data-netbox-color-mode=dark] .link-dark{color:#adb5bd}html[data-netbox-color-mode=dark] .link-dark:hover,html[data-netbox-color-mode=dark] .link-dark:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-red{color:#ea868f}html[data-netbox-color-mode=dark] .link-red:hover,html[data-netbox-color-mode=dark] .link-red:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-yellow{color:#ffda6a}html[data-netbox-color-mode=dark] .link-yellow:hover,html[data-netbox-color-mode=dark] .link-yellow:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-green{color:#75b798}html[data-netbox-color-mode=dark] .link-green:hover,html[data-netbox-color-mode=dark] .link-green:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-blue{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-blue:hover,html[data-netbox-color-mode=dark] .link-blue:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-cyan{color:#6edff6}html[data-netbox-color-mode=dark] .link-cyan:hover,html[data-netbox-color-mode=dark] .link-cyan:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-indigo{color:#a370f7}html[data-netbox-color-mode=dark] .link-indigo:hover,html[data-netbox-color-mode=dark] .link-indigo:focus{color:#b58df9}html[data-netbox-color-mode=dark] .link-purple{color:#a98eda}html[data-netbox-color-mode=dark] .link-purple:hover,html[data-netbox-color-mode=dark] .link-purple:focus{color:#baa5e1}html[data-netbox-color-mode=dark] .link-pink{color:#e685b5}html[data-netbox-color-mode=dark] .link-pink:hover,html[data-netbox-color-mode=dark] .link-pink:focus{color:#eb9dc4}html[data-netbox-color-mode=dark] .link-darker{color:#1b1f22}html[data-netbox-color-mode=dark] .link-darker:hover,html[data-netbox-color-mode=dark] .link-darker:focus{color:#16191b}html[data-netbox-color-mode=dark] .link-darkest{color:#171b1d}html[data-netbox-color-mode=dark] .link-darkest:hover,html[data-netbox-color-mode=dark] .link-darkest:focus{color:#121617}html[data-netbox-color-mode=dark] .link-gray{color:#ced4da}html[data-netbox-color-mode=dark] .link-gray:hover,html[data-netbox-color-mode=dark] .link-gray:focus{color:#d8dde1}html[data-netbox-color-mode=dark] .link-gray-100{color:#f8f9fa}html[data-netbox-color-mode=dark] .link-gray-100:hover,html[data-netbox-color-mode=dark] .link-gray-100:focus{color:#f9fafb}html[data-netbox-color-mode=dark] .link-gray-200{color:#e9ecef}html[data-netbox-color-mode=dark] .link-gray-200:hover,html[data-netbox-color-mode=dark] .link-gray-200:focus{color:#edf0f2}html[data-netbox-color-mode=dark] .link-gray-300{color:#dee2e6}html[data-netbox-color-mode=dark] .link-gray-300:hover,html[data-netbox-color-mode=dark] .link-gray-300:focus{color:#e5e8eb}html[data-netbox-color-mode=dark] .link-gray-400{color:#ced4da}html[data-netbox-color-mode=dark] .link-gray-400:hover,html[data-netbox-color-mode=dark] .link-gray-400:focus{color:#d8dde1}html[data-netbox-color-mode=dark] .link-gray-500{color:#adb5bd}html[data-netbox-color-mode=dark] .link-gray-500:hover,html[data-netbox-color-mode=dark] .link-gray-500:focus{color:#bdc4ca}html[data-netbox-color-mode=dark] .link-gray-600{color:#6c757d}html[data-netbox-color-mode=dark] .link-gray-600:hover,html[data-netbox-color-mode=dark] .link-gray-600:focus{color:#565e64}html[data-netbox-color-mode=dark] .link-gray-700{color:#495057}html[data-netbox-color-mode=dark] .link-gray-700:hover,html[data-netbox-color-mode=dark] .link-gray-700:focus{color:#3a4046}html[data-netbox-color-mode=dark] .link-gray-800{color:#343a40}html[data-netbox-color-mode=dark] .link-gray-800:hover,html[data-netbox-color-mode=dark] .link-gray-800:focus{color:#2a2e33}html[data-netbox-color-mode=dark] .link-gray-900{color:#212529}html[data-netbox-color-mode=dark] .link-gray-900:hover,html[data-netbox-color-mode=dark] .link-gray-900:focus{color:#1a1e21}html[data-netbox-color-mode=dark] .link-red-100{color:#f8d7da}html[data-netbox-color-mode=dark] .link-red-100:hover,html[data-netbox-color-mode=dark] .link-red-100:focus{color:#f9dfe1}html[data-netbox-color-mode=dark] .link-red-200{color:#f1aeb5}html[data-netbox-color-mode=dark] .link-red-200:hover,html[data-netbox-color-mode=dark] .link-red-200:focus{color:#f4bec4}html[data-netbox-color-mode=dark] .link-red-300{color:#ea868f}html[data-netbox-color-mode=dark] .link-red-300:hover,html[data-netbox-color-mode=dark] .link-red-300:focus{color:#ee9ea5}html[data-netbox-color-mode=dark] .link-red-400{color:#e35d6a}html[data-netbox-color-mode=dark] .link-red-400:hover,html[data-netbox-color-mode=dark] .link-red-400:focus{color:#e97d88}html[data-netbox-color-mode=dark] .link-red-500{color:#dc3545}html[data-netbox-color-mode=dark] .link-red-500:hover,html[data-netbox-color-mode=dark] .link-red-500:focus{color:#b02a37}html[data-netbox-color-mode=dark] .link-red-600{color:#b02a37}html[data-netbox-color-mode=dark] .link-red-600:hover,html[data-netbox-color-mode=dark] .link-red-600:focus{color:#8d222c}html[data-netbox-color-mode=dark] .link-red-700{color:#842029}html[data-netbox-color-mode=dark] .link-red-700:hover,html[data-netbox-color-mode=dark] .link-red-700:focus{color:#6a1a21}html[data-netbox-color-mode=dark] .link-red-800{color:#58151c}html[data-netbox-color-mode=dark] .link-red-800:hover,html[data-netbox-color-mode=dark] .link-red-800:focus{color:#461116}html[data-netbox-color-mode=dark] .link-red-900{color:#2c0b0e}html[data-netbox-color-mode=dark] .link-red-900:hover,html[data-netbox-color-mode=dark] .link-red-900:focus{color:#23090b}html[data-netbox-color-mode=dark] .link-yellow-100{color:#fff3cd}html[data-netbox-color-mode=dark] .link-yellow-100:hover,html[data-netbox-color-mode=dark] .link-yellow-100:focus{color:#fff5d7}html[data-netbox-color-mode=dark] .link-yellow-200{color:#ffe69c}html[data-netbox-color-mode=dark] .link-yellow-200:hover,html[data-netbox-color-mode=dark] .link-yellow-200:focus{color:#ffebb0}html[data-netbox-color-mode=dark] .link-yellow-300{color:#ffda6a}html[data-netbox-color-mode=dark] .link-yellow-300:hover,html[data-netbox-color-mode=dark] .link-yellow-300:focus{color:#ffe188}html[data-netbox-color-mode=dark] .link-yellow-400{color:#ffcd39}html[data-netbox-color-mode=dark] .link-yellow-400:hover,html[data-netbox-color-mode=dark] .link-yellow-400:focus{color:#ffd761}html[data-netbox-color-mode=dark] .link-yellow-500{color:#ffc107}html[data-netbox-color-mode=dark] .link-yellow-500:hover,html[data-netbox-color-mode=dark] .link-yellow-500:focus{color:#ffcd39}html[data-netbox-color-mode=dark] .link-yellow-600{color:#cc9a06}html[data-netbox-color-mode=dark] .link-yellow-600:hover,html[data-netbox-color-mode=dark] .link-yellow-600:focus{color:#d6ae38}html[data-netbox-color-mode=dark] .link-yellow-700{color:#997404}html[data-netbox-color-mode=dark] .link-yellow-700:hover,html[data-netbox-color-mode=dark] .link-yellow-700:focus{color:#ad9036}html[data-netbox-color-mode=dark] .link-yellow-800{color:#664d03}html[data-netbox-color-mode=dark] .link-yellow-800:hover,html[data-netbox-color-mode=dark] .link-yellow-800:focus{color:#523e02}html[data-netbox-color-mode=dark] .link-yellow-900{color:#332701}html[data-netbox-color-mode=dark] .link-yellow-900:hover,html[data-netbox-color-mode=dark] .link-yellow-900:focus{color:#291f01}html[data-netbox-color-mode=dark] .link-green-100{color:#d1e7dd}html[data-netbox-color-mode=dark] .link-green-100:hover,html[data-netbox-color-mode=dark] .link-green-100:focus{color:#daece4}html[data-netbox-color-mode=dark] .link-green-200{color:#a3cfbb}html[data-netbox-color-mode=dark] .link-green-200:hover,html[data-netbox-color-mode=dark] .link-green-200:focus{color:#b5d9c9}html[data-netbox-color-mode=dark] .link-green-300{color:#75b798}html[data-netbox-color-mode=dark] .link-green-300:hover,html[data-netbox-color-mode=dark] .link-green-300:focus{color:#91c5ad}html[data-netbox-color-mode=dark] .link-green-400{color:#479f76}html[data-netbox-color-mode=dark] .link-green-400:hover,html[data-netbox-color-mode=dark] .link-green-400:focus{color:#6cb291}html[data-netbox-color-mode=dark] .link-green-500{color:#198754}html[data-netbox-color-mode=dark] .link-green-500:hover,html[data-netbox-color-mode=dark] .link-green-500:focus{color:#146c43}html[data-netbox-color-mode=dark] .link-green-600{color:#146c43}html[data-netbox-color-mode=dark] .link-green-600:hover,html[data-netbox-color-mode=dark] .link-green-600:focus{color:#105636}html[data-netbox-color-mode=dark] .link-green-700{color:#0f5132}html[data-netbox-color-mode=dark] .link-green-700:hover,html[data-netbox-color-mode=dark] .link-green-700:focus{color:#0c4128}html[data-netbox-color-mode=dark] .link-green-800{color:#0a3622}html[data-netbox-color-mode=dark] .link-green-800:hover,html[data-netbox-color-mode=dark] .link-green-800:focus{color:#082b1b}html[data-netbox-color-mode=dark] .link-green-900{color:#051b11}html[data-netbox-color-mode=dark] .link-green-900:hover,html[data-netbox-color-mode=dark] .link-green-900:focus{color:#04160e}html[data-netbox-color-mode=dark] .link-blue-100{color:#cfe2ff}html[data-netbox-color-mode=dark] .link-blue-100:hover,html[data-netbox-color-mode=dark] .link-blue-100:focus{color:#d9e8ff}html[data-netbox-color-mode=dark] .link-blue-200{color:#9ec5fe}html[data-netbox-color-mode=dark] .link-blue-200:hover,html[data-netbox-color-mode=dark] .link-blue-200:focus{color:#b1d1fe}html[data-netbox-color-mode=dark] .link-blue-300{color:#6ea8fe}html[data-netbox-color-mode=dark] .link-blue-300:hover,html[data-netbox-color-mode=dark] .link-blue-300:focus{color:#8bb9fe}html[data-netbox-color-mode=dark] .link-blue-400{color:#3d8bfd}html[data-netbox-color-mode=dark] .link-blue-400:hover,html[data-netbox-color-mode=dark] .link-blue-400:focus{color:#64a2fd}html[data-netbox-color-mode=dark] .link-blue-500{color:#0d6efd}html[data-netbox-color-mode=dark] .link-blue-500:hover,html[data-netbox-color-mode=dark] .link-blue-500:focus{color:#0a58ca}html[data-netbox-color-mode=dark] .link-blue-600{color:#0a58ca}html[data-netbox-color-mode=dark] .link-blue-600:hover,html[data-netbox-color-mode=dark] .link-blue-600:focus{color:#0846a2}html[data-netbox-color-mode=dark] .link-blue-700{color:#084298}html[data-netbox-color-mode=dark] .link-blue-700:hover,html[data-netbox-color-mode=dark] .link-blue-700:focus{color:#06357a}html[data-netbox-color-mode=dark] .link-blue-800{color:#052c65}html[data-netbox-color-mode=dark] .link-blue-800:hover,html[data-netbox-color-mode=dark] .link-blue-800:focus{color:#042351}html[data-netbox-color-mode=dark] .link-blue-900{color:#031633}html[data-netbox-color-mode=dark] .link-blue-900:hover,html[data-netbox-color-mode=dark] .link-blue-900:focus{color:#021229}html[data-netbox-color-mode=dark] .link-cyan-100{color:#cff4fc}html[data-netbox-color-mode=dark] .link-cyan-100:hover,html[data-netbox-color-mode=dark] .link-cyan-100:focus{color:#d9f6fd}html[data-netbox-color-mode=dark] .link-cyan-200{color:#9eeaf9}html[data-netbox-color-mode=dark] .link-cyan-200:hover,html[data-netbox-color-mode=dark] .link-cyan-200:focus{color:#b1eefa}html[data-netbox-color-mode=dark] .link-cyan-300{color:#6edff6}html[data-netbox-color-mode=dark] .link-cyan-300:hover,html[data-netbox-color-mode=dark] .link-cyan-300:focus{color:#8be5f8}html[data-netbox-color-mode=dark] .link-cyan-400{color:#3dd5f3}html[data-netbox-color-mode=dark] .link-cyan-400:hover,html[data-netbox-color-mode=dark] .link-cyan-400:focus{color:#64ddf5}html[data-netbox-color-mode=dark] .link-cyan-500{color:#0dcaf0}html[data-netbox-color-mode=dark] .link-cyan-500:hover,html[data-netbox-color-mode=dark] .link-cyan-500:focus{color:#3dd5f3}html[data-netbox-color-mode=dark] .link-cyan-600{color:#0aa2c0}html[data-netbox-color-mode=dark] .link-cyan-600:hover,html[data-netbox-color-mode=dark] .link-cyan-600:focus{color:#3bb5cd}html[data-netbox-color-mode=dark] .link-cyan-700{color:#087990}html[data-netbox-color-mode=dark] .link-cyan-700:hover,html[data-netbox-color-mode=dark] .link-cyan-700:focus{color:#066173}html[data-netbox-color-mode=dark] .link-cyan-800{color:#055160}html[data-netbox-color-mode=dark] .link-cyan-800:hover,html[data-netbox-color-mode=dark] .link-cyan-800:focus{color:#04414d}html[data-netbox-color-mode=dark] .link-cyan-900{color:#032830}html[data-netbox-color-mode=dark] .link-cyan-900:hover,html[data-netbox-color-mode=dark] .link-cyan-900:focus{color:#022026}html[data-netbox-color-mode=dark] .link-indigo-100{color:#e0cffc}html[data-netbox-color-mode=dark] .link-indigo-100:hover,html[data-netbox-color-mode=dark] .link-indigo-100:focus{color:#e6d9fd}html[data-netbox-color-mode=dark] .link-indigo-200{color:#c29ffa}html[data-netbox-color-mode=dark] .link-indigo-200:hover,html[data-netbox-color-mode=dark] .link-indigo-200:focus{color:#ceb2fb}html[data-netbox-color-mode=dark] .link-indigo-300{color:#a370f7}html[data-netbox-color-mode=dark] .link-indigo-300:hover,html[data-netbox-color-mode=dark] .link-indigo-300:focus{color:#b58df9}html[data-netbox-color-mode=dark] .link-indigo-400{color:#8540f5}html[data-netbox-color-mode=dark] .link-indigo-400:hover,html[data-netbox-color-mode=dark] .link-indigo-400:focus{color:#6a33c4}html[data-netbox-color-mode=dark] .link-indigo-500{color:#6610f2}html[data-netbox-color-mode=dark] .link-indigo-500:hover,html[data-netbox-color-mode=dark] .link-indigo-500:focus{color:#520dc2}html[data-netbox-color-mode=dark] .link-indigo-600{color:#520dc2}html[data-netbox-color-mode=dark] .link-indigo-600:hover,html[data-netbox-color-mode=dark] .link-indigo-600:focus{color:#420a9b}html[data-netbox-color-mode=dark] .link-indigo-700{color:#3d0a91}html[data-netbox-color-mode=dark] .link-indigo-700:hover,html[data-netbox-color-mode=dark] .link-indigo-700:focus{color:#310874}html[data-netbox-color-mode=dark] .link-indigo-800{color:#290661}html[data-netbox-color-mode=dark] .link-indigo-800:hover,html[data-netbox-color-mode=dark] .link-indigo-800:focus{color:#21054e}html[data-netbox-color-mode=dark] .link-indigo-900{color:#140330}html[data-netbox-color-mode=dark] .link-indigo-900:hover,html[data-netbox-color-mode=dark] .link-indigo-900:focus{color:#100226}html[data-netbox-color-mode=dark] .link-purple-100{color:#e2d9f3}html[data-netbox-color-mode=dark] .link-purple-100:hover,html[data-netbox-color-mode=dark] .link-purple-100:focus{color:#e8e1f5}html[data-netbox-color-mode=dark] .link-purple-200{color:#c5b3e6}html[data-netbox-color-mode=dark] .link-purple-200:hover,html[data-netbox-color-mode=dark] .link-purple-200:focus{color:#d1c2eb}html[data-netbox-color-mode=dark] .link-purple-300{color:#a98eda}html[data-netbox-color-mode=dark] .link-purple-300:hover,html[data-netbox-color-mode=dark] .link-purple-300:focus{color:#baa5e1}html[data-netbox-color-mode=dark] .link-purple-400{color:#8c68cd}html[data-netbox-color-mode=dark] .link-purple-400:hover,html[data-netbox-color-mode=dark] .link-purple-400:focus{color:#a386d7}html[data-netbox-color-mode=dark] .link-purple-500{color:#6f42c1}html[data-netbox-color-mode=dark] .link-purple-500:hover,html[data-netbox-color-mode=dark] .link-purple-500:focus{color:#59359a}html[data-netbox-color-mode=dark] .link-purple-600{color:#59359a}html[data-netbox-color-mode=dark] .link-purple-600:hover,html[data-netbox-color-mode=dark] .link-purple-600:focus{color:#472a7b}html[data-netbox-color-mode=dark] .link-purple-700{color:#432874}html[data-netbox-color-mode=dark] .link-purple-700:hover,html[data-netbox-color-mode=dark] .link-purple-700:focus{color:#36205d}html[data-netbox-color-mode=dark] .link-purple-800{color:#2c1a4d}html[data-netbox-color-mode=dark] .link-purple-800:hover,html[data-netbox-color-mode=dark] .link-purple-800:focus{color:#23153e}html[data-netbox-color-mode=dark] .link-purple-900{color:#160d27}html[data-netbox-color-mode=dark] .link-purple-900:hover,html[data-netbox-color-mode=dark] .link-purple-900:focus{color:#120a1f}html[data-netbox-color-mode=dark] .link-pink-100{color:#f7d6e6}html[data-netbox-color-mode=dark] .link-pink-100:hover,html[data-netbox-color-mode=dark] .link-pink-100:focus{color:#f9deeb}html[data-netbox-color-mode=dark] .link-pink-200{color:#efadce}html[data-netbox-color-mode=dark] .link-pink-200:hover,html[data-netbox-color-mode=dark] .link-pink-200:focus{color:#f2bdd8}html[data-netbox-color-mode=dark] .link-pink-300{color:#e685b5}html[data-netbox-color-mode=dark] .link-pink-300:hover,html[data-netbox-color-mode=dark] .link-pink-300:focus{color:#eb9dc4}html[data-netbox-color-mode=dark] .link-pink-400{color:#de5c9d}html[data-netbox-color-mode=dark] .link-pink-400:hover,html[data-netbox-color-mode=dark] .link-pink-400:focus{color:#e57db1}html[data-netbox-color-mode=dark] .link-pink-500{color:#d63384}html[data-netbox-color-mode=dark] .link-pink-500:hover,html[data-netbox-color-mode=dark] .link-pink-500:focus{color:#ab296a}html[data-netbox-color-mode=dark] .link-pink-600{color:#ab296a}html[data-netbox-color-mode=dark] .link-pink-600:hover,html[data-netbox-color-mode=dark] .link-pink-600:focus{color:#892155}html[data-netbox-color-mode=dark] .link-pink-700{color:#801f4f}html[data-netbox-color-mode=dark] .link-pink-700:hover,html[data-netbox-color-mode=dark] .link-pink-700:focus{color:#66193f}html[data-netbox-color-mode=dark] .link-pink-800{color:#561435}html[data-netbox-color-mode=dark] .link-pink-800:hover,html[data-netbox-color-mode=dark] .link-pink-800:focus{color:#45102a}html[data-netbox-color-mode=dark] .link-pink-900{color:#2b0a1a}html[data-netbox-color-mode=dark] .link-pink-900:hover,html[data-netbox-color-mode=dark] .link-pink-900:focus{color:#220815}html[data-netbox-color-mode=dark] .ratio{position:relative;width:100%}html[data-netbox-color-mode=dark] .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}html[data-netbox-color-mode=dark] .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}html[data-netbox-color-mode=dark] .ratio-1x1{--bs-aspect-ratio: 100%}html[data-netbox-color-mode=dark] .ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}html[data-netbox-color-mode=dark] .ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}html[data-netbox-color-mode=dark] .ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}html[data-netbox-color-mode=dark] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}html[data-netbox-color-mode=dark] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}html[data-netbox-color-mode=dark] .sticky-top{position:sticky;top:0;z-index:1020}@media (min-width: 576px){html[data-netbox-color-mode=dark] .sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .sticky-xxl-top{position:sticky;top:0;z-index:1020}}html[data-netbox-color-mode=dark] .visually-hidden,html[data-netbox-color-mode=dark] .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}html[data-netbox-color-mode=dark] .stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}html[data-netbox-color-mode=dark] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html[data-netbox-color-mode=dark] .align-baseline{vertical-align:baseline!important}html[data-netbox-color-mode=dark] .align-top{vertical-align:top!important}html[data-netbox-color-mode=dark] .align-middle{vertical-align:middle!important}html[data-netbox-color-mode=dark] .align-bottom{vertical-align:bottom!important}html[data-netbox-color-mode=dark] .align-text-bottom{vertical-align:text-bottom!important}html[data-netbox-color-mode=dark] .align-text-top{vertical-align:text-top!important}html[data-netbox-color-mode=dark] .float-start{float:left!important}html[data-netbox-color-mode=dark] .float-end{float:right!important}html[data-netbox-color-mode=dark] .float-none{float:none!important}html[data-netbox-color-mode=dark] .overflow-auto{overflow:auto!important}html[data-netbox-color-mode=dark] .overflow-hidden{overflow:hidden!important}html[data-netbox-color-mode=dark] .overflow-visible{overflow:visible!important}html[data-netbox-color-mode=dark] .overflow-scroll{overflow:scroll!important}html[data-netbox-color-mode=dark] .d-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-block{display:block!important}html[data-netbox-color-mode=dark] .d-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-table{display:table!important}html[data-netbox-color-mode=dark] .d-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-none{display:none!important}html[data-netbox-color-mode=dark] .shadow{box-shadow:0 .5rem 1rem #00000026!important}html[data-netbox-color-mode=dark] .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}html[data-netbox-color-mode=dark] .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}html[data-netbox-color-mode=dark] .shadow-none{box-shadow:none!important}html[data-netbox-color-mode=dark] .position-static{position:static!important}html[data-netbox-color-mode=dark] .position-relative{position:relative!important}html[data-netbox-color-mode=dark] .position-absolute{position:absolute!important}html[data-netbox-color-mode=dark] .position-fixed{position:fixed!important}html[data-netbox-color-mode=dark] .position-sticky{position:sticky!important}html[data-netbox-color-mode=dark] .top-0{top:0!important}html[data-netbox-color-mode=dark] .top-50{top:50%!important}html[data-netbox-color-mode=dark] .top-100{top:100%!important}html[data-netbox-color-mode=dark] .bottom-0{bottom:0!important}html[data-netbox-color-mode=dark] .bottom-50{bottom:50%!important}html[data-netbox-color-mode=dark] .bottom-100{bottom:100%!important}html[data-netbox-color-mode=dark] .start-0{left:0!important}html[data-netbox-color-mode=dark] .start-50{left:50%!important}html[data-netbox-color-mode=dark] .start-100{left:100%!important}html[data-netbox-color-mode=dark] .end-0{right:0!important}html[data-netbox-color-mode=dark] .end-50{right:50%!important}html[data-netbox-color-mode=dark] .end-100{right:100%!important}html[data-netbox-color-mode=dark] .translate-middle{transform:translate(-50%,-50%)!important}html[data-netbox-color-mode=dark] .translate-middle-x{transform:translate(-50%)!important}html[data-netbox-color-mode=dark] .translate-middle-y{transform:translateY(-50%)!important}html[data-netbox-color-mode=dark] .border{border:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-0{border:0!important}html[data-netbox-color-mode=dark] .border-top{border-top:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-top-0{border-top:0!important}html[data-netbox-color-mode=dark] .border-end{border-right:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-end-0{border-right:0!important}html[data-netbox-color-mode=dark] .border-bottom{border-bottom:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-bottom-0{border-bottom:0!important}html[data-netbox-color-mode=dark] .border-start{border-left:1px solid #495057!important}html[data-netbox-color-mode=dark] .border-start-0{border-left:0!important}html[data-netbox-color-mode=dark] .border-primary{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-secondary{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-success{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-info{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-warning{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-danger{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-light{border-color:#dee2e6!important}html[data-netbox-color-mode=dark] .border-dark{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-red{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-yellow{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-green{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-blue{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-cyan{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-indigo{border-color:#a370f7!important}html[data-netbox-color-mode=dark] .border-purple{border-color:#a98eda!important}html[data-netbox-color-mode=dark] .border-pink{border-color:#e685b5!important}html[data-netbox-color-mode=dark] .border-darker{border-color:#1b1f22!important}html[data-netbox-color-mode=dark] .border-darkest{border-color:#171b1d!important}html[data-netbox-color-mode=dark] .border-gray{border-color:#ced4da!important}html[data-netbox-color-mode=dark] .border-gray-100{border-color:#f8f9fa!important}html[data-netbox-color-mode=dark] .border-gray-200{border-color:#e9ecef!important}html[data-netbox-color-mode=dark] .border-gray-300{border-color:#dee2e6!important}html[data-netbox-color-mode=dark] .border-gray-400{border-color:#ced4da!important}html[data-netbox-color-mode=dark] .border-gray-500{border-color:#adb5bd!important}html[data-netbox-color-mode=dark] .border-gray-600{border-color:#6c757d!important}html[data-netbox-color-mode=dark] .border-gray-700{border-color:#495057!important}html[data-netbox-color-mode=dark] .border-gray-800{border-color:#343a40!important}html[data-netbox-color-mode=dark] .border-gray-900{border-color:#212529!important}html[data-netbox-color-mode=dark] .border-red-100{border-color:#f8d7da!important}html[data-netbox-color-mode=dark] .border-red-200{border-color:#f1aeb5!important}html[data-netbox-color-mode=dark] .border-red-300{border-color:#ea868f!important}html[data-netbox-color-mode=dark] .border-red-400{border-color:#e35d6a!important}html[data-netbox-color-mode=dark] .border-red-500{border-color:#dc3545!important}html[data-netbox-color-mode=dark] .border-red-600{border-color:#b02a37!important}html[data-netbox-color-mode=dark] .border-red-700{border-color:#842029!important}html[data-netbox-color-mode=dark] .border-red-800{border-color:#58151c!important}html[data-netbox-color-mode=dark] .border-red-900{border-color:#2c0b0e!important}html[data-netbox-color-mode=dark] .border-yellow-100{border-color:#fff3cd!important}html[data-netbox-color-mode=dark] .border-yellow-200{border-color:#ffe69c!important}html[data-netbox-color-mode=dark] .border-yellow-300{border-color:#ffda6a!important}html[data-netbox-color-mode=dark] .border-yellow-400{border-color:#ffcd39!important}html[data-netbox-color-mode=dark] .border-yellow-500{border-color:#ffc107!important}html[data-netbox-color-mode=dark] .border-yellow-600{border-color:#cc9a06!important}html[data-netbox-color-mode=dark] .border-yellow-700{border-color:#997404!important}html[data-netbox-color-mode=dark] .border-yellow-800{border-color:#664d03!important}html[data-netbox-color-mode=dark] .border-yellow-900{border-color:#332701!important}html[data-netbox-color-mode=dark] .border-green-100{border-color:#d1e7dd!important}html[data-netbox-color-mode=dark] .border-green-200{border-color:#a3cfbb!important}html[data-netbox-color-mode=dark] .border-green-300{border-color:#75b798!important}html[data-netbox-color-mode=dark] .border-green-400{border-color:#479f76!important}html[data-netbox-color-mode=dark] .border-green-500{border-color:#198754!important}html[data-netbox-color-mode=dark] .border-green-600{border-color:#146c43!important}html[data-netbox-color-mode=dark] .border-green-700{border-color:#0f5132!important}html[data-netbox-color-mode=dark] .border-green-800{border-color:#0a3622!important}html[data-netbox-color-mode=dark] .border-green-900{border-color:#051b11!important}html[data-netbox-color-mode=dark] .border-blue-100{border-color:#cfe2ff!important}html[data-netbox-color-mode=dark] .border-blue-200{border-color:#9ec5fe!important}html[data-netbox-color-mode=dark] .border-blue-300{border-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .border-blue-400{border-color:#3d8bfd!important}html[data-netbox-color-mode=dark] .border-blue-500{border-color:#0d6efd!important}html[data-netbox-color-mode=dark] .border-blue-600{border-color:#0a58ca!important}html[data-netbox-color-mode=dark] .border-blue-700{border-color:#084298!important}html[data-netbox-color-mode=dark] .border-blue-800{border-color:#052c65!important}html[data-netbox-color-mode=dark] .border-blue-900{border-color:#031633!important}html[data-netbox-color-mode=dark] .border-cyan-100{border-color:#cff4fc!important}html[data-netbox-color-mode=dark] .border-cyan-200{border-color:#9eeaf9!important}html[data-netbox-color-mode=dark] .border-cyan-300{border-color:#6edff6!important}html[data-netbox-color-mode=dark] .border-cyan-400{border-color:#3dd5f3!important}html[data-netbox-color-mode=dark] .border-cyan-500{border-color:#0dcaf0!important}html[data-netbox-color-mode=dark] .border-cyan-600{border-color:#0aa2c0!important}html[data-netbox-color-mode=dark] .border-cyan-700{border-color:#087990!important}html[data-netbox-color-mode=dark] .border-cyan-800{border-color:#055160!important}html[data-netbox-color-mode=dark] .border-cyan-900{border-color:#032830!important}html[data-netbox-color-mode=dark] .border-indigo-100{border-color:#e0cffc!important}html[data-netbox-color-mode=dark] .border-indigo-200{border-color:#c29ffa!important}html[data-netbox-color-mode=dark] .border-indigo-300{border-color:#a370f7!important}html[data-netbox-color-mode=dark] .border-indigo-400{border-color:#8540f5!important}html[data-netbox-color-mode=dark] .border-indigo-500{border-color:#6610f2!important}html[data-netbox-color-mode=dark] .border-indigo-600{border-color:#520dc2!important}html[data-netbox-color-mode=dark] .border-indigo-700{border-color:#3d0a91!important}html[data-netbox-color-mode=dark] .border-indigo-800{border-color:#290661!important}html[data-netbox-color-mode=dark] .border-indigo-900{border-color:#140330!important}html[data-netbox-color-mode=dark] .border-purple-100{border-color:#e2d9f3!important}html[data-netbox-color-mode=dark] .border-purple-200{border-color:#c5b3e6!important}html[data-netbox-color-mode=dark] .border-purple-300{border-color:#a98eda!important}html[data-netbox-color-mode=dark] .border-purple-400{border-color:#8c68cd!important}html[data-netbox-color-mode=dark] .border-purple-500{border-color:#6f42c1!important}html[data-netbox-color-mode=dark] .border-purple-600{border-color:#59359a!important}html[data-netbox-color-mode=dark] .border-purple-700{border-color:#432874!important}html[data-netbox-color-mode=dark] .border-purple-800{border-color:#2c1a4d!important}html[data-netbox-color-mode=dark] .border-purple-900{border-color:#160d27!important}html[data-netbox-color-mode=dark] .border-pink-100{border-color:#f7d6e6!important}html[data-netbox-color-mode=dark] .border-pink-200{border-color:#efadce!important}html[data-netbox-color-mode=dark] .border-pink-300{border-color:#e685b5!important}html[data-netbox-color-mode=dark] .border-pink-400{border-color:#de5c9d!important}html[data-netbox-color-mode=dark] .border-pink-500{border-color:#d63384!important}html[data-netbox-color-mode=dark] .border-pink-600{border-color:#ab296a!important}html[data-netbox-color-mode=dark] .border-pink-700{border-color:#801f4f!important}html[data-netbox-color-mode=dark] .border-pink-800{border-color:#561435!important}html[data-netbox-color-mode=dark] .border-pink-900{border-color:#2b0a1a!important}html[data-netbox-color-mode=dark] .border-white{border-color:#fff!important}html[data-netbox-color-mode=dark] .border-1{border-width:1px!important}html[data-netbox-color-mode=dark] .border-2{border-width:2px!important}html[data-netbox-color-mode=dark] .border-3{border-width:3px!important}html[data-netbox-color-mode=dark] .border-4{border-width:4px!important}html[data-netbox-color-mode=dark] .border-5{border-width:5px!important}html[data-netbox-color-mode=dark] .w-25{width:25%!important}html[data-netbox-color-mode=dark] .w-50{width:50%!important}html[data-netbox-color-mode=dark] .w-75{width:75%!important}html[data-netbox-color-mode=dark] .w-100{width:100%!important}html[data-netbox-color-mode=dark] .w-auto{width:auto!important}html[data-netbox-color-mode=dark] .mw-100{max-width:100%!important}html[data-netbox-color-mode=dark] .vw-100{width:100vw!important}html[data-netbox-color-mode=dark] .min-vw-100{min-width:100vw!important}html[data-netbox-color-mode=dark] .h-25{height:25%!important}html[data-netbox-color-mode=dark] .h-50{height:50%!important}html[data-netbox-color-mode=dark] .h-75{height:75%!important}html[data-netbox-color-mode=dark] .h-100{height:100%!important}html[data-netbox-color-mode=dark] .h-auto{height:auto!important}html[data-netbox-color-mode=dark] .mh-100{max-height:100%!important}html[data-netbox-color-mode=dark] .vh-100{height:100vh!important}html[data-netbox-color-mode=dark] .min-vh-100{min-height:100vh!important}html[data-netbox-color-mode=dark] .flex-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-first{order:-1!important}html[data-netbox-color-mode=dark] .order-0{order:0!important}html[data-netbox-color-mode=dark] .order-1{order:1!important}html[data-netbox-color-mode=dark] .order-2{order:2!important}html[data-netbox-color-mode=dark] .order-3{order:3!important}html[data-netbox-color-mode=dark] .order-4{order:4!important}html[data-netbox-color-mode=dark] .order-5{order:5!important}html[data-netbox-color-mode=dark] .order-last{order:6!important}html[data-netbox-color-mode=dark] .m-0{margin:0!important}html[data-netbox-color-mode=dark] .m-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-0{padding:0!important}html[data-netbox-color-mode=dark] .p-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .font-monospace{font-family:var(--bs-font-monospace)!important}html[data-netbox-color-mode=dark] .fs-1{font-size:calc(1.375rem + 1.5vw)!important}html[data-netbox-color-mode=dark] .fs-2{font-size:calc(1.325rem + .9vw)!important}html[data-netbox-color-mode=dark] .fs-3{font-size:calc(1.3rem + .6vw)!important}html[data-netbox-color-mode=dark] .fs-4{font-size:calc(1.275rem + .3vw)!important}html[data-netbox-color-mode=dark] .fs-5{font-size:1.25rem!important}html[data-netbox-color-mode=dark] .fs-6{font-size:1rem!important}html[data-netbox-color-mode=dark] .fst-italic{font-style:italic!important}html[data-netbox-color-mode=dark] .fst-normal{font-style:normal!important}html[data-netbox-color-mode=dark] .fw-light{font-weight:300!important}html[data-netbox-color-mode=dark] .fw-lighter{font-weight:200!important}html[data-netbox-color-mode=dark] .fw-normal{font-weight:400!important}html[data-netbox-color-mode=dark] .fw-bold{font-weight:700!important}html[data-netbox-color-mode=dark] .fw-bolder{font-weight:800!important}html[data-netbox-color-mode=dark] .lh-1{line-height:1!important}html[data-netbox-color-mode=dark] .lh-sm{line-height:1.25!important}html[data-netbox-color-mode=dark] .lh-base{line-height:1.5!important}html[data-netbox-color-mode=dark] .lh-lg{line-height:1.75!important}html[data-netbox-color-mode=dark] .text-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-center{text-align:center!important}html[data-netbox-color-mode=dark] .text-decoration-none{text-decoration:none!important}html[data-netbox-color-mode=dark] .text-decoration-underline{text-decoration:underline!important}html[data-netbox-color-mode=dark] .text-decoration-line-through{text-decoration:line-through!important}html[data-netbox-color-mode=dark] .text-lowercase{text-transform:lowercase!important}html[data-netbox-color-mode=dark] .text-uppercase{text-transform:uppercase!important}html[data-netbox-color-mode=dark] .text-capitalize{text-transform:capitalize!important}html[data-netbox-color-mode=dark] .text-wrap{white-space:normal!important}html[data-netbox-color-mode=dark] .text-nowrap{white-space:nowrap!important}html[data-netbox-color-mode=dark] .text-break{word-wrap:break-word!important;word-break:break-word!important}html[data-netbox-color-mode=dark] .text-primary{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-secondary{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-success{color:#75b798!important}html[data-netbox-color-mode=dark] .text-info{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-warning{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-danger{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-light{color:#dee2e6!important}html[data-netbox-color-mode=dark] .text-dark{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-red{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-yellow{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-green{color:#75b798!important}html[data-netbox-color-mode=dark] .text-blue{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-cyan{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-indigo{color:#a370f7!important}html[data-netbox-color-mode=dark] .text-purple{color:#a98eda!important}html[data-netbox-color-mode=dark] .text-pink{color:#e685b5!important}html[data-netbox-color-mode=dark] .text-darker{color:#1b1f22!important}html[data-netbox-color-mode=dark] .text-darkest{color:#171b1d!important}html[data-netbox-color-mode=dark] .text-gray{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-gray-100{color:#f8f9fa!important}html[data-netbox-color-mode=dark] .text-gray-200{color:#e9ecef!important}html[data-netbox-color-mode=dark] .text-gray-300{color:#dee2e6!important}html[data-netbox-color-mode=dark] .text-gray-400{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-gray-500{color:#adb5bd!important}html[data-netbox-color-mode=dark] .text-gray-600{color:#6c757d!important}html[data-netbox-color-mode=dark] .text-gray-700{color:#495057!important}html[data-netbox-color-mode=dark] .text-gray-800{color:#343a40!important}html[data-netbox-color-mode=dark] .text-gray-900{color:#212529!important}html[data-netbox-color-mode=dark] .text-red-100{color:#f8d7da!important}html[data-netbox-color-mode=dark] .text-red-200{color:#f1aeb5!important}html[data-netbox-color-mode=dark] .text-red-300{color:#ea868f!important}html[data-netbox-color-mode=dark] .text-red-400{color:#e35d6a!important}html[data-netbox-color-mode=dark] .text-red-500{color:#dc3545!important}html[data-netbox-color-mode=dark] .text-red-600{color:#b02a37!important}html[data-netbox-color-mode=dark] .text-red-700{color:#842029!important}html[data-netbox-color-mode=dark] .text-red-800{color:#58151c!important}html[data-netbox-color-mode=dark] .text-red-900{color:#2c0b0e!important}html[data-netbox-color-mode=dark] .text-yellow-100{color:#fff3cd!important}html[data-netbox-color-mode=dark] .text-yellow-200{color:#ffe69c!important}html[data-netbox-color-mode=dark] .text-yellow-300{color:#ffda6a!important}html[data-netbox-color-mode=dark] .text-yellow-400{color:#ffcd39!important}html[data-netbox-color-mode=dark] .text-yellow-500{color:#ffc107!important}html[data-netbox-color-mode=dark] .text-yellow-600{color:#cc9a06!important}html[data-netbox-color-mode=dark] .text-yellow-700{color:#997404!important}html[data-netbox-color-mode=dark] .text-yellow-800{color:#664d03!important}html[data-netbox-color-mode=dark] .text-yellow-900{color:#332701!important}html[data-netbox-color-mode=dark] .text-green-100{color:#d1e7dd!important}html[data-netbox-color-mode=dark] .text-green-200{color:#a3cfbb!important}html[data-netbox-color-mode=dark] .text-green-300{color:#75b798!important}html[data-netbox-color-mode=dark] .text-green-400{color:#479f76!important}html[data-netbox-color-mode=dark] .text-green-500{color:#198754!important}html[data-netbox-color-mode=dark] .text-green-600{color:#146c43!important}html[data-netbox-color-mode=dark] .text-green-700{color:#0f5132!important}html[data-netbox-color-mode=dark] .text-green-800{color:#0a3622!important}html[data-netbox-color-mode=dark] .text-green-900{color:#051b11!important}html[data-netbox-color-mode=dark] .text-blue-100{color:#cfe2ff!important}html[data-netbox-color-mode=dark] .text-blue-200{color:#9ec5fe!important}html[data-netbox-color-mode=dark] .text-blue-300{color:#6ea8fe!important}html[data-netbox-color-mode=dark] .text-blue-400{color:#3d8bfd!important}html[data-netbox-color-mode=dark] .text-blue-500{color:#0d6efd!important}html[data-netbox-color-mode=dark] .text-blue-600{color:#0a58ca!important}html[data-netbox-color-mode=dark] .text-blue-700{color:#084298!important}html[data-netbox-color-mode=dark] .text-blue-800{color:#052c65!important}html[data-netbox-color-mode=dark] .text-blue-900{color:#031633!important}html[data-netbox-color-mode=dark] .text-cyan-100{color:#cff4fc!important}html[data-netbox-color-mode=dark] .text-cyan-200{color:#9eeaf9!important}html[data-netbox-color-mode=dark] .text-cyan-300{color:#6edff6!important}html[data-netbox-color-mode=dark] .text-cyan-400{color:#3dd5f3!important}html[data-netbox-color-mode=dark] .text-cyan-500{color:#0dcaf0!important}html[data-netbox-color-mode=dark] .text-cyan-600{color:#0aa2c0!important}html[data-netbox-color-mode=dark] .text-cyan-700{color:#087990!important}html[data-netbox-color-mode=dark] .text-cyan-800{color:#055160!important}html[data-netbox-color-mode=dark] .text-cyan-900{color:#032830!important}html[data-netbox-color-mode=dark] .text-indigo-100{color:#e0cffc!important}html[data-netbox-color-mode=dark] .text-indigo-200{color:#c29ffa!important}html[data-netbox-color-mode=dark] .text-indigo-300{color:#a370f7!important}html[data-netbox-color-mode=dark] .text-indigo-400{color:#8540f5!important}html[data-netbox-color-mode=dark] .text-indigo-500{color:#6610f2!important}html[data-netbox-color-mode=dark] .text-indigo-600{color:#520dc2!important}html[data-netbox-color-mode=dark] .text-indigo-700{color:#3d0a91!important}html[data-netbox-color-mode=dark] .text-indigo-800{color:#290661!important}html[data-netbox-color-mode=dark] .text-indigo-900{color:#140330!important}html[data-netbox-color-mode=dark] .text-purple-100{color:#e2d9f3!important}html[data-netbox-color-mode=dark] .text-purple-200{color:#c5b3e6!important}html[data-netbox-color-mode=dark] .text-purple-300{color:#a98eda!important}html[data-netbox-color-mode=dark] .text-purple-400{color:#8c68cd!important}html[data-netbox-color-mode=dark] .text-purple-500{color:#6f42c1!important}html[data-netbox-color-mode=dark] .text-purple-600{color:#59359a!important}html[data-netbox-color-mode=dark] .text-purple-700{color:#432874!important}html[data-netbox-color-mode=dark] .text-purple-800{color:#2c1a4d!important}html[data-netbox-color-mode=dark] .text-purple-900{color:#160d27!important}html[data-netbox-color-mode=dark] .text-pink-100{color:#f7d6e6!important}html[data-netbox-color-mode=dark] .text-pink-200{color:#efadce!important}html[data-netbox-color-mode=dark] .text-pink-300{color:#e685b5!important}html[data-netbox-color-mode=dark] .text-pink-400{color:#de5c9d!important}html[data-netbox-color-mode=dark] .text-pink-500{color:#d63384!important}html[data-netbox-color-mode=dark] .text-pink-600{color:#ab296a!important}html[data-netbox-color-mode=dark] .text-pink-700{color:#801f4f!important}html[data-netbox-color-mode=dark] .text-pink-800{color:#561435!important}html[data-netbox-color-mode=dark] .text-pink-900{color:#2b0a1a!important}html[data-netbox-color-mode=dark] .text-white{color:#fff!important}html[data-netbox-color-mode=dark] .text-body{color:#fff!important}html[data-netbox-color-mode=dark] .text-muted{color:#ced4da!important}html[data-netbox-color-mode=dark] .text-black-50{color:#00000080!important}html[data-netbox-color-mode=dark] .text-white-50{color:#ffffff80!important}html[data-netbox-color-mode=dark] .text-reset{color:inherit!important}html[data-netbox-color-mode=dark] .bg-primary{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-secondary{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-success{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-info{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-warning{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-danger{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-light{background-color:#dee2e6!important}html[data-netbox-color-mode=dark] .bg-dark{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-red{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-yellow{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-green{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-blue{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-cyan{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-indigo{background-color:#a370f7!important}html[data-netbox-color-mode=dark] .bg-purple{background-color:#a98eda!important}html[data-netbox-color-mode=dark] .bg-pink{background-color:#e685b5!important}html[data-netbox-color-mode=dark] .bg-darker{background-color:#1b1f22!important}html[data-netbox-color-mode=dark] .bg-darkest{background-color:#171b1d!important}html[data-netbox-color-mode=dark] .bg-gray{background-color:#ced4da!important}html[data-netbox-color-mode=dark] .bg-gray-100{background-color:#f8f9fa!important}html[data-netbox-color-mode=dark] .bg-gray-200{background-color:#e9ecef!important}html[data-netbox-color-mode=dark] .bg-gray-300{background-color:#dee2e6!important}html[data-netbox-color-mode=dark] .bg-gray-400{background-color:#ced4da!important}html[data-netbox-color-mode=dark] .bg-gray-500{background-color:#adb5bd!important}html[data-netbox-color-mode=dark] .bg-gray-600{background-color:#6c757d!important}html[data-netbox-color-mode=dark] .bg-gray-700{background-color:#495057!important}html[data-netbox-color-mode=dark] .bg-gray-800{background-color:#343a40!important}html[data-netbox-color-mode=dark] .bg-gray-900{background-color:#212529!important}html[data-netbox-color-mode=dark] .bg-red-100{background-color:#f8d7da!important}html[data-netbox-color-mode=dark] .bg-red-200{background-color:#f1aeb5!important}html[data-netbox-color-mode=dark] .bg-red-300{background-color:#ea868f!important}html[data-netbox-color-mode=dark] .bg-red-400{background-color:#e35d6a!important}html[data-netbox-color-mode=dark] .bg-red-500{background-color:#dc3545!important}html[data-netbox-color-mode=dark] .bg-red-600{background-color:#b02a37!important}html[data-netbox-color-mode=dark] .bg-red-700{background-color:#842029!important}html[data-netbox-color-mode=dark] .bg-red-800{background-color:#58151c!important}html[data-netbox-color-mode=dark] .bg-red-900{background-color:#2c0b0e!important}html[data-netbox-color-mode=dark] .bg-yellow-100{background-color:#fff3cd!important}html[data-netbox-color-mode=dark] .bg-yellow-200{background-color:#ffe69c!important}html[data-netbox-color-mode=dark] .bg-yellow-300{background-color:#ffda6a!important}html[data-netbox-color-mode=dark] .bg-yellow-400{background-color:#ffcd39!important}html[data-netbox-color-mode=dark] .bg-yellow-500{background-color:#ffc107!important}html[data-netbox-color-mode=dark] .bg-yellow-600{background-color:#cc9a06!important}html[data-netbox-color-mode=dark] .bg-yellow-700{background-color:#997404!important}html[data-netbox-color-mode=dark] .bg-yellow-800{background-color:#664d03!important}html[data-netbox-color-mode=dark] .bg-yellow-900{background-color:#332701!important}html[data-netbox-color-mode=dark] .bg-green-100{background-color:#d1e7dd!important}html[data-netbox-color-mode=dark] .bg-green-200{background-color:#a3cfbb!important}html[data-netbox-color-mode=dark] .bg-green-300{background-color:#75b798!important}html[data-netbox-color-mode=dark] .bg-green-400{background-color:#479f76!important}html[data-netbox-color-mode=dark] .bg-green-500{background-color:#198754!important}html[data-netbox-color-mode=dark] .bg-green-600{background-color:#146c43!important}html[data-netbox-color-mode=dark] .bg-green-700{background-color:#0f5132!important}html[data-netbox-color-mode=dark] .bg-green-800{background-color:#0a3622!important}html[data-netbox-color-mode=dark] .bg-green-900{background-color:#051b11!important}html[data-netbox-color-mode=dark] .bg-blue-100{background-color:#cfe2ff!important}html[data-netbox-color-mode=dark] .bg-blue-200{background-color:#9ec5fe!important}html[data-netbox-color-mode=dark] .bg-blue-300{background-color:#6ea8fe!important}html[data-netbox-color-mode=dark] .bg-blue-400{background-color:#3d8bfd!important}html[data-netbox-color-mode=dark] .bg-blue-500{background-color:#0d6efd!important}html[data-netbox-color-mode=dark] .bg-blue-600{background-color:#0a58ca!important}html[data-netbox-color-mode=dark] .bg-blue-700{background-color:#084298!important}html[data-netbox-color-mode=dark] .bg-blue-800{background-color:#052c65!important}html[data-netbox-color-mode=dark] .bg-blue-900{background-color:#031633!important}html[data-netbox-color-mode=dark] .bg-cyan-100{background-color:#cff4fc!important}html[data-netbox-color-mode=dark] .bg-cyan-200{background-color:#9eeaf9!important}html[data-netbox-color-mode=dark] .bg-cyan-300{background-color:#6edff6!important}html[data-netbox-color-mode=dark] .bg-cyan-400{background-color:#3dd5f3!important}html[data-netbox-color-mode=dark] .bg-cyan-500{background-color:#0dcaf0!important}html[data-netbox-color-mode=dark] .bg-cyan-600{background-color:#0aa2c0!important}html[data-netbox-color-mode=dark] .bg-cyan-700{background-color:#087990!important}html[data-netbox-color-mode=dark] .bg-cyan-800{background-color:#055160!important}html[data-netbox-color-mode=dark] .bg-cyan-900{background-color:#032830!important}html[data-netbox-color-mode=dark] .bg-indigo-100{background-color:#e0cffc!important}html[data-netbox-color-mode=dark] .bg-indigo-200{background-color:#c29ffa!important}html[data-netbox-color-mode=dark] .bg-indigo-300{background-color:#a370f7!important}html[data-netbox-color-mode=dark] .bg-indigo-400{background-color:#8540f5!important}html[data-netbox-color-mode=dark] .bg-indigo-500{background-color:#6610f2!important}html[data-netbox-color-mode=dark] .bg-indigo-600{background-color:#520dc2!important}html[data-netbox-color-mode=dark] .bg-indigo-700{background-color:#3d0a91!important}html[data-netbox-color-mode=dark] .bg-indigo-800{background-color:#290661!important}html[data-netbox-color-mode=dark] .bg-indigo-900{background-color:#140330!important}html[data-netbox-color-mode=dark] .bg-purple-100{background-color:#e2d9f3!important}html[data-netbox-color-mode=dark] .bg-purple-200{background-color:#c5b3e6!important}html[data-netbox-color-mode=dark] .bg-purple-300{background-color:#a98eda!important}html[data-netbox-color-mode=dark] .bg-purple-400{background-color:#8c68cd!important}html[data-netbox-color-mode=dark] .bg-purple-500{background-color:#6f42c1!important}html[data-netbox-color-mode=dark] .bg-purple-600{background-color:#59359a!important}html[data-netbox-color-mode=dark] .bg-purple-700{background-color:#432874!important}html[data-netbox-color-mode=dark] .bg-purple-800{background-color:#2c1a4d!important}html[data-netbox-color-mode=dark] .bg-purple-900{background-color:#160d27!important}html[data-netbox-color-mode=dark] .bg-pink-100{background-color:#f7d6e6!important}html[data-netbox-color-mode=dark] .bg-pink-200{background-color:#efadce!important}html[data-netbox-color-mode=dark] .bg-pink-300{background-color:#e685b5!important}html[data-netbox-color-mode=dark] .bg-pink-400{background-color:#de5c9d!important}html[data-netbox-color-mode=dark] .bg-pink-500{background-color:#d63384!important}html[data-netbox-color-mode=dark] .bg-pink-600{background-color:#ab296a!important}html[data-netbox-color-mode=dark] .bg-pink-700{background-color:#801f4f!important}html[data-netbox-color-mode=dark] .bg-pink-800{background-color:#561435!important}html[data-netbox-color-mode=dark] .bg-pink-900{background-color:#2b0a1a!important}html[data-netbox-color-mode=dark] .bg-body{background-color:#1b1f22!important}html[data-netbox-color-mode=dark] .bg-white{background-color:#fff!important}html[data-netbox-color-mode=dark] .bg-transparent{background-color:transparent!important}html[data-netbox-color-mode=dark] .bg-gradient{background-image:var(--bs-gradient)!important}html[data-netbox-color-mode=dark] .user-select-all{user-select:all!important}html[data-netbox-color-mode=dark] .user-select-auto{user-select:auto!important}html[data-netbox-color-mode=dark] .user-select-none{user-select:none!important}html[data-netbox-color-mode=dark] .pe-none{pointer-events:none!important}html[data-netbox-color-mode=dark] .pe-auto{pointer-events:auto!important}html[data-netbox-color-mode=dark] .rounded{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-0{border-radius:0!important}html[data-netbox-color-mode=dark] .rounded-1{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-2{border-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-3{border-radius:.75rem!important}html[data-netbox-color-mode=dark] .rounded-circle{border-radius:50%!important}html[data-netbox-color-mode=dark] .rounded-pill{border-radius:50rem!important}html[data-netbox-color-mode=dark] .rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}html[data-netbox-color-mode=dark] .rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}html[data-netbox-color-mode=dark] .visible{visibility:visible!important}html[data-netbox-color-mode=dark] .invisible{visibility:hidden!important}@media (min-width: 576px){html[data-netbox-color-mode=dark] .float-sm-start{float:left!important}html[data-netbox-color-mode=dark] .float-sm-end{float:right!important}html[data-netbox-color-mode=dark] .float-sm-none{float:none!important}html[data-netbox-color-mode=dark] .d-sm-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-sm-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-sm-block{display:block!important}html[data-netbox-color-mode=dark] .d-sm-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-sm-table{display:table!important}html[data-netbox-color-mode=dark] .d-sm-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-sm-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-sm-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-sm-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-sm-none{display:none!important}html[data-netbox-color-mode=dark] .flex-sm-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-sm-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-sm-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-sm-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-sm-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-sm-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-sm-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-sm-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-sm-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-sm-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-sm-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-sm-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-sm-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-sm-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-sm-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-sm-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-sm-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-sm-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-sm-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-sm-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-sm-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-sm-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-sm-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-sm-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-sm-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-sm-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-sm-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-sm-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-sm-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-sm-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-sm-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-sm-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-sm-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-sm-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-sm-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-sm-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-sm-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-sm-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-sm-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-sm-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-sm-first{order:-1!important}html[data-netbox-color-mode=dark] .order-sm-0{order:0!important}html[data-netbox-color-mode=dark] .order-sm-1{order:1!important}html[data-netbox-color-mode=dark] .order-sm-2{order:2!important}html[data-netbox-color-mode=dark] .order-sm-3{order:3!important}html[data-netbox-color-mode=dark] .order-sm-4{order:4!important}html[data-netbox-color-mode=dark] .order-sm-5{order:5!important}html[data-netbox-color-mode=dark] .order-sm-last{order:6!important}html[data-netbox-color-mode=dark] .m-sm-0{margin:0!important}html[data-netbox-color-mode=dark] .m-sm-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-sm-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-sm-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-sm-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-sm-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-sm-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-sm-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-sm-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-sm-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-sm-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-sm-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-sm-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-sm-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-sm-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-sm-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-sm-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-sm-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-sm-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-sm-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-sm-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-sm-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-sm-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-sm-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-sm-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-sm-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-sm-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-sm-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-sm-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-sm-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-sm-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-sm-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-sm-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-sm-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-sm-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-sm-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-sm-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-sm-0{padding:0!important}html[data-netbox-color-mode=dark] .p-sm-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-sm-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-sm-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-sm-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-sm-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-sm-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-sm-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-sm-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-sm-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-sm-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-sm-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-sm-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-sm-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-sm-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-sm-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-sm-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-sm-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-sm-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-sm-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-sm-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-sm-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-sm-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-sm-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-sm-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-sm-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-sm-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-sm-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-sm-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-sm-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-sm-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-sm-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-sm-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-sm-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-sm-center{text-align:center!important}}@media (min-width: 768px){html[data-netbox-color-mode=dark] .float-md-start{float:left!important}html[data-netbox-color-mode=dark] .float-md-end{float:right!important}html[data-netbox-color-mode=dark] .float-md-none{float:none!important}html[data-netbox-color-mode=dark] .d-md-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-md-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-md-block{display:block!important}html[data-netbox-color-mode=dark] .d-md-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-md-table{display:table!important}html[data-netbox-color-mode=dark] .d-md-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-md-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-md-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-md-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-md-none{display:none!important}html[data-netbox-color-mode=dark] .flex-md-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-md-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-md-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-md-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-md-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-md-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-md-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-md-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-md-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-md-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-md-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-md-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-md-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-md-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-md-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-md-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-md-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-md-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-md-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-md-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-md-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-md-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-md-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-md-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-md-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-md-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-md-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-md-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-md-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-md-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-md-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-md-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-md-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-md-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-md-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-md-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-md-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-md-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-md-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-md-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-md-first{order:-1!important}html[data-netbox-color-mode=dark] .order-md-0{order:0!important}html[data-netbox-color-mode=dark] .order-md-1{order:1!important}html[data-netbox-color-mode=dark] .order-md-2{order:2!important}html[data-netbox-color-mode=dark] .order-md-3{order:3!important}html[data-netbox-color-mode=dark] .order-md-4{order:4!important}html[data-netbox-color-mode=dark] .order-md-5{order:5!important}html[data-netbox-color-mode=dark] .order-md-last{order:6!important}html[data-netbox-color-mode=dark] .m-md-0{margin:0!important}html[data-netbox-color-mode=dark] .m-md-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-md-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-md-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-md-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-md-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-md-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-md-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-md-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-md-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-md-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-md-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-md-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-md-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-md-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-md-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-md-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-md-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-md-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-md-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-md-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-md-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-md-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-md-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-md-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-md-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-md-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-md-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-md-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-md-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-md-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-md-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-md-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-md-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-md-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-md-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-md-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-md-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-md-0{padding:0!important}html[data-netbox-color-mode=dark] .p-md-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-md-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-md-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-md-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-md-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-md-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-md-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-md-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-md-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-md-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-md-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-md-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-md-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-md-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-md-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-md-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-md-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-md-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-md-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-md-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-md-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-md-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-md-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-md-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-md-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-md-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-md-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-md-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-md-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-md-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-md-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-md-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-md-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-md-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-md-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-md-center{text-align:center!important}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .float-lg-start{float:left!important}html[data-netbox-color-mode=dark] .float-lg-end{float:right!important}html[data-netbox-color-mode=dark] .float-lg-none{float:none!important}html[data-netbox-color-mode=dark] .d-lg-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-lg-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-lg-block{display:block!important}html[data-netbox-color-mode=dark] .d-lg-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-lg-table{display:table!important}html[data-netbox-color-mode=dark] .d-lg-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-lg-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-lg-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-lg-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-lg-none{display:none!important}html[data-netbox-color-mode=dark] .flex-lg-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-lg-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-lg-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-lg-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-lg-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-lg-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-lg-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-lg-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-lg-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-lg-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-lg-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-lg-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-lg-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-lg-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-lg-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-lg-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-lg-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-lg-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-lg-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-lg-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-lg-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-lg-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-lg-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-lg-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-lg-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-lg-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-lg-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-lg-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-lg-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-lg-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-lg-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-lg-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-lg-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-lg-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-lg-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-lg-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-lg-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-lg-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-lg-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-lg-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-lg-first{order:-1!important}html[data-netbox-color-mode=dark] .order-lg-0{order:0!important}html[data-netbox-color-mode=dark] .order-lg-1{order:1!important}html[data-netbox-color-mode=dark] .order-lg-2{order:2!important}html[data-netbox-color-mode=dark] .order-lg-3{order:3!important}html[data-netbox-color-mode=dark] .order-lg-4{order:4!important}html[data-netbox-color-mode=dark] .order-lg-5{order:5!important}html[data-netbox-color-mode=dark] .order-lg-last{order:6!important}html[data-netbox-color-mode=dark] .m-lg-0{margin:0!important}html[data-netbox-color-mode=dark] .m-lg-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-lg-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-lg-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-lg-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-lg-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-lg-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-lg-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-lg-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-lg-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-lg-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-lg-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-lg-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-lg-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-lg-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-lg-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-lg-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-lg-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-lg-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-lg-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-lg-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-lg-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-lg-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-lg-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-lg-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-lg-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-lg-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-lg-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-lg-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-lg-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-lg-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-lg-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-lg-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-lg-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-lg-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-lg-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-lg-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-lg-0{padding:0!important}html[data-netbox-color-mode=dark] .p-lg-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-lg-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-lg-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-lg-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-lg-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-lg-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-lg-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-lg-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-lg-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-lg-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-lg-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-lg-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-lg-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-lg-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-lg-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-lg-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-lg-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-lg-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-lg-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-lg-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-lg-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-lg-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-lg-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-lg-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-lg-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-lg-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-lg-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-lg-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-lg-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-lg-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-lg-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-lg-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-lg-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-lg-center{text-align:center!important}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .float-xl-start{float:left!important}html[data-netbox-color-mode=dark] .float-xl-end{float:right!important}html[data-netbox-color-mode=dark] .float-xl-none{float:none!important}html[data-netbox-color-mode=dark] .d-xl-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-xl-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-xl-block{display:block!important}html[data-netbox-color-mode=dark] .d-xl-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-xl-table{display:table!important}html[data-netbox-color-mode=dark] .d-xl-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-xl-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-xl-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-xl-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-xl-none{display:none!important}html[data-netbox-color-mode=dark] .flex-xl-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-xl-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-xl-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-xl-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-xl-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-xl-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-xl-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-xl-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-xl-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-xl-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-xl-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-xl-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-xl-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-xl-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-xl-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-xl-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-xl-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-xl-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-xl-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-xl-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-xl-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-xl-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-xl-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-xl-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-xl-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-xl-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-xl-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-xl-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-xl-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-xl-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-xl-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-xl-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-xl-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-xl-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-xl-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-xl-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-xl-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-xl-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-xl-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-xl-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-xl-first{order:-1!important}html[data-netbox-color-mode=dark] .order-xl-0{order:0!important}html[data-netbox-color-mode=dark] .order-xl-1{order:1!important}html[data-netbox-color-mode=dark] .order-xl-2{order:2!important}html[data-netbox-color-mode=dark] .order-xl-3{order:3!important}html[data-netbox-color-mode=dark] .order-xl-4{order:4!important}html[data-netbox-color-mode=dark] .order-xl-5{order:5!important}html[data-netbox-color-mode=dark] .order-xl-last{order:6!important}html[data-netbox-color-mode=dark] .m-xl-0{margin:0!important}html[data-netbox-color-mode=dark] .m-xl-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-xl-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-xl-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-xl-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-xl-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-xl-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-xl-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-xl-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-xl-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-xl-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-xl-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-xl-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-xl-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-xl-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-xl-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-xl-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-xl-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-xl-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-xl-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-xl-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-xl-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-xl-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-xl-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-xl-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-xl-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-xl-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-xl-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-xl-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-xl-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-xl-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-xl-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-xl-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-xl-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-xl-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-xl-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-xl-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-xl-0{padding:0!important}html[data-netbox-color-mode=dark] .p-xl-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-xl-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-xl-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-xl-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-xl-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-xl-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-xl-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-xl-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-xl-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-xl-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-xl-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-xl-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-xl-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-xl-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-xl-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-xl-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-xl-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-xl-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-xl-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-xl-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-xl-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-xl-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-xl-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-xl-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-xl-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-xl-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-xl-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-xl-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-xl-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-xl-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-xl-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-xl-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-xl-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-xl-center{text-align:center!important}}@media (min-width: 1400px){html[data-netbox-color-mode=dark] .float-xxl-start{float:left!important}html[data-netbox-color-mode=dark] .float-xxl-end{float:right!important}html[data-netbox-color-mode=dark] .float-xxl-none{float:none!important}html[data-netbox-color-mode=dark] .d-xxl-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-xxl-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-xxl-block{display:block!important}html[data-netbox-color-mode=dark] .d-xxl-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-xxl-table{display:table!important}html[data-netbox-color-mode=dark] .d-xxl-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-xxl-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-xxl-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-xxl-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-xxl-none{display:none!important}html[data-netbox-color-mode=dark] .flex-xxl-fill{flex:1 1 auto!important}html[data-netbox-color-mode=dark] .flex-xxl-row{flex-direction:row!important}html[data-netbox-color-mode=dark] .flex-xxl-column{flex-direction:column!important}html[data-netbox-color-mode=dark] .flex-xxl-row-reverse{flex-direction:row-reverse!important}html[data-netbox-color-mode=dark] .flex-xxl-column-reverse{flex-direction:column-reverse!important}html[data-netbox-color-mode=dark] .flex-xxl-grow-0{flex-grow:0!important}html[data-netbox-color-mode=dark] .flex-xxl-grow-1{flex-grow:1!important}html[data-netbox-color-mode=dark] .flex-xxl-shrink-0{flex-shrink:0!important}html[data-netbox-color-mode=dark] .flex-xxl-shrink-1{flex-shrink:1!important}html[data-netbox-color-mode=dark] .flex-xxl-wrap{flex-wrap:wrap!important}html[data-netbox-color-mode=dark] .flex-xxl-nowrap{flex-wrap:nowrap!important}html[data-netbox-color-mode=dark] .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}html[data-netbox-color-mode=dark] .gap-xxl-0{gap:0!important}html[data-netbox-color-mode=dark] .gap-xxl-1{gap:.25rem!important}html[data-netbox-color-mode=dark] .gap-xxl-2{gap:.5rem!important}html[data-netbox-color-mode=dark] .gap-xxl-3{gap:1rem!important}html[data-netbox-color-mode=dark] .gap-xxl-4{gap:1.5rem!important}html[data-netbox-color-mode=dark] .gap-xxl-5{gap:3rem!important}html[data-netbox-color-mode=dark] .justify-content-xxl-start{justify-content:flex-start!important}html[data-netbox-color-mode=dark] .justify-content-xxl-end{justify-content:flex-end!important}html[data-netbox-color-mode=dark] .justify-content-xxl-center{justify-content:center!important}html[data-netbox-color-mode=dark] .justify-content-xxl-between{justify-content:space-between!important}html[data-netbox-color-mode=dark] .justify-content-xxl-around{justify-content:space-around!important}html[data-netbox-color-mode=dark] .justify-content-xxl-evenly{justify-content:space-evenly!important}html[data-netbox-color-mode=dark] .align-items-xxl-start{align-items:flex-start!important}html[data-netbox-color-mode=dark] .align-items-xxl-end{align-items:flex-end!important}html[data-netbox-color-mode=dark] .align-items-xxl-center{align-items:center!important}html[data-netbox-color-mode=dark] .align-items-xxl-baseline{align-items:baseline!important}html[data-netbox-color-mode=dark] .align-items-xxl-stretch{align-items:stretch!important}html[data-netbox-color-mode=dark] .align-content-xxl-start{align-content:flex-start!important}html[data-netbox-color-mode=dark] .align-content-xxl-end{align-content:flex-end!important}html[data-netbox-color-mode=dark] .align-content-xxl-center{align-content:center!important}html[data-netbox-color-mode=dark] .align-content-xxl-between{align-content:space-between!important}html[data-netbox-color-mode=dark] .align-content-xxl-around{align-content:space-around!important}html[data-netbox-color-mode=dark] .align-content-xxl-stretch{align-content:stretch!important}html[data-netbox-color-mode=dark] .align-self-xxl-auto{align-self:auto!important}html[data-netbox-color-mode=dark] .align-self-xxl-start{align-self:flex-start!important}html[data-netbox-color-mode=dark] .align-self-xxl-end{align-self:flex-end!important}html[data-netbox-color-mode=dark] .align-self-xxl-center{align-self:center!important}html[data-netbox-color-mode=dark] .align-self-xxl-baseline{align-self:baseline!important}html[data-netbox-color-mode=dark] .align-self-xxl-stretch{align-self:stretch!important}html[data-netbox-color-mode=dark] .order-xxl-first{order:-1!important}html[data-netbox-color-mode=dark] .order-xxl-0{order:0!important}html[data-netbox-color-mode=dark] .order-xxl-1{order:1!important}html[data-netbox-color-mode=dark] .order-xxl-2{order:2!important}html[data-netbox-color-mode=dark] .order-xxl-3{order:3!important}html[data-netbox-color-mode=dark] .order-xxl-4{order:4!important}html[data-netbox-color-mode=dark] .order-xxl-5{order:5!important}html[data-netbox-color-mode=dark] .order-xxl-last{order:6!important}html[data-netbox-color-mode=dark] .m-xxl-0{margin:0!important}html[data-netbox-color-mode=dark] .m-xxl-1{margin:.25rem!important}html[data-netbox-color-mode=dark] .m-xxl-2{margin:.5rem!important}html[data-netbox-color-mode=dark] .m-xxl-3{margin:1rem!important}html[data-netbox-color-mode=dark] .m-xxl-4{margin:1.5rem!important}html[data-netbox-color-mode=dark] .m-xxl-5{margin:3rem!important}html[data-netbox-color-mode=dark] .m-xxl-auto{margin:auto!important}html[data-netbox-color-mode=dark] .mx-xxl-0{margin-right:0!important;margin-left:0!important}html[data-netbox-color-mode=dark] .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}html[data-netbox-color-mode=dark] .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}html[data-netbox-color-mode=dark] .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}html[data-netbox-color-mode=dark] .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}html[data-netbox-color-mode=dark] .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}html[data-netbox-color-mode=dark] .my-xxl-0{margin-top:0!important;margin-bottom:0!important}html[data-netbox-color-mode=dark] .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}html[data-netbox-color-mode=dark] .mt-xxl-0{margin-top:0!important}html[data-netbox-color-mode=dark] .mt-xxl-1{margin-top:.25rem!important}html[data-netbox-color-mode=dark] .mt-xxl-2{margin-top:.5rem!important}html[data-netbox-color-mode=dark] .mt-xxl-3{margin-top:1rem!important}html[data-netbox-color-mode=dark] .mt-xxl-4{margin-top:1.5rem!important}html[data-netbox-color-mode=dark] .mt-xxl-5{margin-top:3rem!important}html[data-netbox-color-mode=dark] .mt-xxl-auto{margin-top:auto!important}html[data-netbox-color-mode=dark] .me-xxl-0{margin-right:0!important}html[data-netbox-color-mode=dark] .me-xxl-1{margin-right:.25rem!important}html[data-netbox-color-mode=dark] .me-xxl-2{margin-right:.5rem!important}html[data-netbox-color-mode=dark] .me-xxl-3{margin-right:1rem!important}html[data-netbox-color-mode=dark] .me-xxl-4{margin-right:1.5rem!important}html[data-netbox-color-mode=dark] .me-xxl-5{margin-right:3rem!important}html[data-netbox-color-mode=dark] .me-xxl-auto{margin-right:auto!important}html[data-netbox-color-mode=dark] .mb-xxl-0{margin-bottom:0!important}html[data-netbox-color-mode=dark] .mb-xxl-1{margin-bottom:.25rem!important}html[data-netbox-color-mode=dark] .mb-xxl-2{margin-bottom:.5rem!important}html[data-netbox-color-mode=dark] .mb-xxl-3{margin-bottom:1rem!important}html[data-netbox-color-mode=dark] .mb-xxl-4{margin-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .mb-xxl-5{margin-bottom:3rem!important}html[data-netbox-color-mode=dark] .mb-xxl-auto{margin-bottom:auto!important}html[data-netbox-color-mode=dark] .ms-xxl-0{margin-left:0!important}html[data-netbox-color-mode=dark] .ms-xxl-1{margin-left:.25rem!important}html[data-netbox-color-mode=dark] .ms-xxl-2{margin-left:.5rem!important}html[data-netbox-color-mode=dark] .ms-xxl-3{margin-left:1rem!important}html[data-netbox-color-mode=dark] .ms-xxl-4{margin-left:1.5rem!important}html[data-netbox-color-mode=dark] .ms-xxl-5{margin-left:3rem!important}html[data-netbox-color-mode=dark] .ms-xxl-auto{margin-left:auto!important}html[data-netbox-color-mode=dark] .p-xxl-0{padding:0!important}html[data-netbox-color-mode=dark] .p-xxl-1{padding:.25rem!important}html[data-netbox-color-mode=dark] .p-xxl-2{padding:.5rem!important}html[data-netbox-color-mode=dark] .p-xxl-3{padding:1rem!important}html[data-netbox-color-mode=dark] .p-xxl-4{padding:1.5rem!important}html[data-netbox-color-mode=dark] .p-xxl-5{padding:3rem!important}html[data-netbox-color-mode=dark] .px-xxl-0{padding-right:0!important;padding-left:0!important}html[data-netbox-color-mode=dark] .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}html[data-netbox-color-mode=dark] .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}html[data-netbox-color-mode=dark] .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}html[data-netbox-color-mode=dark] .py-xxl-0{padding-top:0!important;padding-bottom:0!important}html[data-netbox-color-mode=dark] .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .pt-xxl-0{padding-top:0!important}html[data-netbox-color-mode=dark] .pt-xxl-1{padding-top:.25rem!important}html[data-netbox-color-mode=dark] .pt-xxl-2{padding-top:.5rem!important}html[data-netbox-color-mode=dark] .pt-xxl-3{padding-top:1rem!important}html[data-netbox-color-mode=dark] .pt-xxl-4{padding-top:1.5rem!important}html[data-netbox-color-mode=dark] .pt-xxl-5{padding-top:3rem!important}html[data-netbox-color-mode=dark] .pe-xxl-0{padding-right:0!important}html[data-netbox-color-mode=dark] .pe-xxl-1{padding-right:.25rem!important}html[data-netbox-color-mode=dark] .pe-xxl-2{padding-right:.5rem!important}html[data-netbox-color-mode=dark] .pe-xxl-3{padding-right:1rem!important}html[data-netbox-color-mode=dark] .pe-xxl-4{padding-right:1.5rem!important}html[data-netbox-color-mode=dark] .pe-xxl-5{padding-right:3rem!important}html[data-netbox-color-mode=dark] .pb-xxl-0{padding-bottom:0!important}html[data-netbox-color-mode=dark] .pb-xxl-1{padding-bottom:.25rem!important}html[data-netbox-color-mode=dark] .pb-xxl-2{padding-bottom:.5rem!important}html[data-netbox-color-mode=dark] .pb-xxl-3{padding-bottom:1rem!important}html[data-netbox-color-mode=dark] .pb-xxl-4{padding-bottom:1.5rem!important}html[data-netbox-color-mode=dark] .pb-xxl-5{padding-bottom:3rem!important}html[data-netbox-color-mode=dark] .ps-xxl-0{padding-left:0!important}html[data-netbox-color-mode=dark] .ps-xxl-1{padding-left:.25rem!important}html[data-netbox-color-mode=dark] .ps-xxl-2{padding-left:.5rem!important}html[data-netbox-color-mode=dark] .ps-xxl-3{padding-left:1rem!important}html[data-netbox-color-mode=dark] .ps-xxl-4{padding-left:1.5rem!important}html[data-netbox-color-mode=dark] .ps-xxl-5{padding-left:3rem!important}html[data-netbox-color-mode=dark] .text-xxl-start{text-align:left!important}html[data-netbox-color-mode=dark] .text-xxl-end{text-align:right!important}html[data-netbox-color-mode=dark] .text-xxl-center{text-align:center!important}}@media (min-width: 1200px){html[data-netbox-color-mode=dark] .fs-1{font-size:2.5rem!important}html[data-netbox-color-mode=dark] .fs-2{font-size:2rem!important}html[data-netbox-color-mode=dark] .fs-3{font-size:1.75rem!important}html[data-netbox-color-mode=dark] .fs-4{font-size:1.5rem!important}}@media print{html[data-netbox-color-mode=dark] .d-print-inline{display:inline!important}html[data-netbox-color-mode=dark] .d-print-inline-block{display:inline-block!important}html[data-netbox-color-mode=dark] .d-print-block{display:block!important}html[data-netbox-color-mode=dark] .d-print-grid{display:grid!important}html[data-netbox-color-mode=dark] .d-print-table{display:table!important}html[data-netbox-color-mode=dark] .d-print-table-row{display:table-row!important}html[data-netbox-color-mode=dark] .d-print-table-cell{display:table-cell!important}html[data-netbox-color-mode=dark] .d-print-flex{display:flex!important}html[data-netbox-color-mode=dark] .d-print-inline-flex{display:inline-flex!important}html[data-netbox-color-mode=dark] .d-print-none{display:none!important}}html[data-netbox-color-mode=dark] :root{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}html[data-netbox-color-mode=dark] .ss-main{position:relative;display:inline-block;user-select:none;color:#f8f9fa;width:100%}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-disabled{background-color:#495057;cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .ss-disabled{color:#adb5bd}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span{border:solid #f8f9fa;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled{background-color:#495057;cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#f8f9fa}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#adb5bd;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#6ea8fe;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#f8f9fa;position:relative;height:10px;width:2px;transition:transform .2s}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#f8f9fa;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}html[data-netbox-color-mode=dark] .ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #495057;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}html[data-netbox-color-mode=dark] .ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}html[data-netbox-color-mode=dark] .ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}html[data-netbox-color-mode=dark] .ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #495057;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}html[data-netbox-color-mode=dark] .ss-content .ss-search input::placeholder{color:#495057;vertical-align:middle}html[data-netbox-color-mode=dark] .ss-content .ss-search input:focus{box-shadow:0 0 5px #6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #495057;border-radius:.375rem;box-sizing:border-box}html[data-netbox-color-mode=dark] .ss-content .ss-addable{padding-top:0}html[data-netbox-color-mode=dark] .ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option *{display:inline-block}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#6ea8fe}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#adb5bd;background-color:#fff}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#f8f9fa;background-color:#6ea8fe1a}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-hide{display:none}html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}html[data-netbox-color-mode=dark] .ss-main{color:#f8f9fa}html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-multi-selected{border-color:#198754}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#212529;border:1px solid #495057}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected[disabled]{color:#adb5bd;background-color:#495057}html[data-netbox-color-mode=dark] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#ced4da}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .depth{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder{line-height:1.5}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add{margin:0 .75rem}html[data-netbox-color-mode=dark] .ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#fff;background-color:var(--nbx-select-option-selected-bg)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#adb5bd}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search{padding-right:.5rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search button{margin-left:.75rem}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]{color:#f8f9fa;background-color:#212529;border:1px solid #495057}html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html[data-netbox-color-mode=dark] .flatpickr-calendar{color:#fff;background:#343a40;border-radius:.375rem;box-shadow:1px 0 #495057,-1px 0 #495057,0 1px #495057,0 -1px #495057,0 3px 13px #00000014}html[data-netbox-color-mode=dark] .flatpickr-calendar.arrowTop:before,html[data-netbox-color-mode=dark] .flatpickr-calendar.arrowTop:after{border-bottom-color:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar span.flatpickr-weekday{color:#dee2e6}html[data-netbox-color-mode=dark] .flatpickr-calendar .numInputWrapper span.arrowUp:after{border-bottom-color:#f8f9fa}html[data-netbox-color-mode=dark] .flatpickr-calendar .numInputWrapper span.arrowDown:after{border-top-color:#f8f9fa}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-month{color:#fff;fill:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-next-month,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-prev-month{color:#fff;fill:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg{fill:#ea868f}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-months .flatpickr-current-month select{background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day{color:#fff}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.inRange,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange:focus,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.selected.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay{color:#000;background:#6ea8fe;border-color:#6ea8fe}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day:hover{color:#000;background:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.nextMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay{color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.prevMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.nextMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay:hover{color:#000;background:#adb5bd;border-color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input{color:#f8f9fa;background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input:hover,html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time input:active{background:#343a40}html[data-netbox-color-mode=dark] .flatpickr-calendar .flatpickr-time .flatpickr-time-separator{color:#adb5bd}html[data-netbox-color-mode=dark] .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{border-top:1px solid #495057}html[data-netbox-color-mode=dark] .sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #495057;transition:all .1s ease-in-out}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .sidenav{transform:translate(-3rem)}html[data-netbox-color-mode=dark] .sidenav+.content-container[class]{margin-left:0}html[data-netbox-color-mode=dark] .sidenav .profile-button-container[class]{display:block}}html[data-netbox-color-mode=dark] .sidenav .profile-button-container{display:none;padding:.5rem 1rem}html[data-netbox-color-mode=dark] .sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-brand{margin-right:0;transition:opacity .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-icon{transition:opacity .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sidenav .sidenav-inner{padding-right:0;padding-left:0}}html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}html[data-netbox-color-mode=dark] .sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}html[data-netbox-color-mode=dark] .sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .sidenav-toggle{position:absolute;display:inline-block;opacity:0;transition:opacity 10ms ease-in-out;transition-delay:.1s}html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse>*{min-width:100%}@media (min-width: 768px){html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse{margin-right:0;margin-left:0}}html[data-netbox-color-mode=dark] .sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}html[data-netbox-color-mode=dark] .sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}html[data-netbox-color-mode=dark] .sidenav .nav .nav-item.no-buttons{padding-right:5rem}html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#000;background:#6397e5}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#ced4da;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#000}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#6ea8fe;transform:rotate(90deg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item{margin-top:2px}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}@media (min-width: 1200px){html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}html[data-netbox-color-mode=dark] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav{max-width:16rem}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav{transform:translate(0)}}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-toggle{opacity:0;position:absolute;transition:unset;transition-delay:0ms}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand{display:block}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}@media (min-width: 992px){html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-toggle{position:relative;opacity:1}}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}html[data-netbox-color-mode=dark] body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}html[data-netbox-color-mode=dark] pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=dark] .small{font-size:smaller!important}html[data-netbox-color-mode=dark] a[type=button]{-webkit-appearance:unset!important}html[data-netbox-color-mode=dark] *[data-href]{cursor:pointer}html[data-netbox-color-mode=dark] .form-control:not([type=file]){font-size:inherit}html[data-netbox-color-mode=dark] .badge{font-size:.75rem}html[data-netbox-color-mode=dark] .text-xs{font-size:.75rem!important;line-height:1.25!important}html[data-netbox-color-mode=dark] .border-input{border:1px solid #495057!important}html[data-netbox-color-mode=dark] .ws-nowrap{white-space:nowrap!important}html[data-netbox-color-mode=dark] table tr .vertical-align,html[data-netbox-color-mode=dark] table td .vertical-align{vertical-align:middle}@media print{html[data-netbox-color-mode=dark] .noprint{display:none!important;visibility:hidden!important}}html[data-netbox-color-mode=dark] .printonly{display:none!important;visibility:hidden!important}@media print{html[data-netbox-color-mode=dark] .printonly{display:block!important;visibility:visible!important}}html[data-netbox-color-mode=dark] :root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #ced4da;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #dee2e6;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #6ea8fe;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}html[data-netbox-color-mode=dark] .bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-primary{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-primary:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=dark] .table-primary a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-primary .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-primary a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-primary,html[data-netbox-color-mode=dark] .toast.bg-primary,html[data-netbox-color-mode=dark] .toast-header.bg-primary,html[data-netbox-color-mode=dark] .progress-bar.bg-primary{color:#000}html[data-netbox-color-mode=dark] .bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=dark] .table-secondary a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-secondary .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-secondary a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-secondary,html[data-netbox-color-mode=dark] .toast.bg-secondary,html[data-netbox-color-mode=dark] .toast-header.bg-secondary,html[data-netbox-color-mode=dark] .progress-bar.bg-secondary{color:#000}html[data-netbox-color-mode=dark] .bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-success{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-success:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=dark] .table-success a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-success .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-success a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-success,html[data-netbox-color-mode=dark] .toast.bg-success,html[data-netbox-color-mode=dark] .toast-header.bg-success,html[data-netbox-color-mode=dark] .progress-bar.bg-success{color:#000}html[data-netbox-color-mode=dark] .bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-info{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-info:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=dark] .table-info a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-info .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-info a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-info,html[data-netbox-color-mode=dark] .toast.bg-info,html[data-netbox-color-mode=dark] .toast-header.bg-info,html[data-netbox-color-mode=dark] .progress-bar.bg-info{color:#000}html[data-netbox-color-mode=dark] .bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-warning{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-warning:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=dark] .table-warning a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-warning .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-warning a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-warning,html[data-netbox-color-mode=dark] .toast.bg-warning,html[data-netbox-color-mode=dark] .toast-header.bg-warning,html[data-netbox-color-mode=dark] .progress-bar.bg-warning{color:#000}html[data-netbox-color-mode=dark] .bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-danger{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-danger:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=dark] .table-danger a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-danger .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-danger a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-danger,html[data-netbox-color-mode=dark] .toast.bg-danger,html[data-netbox-color-mode=dark] .toast-header.bg-danger,html[data-netbox-color-mode=dark] .progress-bar.bg-danger{color:#000}html[data-netbox-color-mode=dark] .bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2d2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-light{color:#dee2e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-light:hover{background-color:#dee2e61f}html[data-netbox-color-mode=dark] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=dark] .table-light a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-light .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-light a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .badge.bg-light,html[data-netbox-color-mode=dark] .toast.bg-light,html[data-netbox-color-mode=dark] .toast-header.bg-light,html[data-netbox-color-mode=dark] .progress-bar.bg-light{color:#000}html[data-netbox-color-mode=dark] .bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-dark{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-dark:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=dark] .table-dark a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-dark .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-dark a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-dark,html[data-netbox-color-mode=dark] .toast.bg-dark,html[data-netbox-color-mode=dark] .toast-header.bg-dark,html[data-netbox-color-mode=dark] .progress-bar.bg-dark{color:#000}html[data-netbox-color-mode=dark] .bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-red:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=dark] .table-red a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-red,html[data-netbox-color-mode=dark] .toast.bg-red,html[data-netbox-color-mode=dark] .toast-header.bg-red,html[data-netbox-color-mode=dark] .progress-bar.bg-red{color:#000}html[data-netbox-color-mode=dark] .bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-yellow,html[data-netbox-color-mode=dark] .toast.bg-yellow,html[data-netbox-color-mode=dark] .toast-header.bg-yellow,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow{color:#000}html[data-netbox-color-mode=dark] .bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-green:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=dark] .table-green a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-green,html[data-netbox-color-mode=dark] .toast.bg-green,html[data-netbox-color-mode=dark] .toast-header.bg-green,html[data-netbox-color-mode=dark] .progress-bar.bg-green{color:#000}html[data-netbox-color-mode=dark] .bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=dark] .table-blue a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-blue,html[data-netbox-color-mode=dark] .toast.bg-blue,html[data-netbox-color-mode=dark] .toast-header.bg-blue,html[data-netbox-color-mode=dark] .progress-bar.bg-blue{color:#000}html[data-netbox-color-mode=dark] .bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-cyan,html[data-netbox-color-mode=dark] .toast.bg-cyan,html[data-netbox-color-mode=dark] .toast-header.bg-cyan,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan{color:#000}html[data-netbox-color-mode=dark] .bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23211631'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo{color:#a370f7}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo:hover{background-color:#a370f71f}html[data-netbox-color-mode=dark] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .badge.bg-indigo,html[data-netbox-color-mode=dark] .toast.bg-indigo,html[data-netbox-color-mode=dark] .toast-header.bg-indigo,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo{color:#000}html[data-netbox-color-mode=dark] .bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23221c2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple{color:#a98eda}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple:hover{background-color:#a98eda1f}html[data-netbox-color-mode=dark] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=dark] .table-purple a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .badge.bg-purple,html[data-netbox-color-mode=dark] .toast.bg-purple,html[data-netbox-color-mode=dark] .toast-header.bg-purple,html[data-netbox-color-mode=dark] .progress-bar.bg-purple{color:#000}html[data-netbox-color-mode=dark] .bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e1b24'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink{color:#e685b5}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink:hover{background-color:#e685b51f}html[data-netbox-color-mode=dark] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=dark] .table-pink a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .badge.bg-pink,html[data-netbox-color-mode=dark] .toast.bg-pink,html[data-netbox-color-mode=dark] .toast-header.bg-pink,html[data-netbox-color-mode=dark] .progress-bar.bg-pink{color:#000}html[data-netbox-color-mode=dark] .bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1d2d3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-darker{color:#1b1f22}html[data-netbox-color-mode=dark] .btn.btn-ghost-darker:hover{background-color:#1b1f221f}html[data-netbox-color-mode=dark] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=dark] .table-darker a:not(.btn){font-weight:700;color:#d1d2d3}html[data-netbox-color-mode=dark] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darker .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-darker a:not(.btn){font-weight:700;color:#d1d2d3}html[data-netbox-color-mode=dark] .badge.bg-darker,html[data-netbox-color-mode=dark] .toast.bg-darker,html[data-netbox-color-mode=dark] .toast-header.bg-darker,html[data-netbox-color-mode=dark] .progress-bar.bg-darker{color:#fff}html[data-netbox-color-mode=dark] .bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1d1d2'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest{color:#171b1d}html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest:hover{background-color:#171b1d1f}html[data-netbox-color-mode=dark] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=dark] .table-darkest a:not(.btn){font-weight:700;color:#d1d1d2}html[data-netbox-color-mode=dark] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darkest .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-darkest a:not(.btn){font-weight:700;color:#d1d1d2}html[data-netbox-color-mode=dark] .badge.bg-darkest,html[data-netbox-color-mode=dark] .toast.bg-darkest,html[data-netbox-color-mode=dark] .toast-header.bg-darkest,html[data-netbox-color-mode=dark] .progress-bar.bg-darkest{color:#fff}html[data-netbox-color-mode=dark] .bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292a2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray{color:#ced4da}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray:hover{background-color:#ced4da1f}html[data-netbox-color-mode=dark] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=dark] .table-gray a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .badge.bg-gray,html[data-netbox-color-mode=dark] .toast.bg-gray,html[data-netbox-color-mode=dark] .toast-header.bg-gray,html[data-netbox-color-mode=dark] .progress-bar.bg-gray{color:#000}html[data-netbox-color-mode=dark] .bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323232'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100{color:#f8f9fa}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}html[data-netbox-color-mode=dark] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-100 a:not(.btn){font-weight:700;color:#323232}html[data-netbox-color-mode=dark] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-100 a:not(.btn){font-weight:700;color:#323232}html[data-netbox-color-mode=dark] .badge.bg-gray-100,html[data-netbox-color-mode=dark] .toast.bg-gray-100,html[data-netbox-color-mode=dark] .toast-header.bg-gray-100,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-100{color:#000}html[data-netbox-color-mode=dark] .bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f2f30'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200{color:#e9ecef}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}html[data-netbox-color-mode=dark] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-200 a:not(.btn){font-weight:700;color:#2f2f30}html[data-netbox-color-mode=dark] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-200 a:not(.btn){font-weight:700;color:#2f2f30}html[data-netbox-color-mode=dark] .badge.bg-gray-200,html[data-netbox-color-mode=dark] .toast.bg-gray-200,html[data-netbox-color-mode=dark] .toast-header.bg-gray-200,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-200{color:#000}html[data-netbox-color-mode=dark] .bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2d2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300{color:#dee2e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}html[data-netbox-color-mode=dark] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-300 a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-300 a:not(.btn){font-weight:700;color:#2c2d2e}html[data-netbox-color-mode=dark] .badge.bg-gray-300,html[data-netbox-color-mode=dark] .toast.bg-gray-300,html[data-netbox-color-mode=dark] .toast-header.bg-gray-300,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-300{color:#000}html[data-netbox-color-mode=dark] .bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292a2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400{color:#ced4da}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}html[data-netbox-color-mode=dark] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-400 a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-400 a:not(.btn){font-weight:700;color:#292a2c}html[data-netbox-color-mode=dark] .badge.bg-gray-400,html[data-netbox-color-mode=dark] .toast.bg-gray-400,html[data-netbox-color-mode=dark] .toast-header.bg-gray-400,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-400{color:#000}html[data-netbox-color-mode=dark] .bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232426'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500{color:#adb5bd}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}html[data-netbox-color-mode=dark] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-500 a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-500 a:not(.btn){font-weight:700;color:#232426}html[data-netbox-color-mode=dark] .badge.bg-gray-500,html[data-netbox-color-mode=dark] .toast.bg-gray-500,html[data-netbox-color-mode=dark] .toast-header.bg-gray-500,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-500{color:#000}html[data-netbox-color-mode=dark] .bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23161719'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600{color:#6c757d}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}html[data-netbox-color-mode=dark] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-600 a:not(.btn){font-weight:700;color:#161719}html[data-netbox-color-mode=dark] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-600 a:not(.btn){font-weight:700;color:#e2e3e5}html[data-netbox-color-mode=dark] .badge.bg-gray-600,html[data-netbox-color-mode=dark] .toast.bg-gray-600,html[data-netbox-color-mode=dark] .toast-header.bg-gray-600,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-600{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dbdcdd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700{color:#495057}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700:hover{background-color:#4950571f}html[data-netbox-color-mode=dark] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-700 a:not(.btn){font-weight:700;color:#dbdcdd}html[data-netbox-color-mode=dark] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-700 a:not(.btn){font-weight:700;color:#dbdcdd}html[data-netbox-color-mode=dark] .badge.bg-gray-700,html[data-netbox-color-mode=dark] .toast.bg-gray-700,html[data-netbox-color-mode=dark] .toast-header.bg-gray-700,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-700{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6d8d9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800{color:#343a40}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800:hover{background-color:#343a401f}html[data-netbox-color-mode=dark] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-800 a:not(.btn){font-weight:700;color:#d6d8d9}html[data-netbox-color-mode=dark] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-800 a:not(.btn){font-weight:700;color:#d6d8d9}html[data-netbox-color-mode=dark] .badge.bg-gray-800,html[data-netbox-color-mode=dark] .toast.bg-gray-800,html[data-netbox-color-mode=dark] .toast-header.bg-gray-800,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-800{color:#fff}html[data-netbox-color-mode=dark] .bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d3d3d4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900{color:#212529}html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900:hover{background-color:#2125291f}html[data-netbox-color-mode=dark] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-900 a:not(.btn){font-weight:700;color:#d3d3d4}html[data-netbox-color-mode=dark] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-gray-900 a:not(.btn){font-weight:700;color:#d3d3d4}html[data-netbox-color-mode=dark] .badge.bg-gray-900,html[data-netbox-color-mode=dark] .toast.bg-gray-900,html[data-netbox-color-mode=dark] .toast-header.bg-gray-900,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-900{color:#fff}html[data-netbox-color-mode=dark] .bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23322b2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100{color:#f8d7da}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}html[data-netbox-color-mode=dark] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-100 a:not(.btn){font-weight:700;color:#322b2c}html[data-netbox-color-mode=dark] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-100 a:not(.btn){font-weight:700;color:#322b2c}html[data-netbox-color-mode=dark] .badge.bg-red-100,html[data-netbox-color-mode=dark] .toast.bg-red-100,html[data-netbox-color-mode=dark] .toast-header.bg-red-100,html[data-netbox-color-mode=dark] .progress-bar.bg-red-100{color:#000}html[data-netbox-color-mode=dark] .bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23302324'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200{color:#f1aeb5}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}html[data-netbox-color-mode=dark] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-200 a:not(.btn){font-weight:700;color:#302324}html[data-netbox-color-mode=dark] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-200 a:not(.btn){font-weight:700;color:#302324}html[data-netbox-color-mode=dark] .badge.bg-red-200,html[data-netbox-color-mode=dark] .toast.bg-red-200,html[data-netbox-color-mode=dark] .toast-header.bg-red-200,html[data-netbox-color-mode=dark] .progress-bar.bg-red-200{color:#000}html[data-netbox-color-mode=dark] .bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f1b1d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300{color:#ea868f}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300:hover{background-color:#ea868f1f}html[data-netbox-color-mode=dark] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-300 a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-300 a:not(.btn){font-weight:700;color:#2f1b1d}html[data-netbox-color-mode=dark] .badge.bg-red-300,html[data-netbox-color-mode=dark] .toast.bg-red-300,html[data-netbox-color-mode=dark] .toast-header.bg-red-300,html[data-netbox-color-mode=dark] .progress-bar.bg-red-300{color:#000}html[data-netbox-color-mode=dark] .bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d1315'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400{color:#e35d6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}html[data-netbox-color-mode=dark] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-400 a:not(.btn){font-weight:700;color:#2d1315}html[data-netbox-color-mode=dark] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-400 a:not(.btn){font-weight:700;color:#2d1315}html[data-netbox-color-mode=dark] .badge.bg-red-400,html[data-netbox-color-mode=dark] .toast.bg-red-400,html[data-netbox-color-mode=dark] .toast-header.bg-red-400,html[data-netbox-color-mode=dark] .progress-bar.bg-red-400{color:#000}html[data-netbox-color-mode=dark] .bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c0b0e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500{color:#dc3545}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500:hover{background-color:#dc35451f}html[data-netbox-color-mode=dark] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-500 a:not(.btn){font-weight:700;color:#2c0b0e}html[data-netbox-color-mode=dark] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-500 a:not(.btn){font-weight:700;color:#f8d7da}html[data-netbox-color-mode=dark] .badge.bg-red-500,html[data-netbox-color-mode=dark] .toast.bg-red-500,html[data-netbox-color-mode=dark] .toast-header.bg-red-500,html[data-netbox-color-mode=dark] .progress-bar.bg-red-500{color:#fff}html[data-netbox-color-mode=dark] .bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23efd4d7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600{color:#b02a37}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600:hover{background-color:#b02a371f}html[data-netbox-color-mode=dark] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-600 a:not(.btn){font-weight:700;color:#efd4d7}html[data-netbox-color-mode=dark] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-600 a:not(.btn){font-weight:700;color:#efd4d7}html[data-netbox-color-mode=dark] .badge.bg-red-600,html[data-netbox-color-mode=dark] .toast.bg-red-600,html[data-netbox-color-mode=dark] .toast-header.bg-red-600,html[data-netbox-color-mode=dark] .progress-bar.bg-red-600{color:#fff}html[data-netbox-color-mode=dark] .bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6d2d4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700{color:#842029}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700:hover{background-color:#8420291f}html[data-netbox-color-mode=dark] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-700 a:not(.btn){font-weight:700;color:#e6d2d4}html[data-netbox-color-mode=dark] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-700 a:not(.btn){font-weight:700;color:#e6d2d4}html[data-netbox-color-mode=dark] .badge.bg-red-700,html[data-netbox-color-mode=dark] .toast.bg-red-700,html[data-netbox-color-mode=dark] .toast-header.bg-red-700,html[data-netbox-color-mode=dark] .progress-bar.bg-red-700{color:#fff}html[data-netbox-color-mode=dark] .bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ded0d2'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800{color:#58151c}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800:hover{background-color:#58151c1f}html[data-netbox-color-mode=dark] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-800 a:not(.btn){font-weight:700;color:#ded0d2}html[data-netbox-color-mode=dark] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-800 a:not(.btn){font-weight:700;color:#ded0d2}html[data-netbox-color-mode=dark] .badge.bg-red-800,html[data-netbox-color-mode=dark] .toast.bg-red-800,html[data-netbox-color-mode=dark] .toast-header.bg-red-800,html[data-netbox-color-mode=dark] .progress-bar.bg-red-800{color:#fff}html[data-netbox-color-mode=dark] .bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5cecf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900{color:#2c0b0e}html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}html[data-netbox-color-mode=dark] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-900 a:not(.btn){font-weight:700;color:#d5cecf}html[data-netbox-color-mode=dark] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-red-900 a:not(.btn){font-weight:700;color:#d5cecf}html[data-netbox-color-mode=dark] .badge.bg-red-900,html[data-netbox-color-mode=dark] .toast.bg-red-900,html[data-netbox-color-mode=dark] .toast-header.bg-red-900,html[data-netbox-color-mode=dark] .progress-bar.bg-red-900{color:#fff}html[data-netbox-color-mode=dark] .bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333129'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100{color:#fff3cd}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-100 a:not(.btn){font-weight:700;color:#333129}html[data-netbox-color-mode=dark] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#333129}html[data-netbox-color-mode=dark] .badge.bg-yellow-100,html[data-netbox-color-mode=dark] .toast.bg-yellow-100,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-100,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-100{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332e1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200{color:#ffe69c}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-200 a:not(.btn){font-weight:700;color:#332e1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#332e1f}html[data-netbox-color-mode=dark] .badge.bg-yellow-200,html[data-netbox-color-mode=dark] .toast.bg-yellow-200,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-200,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-200{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332c15'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300{color:#ffda6a}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}html[data-netbox-color-mode=dark] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-300 a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#332c15}html[data-netbox-color-mode=dark] .badge.bg-yellow-300,html[data-netbox-color-mode=dark] .toast.bg-yellow-300,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-300,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-300{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2333290b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400{color:#ffcd39}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}html[data-netbox-color-mode=dark] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-400 a:not(.btn){font-weight:700;color:#33290b}html[data-netbox-color-mode=dark] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#33290b}html[data-netbox-color-mode=dark] .badge.bg-yellow-400,html[data-netbox-color-mode=dark] .toast.bg-yellow-400,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-400,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-400{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23332701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500{color:#ffc107}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}html[data-netbox-color-mode=dark] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-500 a:not(.btn){font-weight:700;color:#332701}html[data-netbox-color-mode=dark] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#332701}html[data-netbox-color-mode=dark] .badge.bg-yellow-500,html[data-netbox-color-mode=dark] .toast.bg-yellow-500,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-500,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-500{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23291f01'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600{color:#cc9a06}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}html[data-netbox-color-mode=dark] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-600 a:not(.btn){font-weight:700;color:#291f01}html[data-netbox-color-mode=dark] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#291f01}html[data-netbox-color-mode=dark] .badge.bg-yellow-600,html[data-netbox-color-mode=dark] .toast.bg-yellow-600,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-600,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-600{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700{color:#997404}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700:hover{background-color:#9974041f}html[data-netbox-color-mode=dark] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-700 a:not(.btn){font-weight:700;color:#1f1701}html[data-netbox-color-mode=dark] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#1f1701}html[data-netbox-color-mode=dark] .badge.bg-yellow-700,html[data-netbox-color-mode=dark] .toast.bg-yellow-700,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-700,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-700{color:#000}html[data-netbox-color-mode=dark] .bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0dbcd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800{color:#664d03}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800:hover{background-color:#664d031f}html[data-netbox-color-mode=dark] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-800 a:not(.btn){font-weight:700;color:#e0dbcd}html[data-netbox-color-mode=dark] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#e0dbcd}html[data-netbox-color-mode=dark] .badge.bg-yellow-800,html[data-netbox-color-mode=dark] .toast.bg-yellow-800,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-800,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-800{color:#fff}html[data-netbox-color-mode=dark] .bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6d4cc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900{color:#332701}html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900:hover{background-color:#3327011f}html[data-netbox-color-mode=dark] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-900 a:not(.btn){font-weight:700;color:#d6d4cc}html[data-netbox-color-mode=dark] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#d6d4cc}html[data-netbox-color-mode=dark] .badge.bg-yellow-900,html[data-netbox-color-mode=dark] .toast.bg-yellow-900,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-900,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-900{color:#fff}html[data-netbox-color-mode=dark] .bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a2e2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100{color:#d1e7dd}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}html[data-netbox-color-mode=dark] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-100 a:not(.btn){font-weight:700;color:#2a2e2c}html[data-netbox-color-mode=dark] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-100 a:not(.btn){font-weight:700;color:#2a2e2c}html[data-netbox-color-mode=dark] .badge.bg-green-100,html[data-netbox-color-mode=dark] .toast.bg-green-100,html[data-netbox-color-mode=dark] .toast-header.bg-green-100,html[data-netbox-color-mode=dark] .progress-bar.bg-green-100{color:#000}html[data-netbox-color-mode=dark] .bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212925'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200{color:#a3cfbb}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}html[data-netbox-color-mode=dark] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-200 a:not(.btn){font-weight:700;color:#212925}html[data-netbox-color-mode=dark] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-200 a:not(.btn){font-weight:700;color:#212925}html[data-netbox-color-mode=dark] .badge.bg-green-200,html[data-netbox-color-mode=dark] .toast.bg-green-200,html[data-netbox-color-mode=dark] .toast-header.bg-green-200,html[data-netbox-color-mode=dark] .progress-bar.bg-green-200{color:#000}html[data-netbox-color-mode=dark] .bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317251e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300{color:#75b798}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300:hover{background-color:#75b7981f}html[data-netbox-color-mode=dark] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-300 a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-300 a:not(.btn){font-weight:700;color:#17251e}html[data-netbox-color-mode=dark] .badge.bg-green-300,html[data-netbox-color-mode=dark] .toast.bg-green-300,html[data-netbox-color-mode=dark] .toast-header.bg-green-300,html[data-netbox-color-mode=dark] .progress-bar.bg-green-300{color:#000}html[data-netbox-color-mode=dark] .bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e2018'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400{color:#479f76}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400:hover{background-color:#479f761f}html[data-netbox-color-mode=dark] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-400 a:not(.btn){font-weight:700;color:#0e2018}html[data-netbox-color-mode=dark] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-400 a:not(.btn){font-weight:700;color:#0e2018}html[data-netbox-color-mode=dark] .badge.bg-green-400,html[data-netbox-color-mode=dark] .toast.bg-green-400,html[data-netbox-color-mode=dark] .toast-header.bg-green-400,html[data-netbox-color-mode=dark] .progress-bar.bg-green-400{color:#000}html[data-netbox-color-mode=dark] .bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23051b11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500{color:#198754}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500:hover{background-color:#1987541f}html[data-netbox-color-mode=dark] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-500 a:not(.btn){font-weight:700;color:#051b11}html[data-netbox-color-mode=dark] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-500 a:not(.btn){font-weight:700;color:#d1e7dd}html[data-netbox-color-mode=dark] .badge.bg-green-500,html[data-netbox-color-mode=dark] .toast.bg-green-500,html[data-netbox-color-mode=dark] .toast-header.bg-green-500,html[data-netbox-color-mode=dark] .progress-bar.bg-green-500{color:#fff}html[data-netbox-color-mode=dark] .bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0e2d9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600{color:#146c43}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600:hover{background-color:#146c431f}html[data-netbox-color-mode=dark] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-600 a:not(.btn){font-weight:700;color:#d0e2d9}html[data-netbox-color-mode=dark] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-600 a:not(.btn){font-weight:700;color:#d0e2d9}html[data-netbox-color-mode=dark] .badge.bg-green-600,html[data-netbox-color-mode=dark] .toast.bg-green-600,html[data-netbox-color-mode=dark] .toast-header.bg-green-600,html[data-netbox-color-mode=dark] .progress-bar.bg-green-600{color:#fff}html[data-netbox-color-mode=dark] .bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cfdcd6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700{color:#0f5132}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700:hover{background-color:#0f51321f}html[data-netbox-color-mode=dark] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-700 a:not(.btn){font-weight:700;color:#cfdcd6}html[data-netbox-color-mode=dark] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-700 a:not(.btn){font-weight:700;color:#cfdcd6}html[data-netbox-color-mode=dark] .badge.bg-green-700,html[data-netbox-color-mode=dark] .toast.bg-green-700,html[data-netbox-color-mode=dark] .toast-header.bg-green-700,html[data-netbox-color-mode=dark] .progress-bar.bg-green-700{color:#fff}html[data-netbox-color-mode=dark] .bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced7d3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800{color:#0a3622}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800:hover{background-color:#0a36221f}html[data-netbox-color-mode=dark] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-800 a:not(.btn){font-weight:700;color:#ced7d3}html[data-netbox-color-mode=dark] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-800 a:not(.btn){font-weight:700;color:#ced7d3}html[data-netbox-color-mode=dark] .badge.bg-green-800,html[data-netbox-color-mode=dark] .toast.bg-green-800,html[data-netbox-color-mode=dark] .toast-header.bg-green-800,html[data-netbox-color-mode=dark] .progress-bar.bg-green-800{color:#fff}html[data-netbox-color-mode=dark] .bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd1cf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900{color:#051b11}html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900:hover{background-color:#051b111f}html[data-netbox-color-mode=dark] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-900 a:not(.btn){font-weight:700;color:#cdd1cf}html[data-netbox-color-mode=dark] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-green-900 a:not(.btn){font-weight:700;color:#cdd1cf}html[data-netbox-color-mode=dark] .badge.bg-green-900,html[data-netbox-color-mode=dark] .toast.bg-green-900,html[data-netbox-color-mode=dark] .toast-header.bg-green-900,html[data-netbox-color-mode=dark] .progress-bar.bg-green-900{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292d33'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100{color:#cfe2ff}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}html[data-netbox-color-mode=dark] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-100 a:not(.btn){font-weight:700;color:#292d33}html[data-netbox-color-mode=dark] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-100 a:not(.btn){font-weight:700;color:#292d33}html[data-netbox-color-mode=dark] .badge.bg-blue-100,html[data-netbox-color-mode=dark] .toast.bg-blue-100,html[data-netbox-color-mode=dark] .toast-header.bg-blue-100,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-100{color:#000}html[data-netbox-color-mode=dark] .bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202733'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200{color:#9ec5fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-200 a:not(.btn){font-weight:700;color:#202733}html[data-netbox-color-mode=dark] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-200 a:not(.btn){font-weight:700;color:#202733}html[data-netbox-color-mode=dark] .badge.bg-blue-200,html[data-netbox-color-mode=dark] .toast.bg-blue-200,html[data-netbox-color-mode=dark] .toast-header.bg-blue-200,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-200{color:#000}html[data-netbox-color-mode=dark] .bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162233'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300{color:#6ea8fe}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}html[data-netbox-color-mode=dark] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-300 a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-300 a:not(.btn){font-weight:700;color:#162233}html[data-netbox-color-mode=dark] .badge.bg-blue-300,html[data-netbox-color-mode=dark] .toast.bg-blue-300,html[data-netbox-color-mode=dark] .toast-header.bg-blue-300,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-300{color:#000}html[data-netbox-color-mode=dark] .bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c1c33'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400{color:#3d8bfd}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}html[data-netbox-color-mode=dark] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-400 a:not(.btn){font-weight:700;color:#0c1c33}html[data-netbox-color-mode=dark] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-400 a:not(.btn){font-weight:700;color:#0c1c33}html[data-netbox-color-mode=dark] .badge.bg-blue-400,html[data-netbox-color-mode=dark] .toast.bg-blue-400,html[data-netbox-color-mode=dark] .toast-header.bg-blue-400,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-400{color:#000}html[data-netbox-color-mode=dark] .bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031633'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500{color:#0d6efd}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}html[data-netbox-color-mode=dark] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-500 a:not(.btn){font-weight:700;color:#031633}html[data-netbox-color-mode=dark] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-500 a:not(.btn){font-weight:700;color:#cfe2ff}html[data-netbox-color-mode=dark] .badge.bg-blue-500,html[data-netbox-color-mode=dark] .toast.bg-blue-500,html[data-netbox-color-mode=dark] .toast-header.bg-blue-500,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-500{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cedef4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600{color:#0a58ca}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}html[data-netbox-color-mode=dark] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-600 a:not(.btn){font-weight:700;color:#cedef4}html[data-netbox-color-mode=dark] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-600 a:not(.btn){font-weight:700;color:#cedef4}html[data-netbox-color-mode=dark] .badge.bg-blue-600,html[data-netbox-color-mode=dark] .toast.bg-blue-600,html[data-netbox-color-mode=dark] .toast-header.bg-blue-600,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-600{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced9ea'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700{color:#084298}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700:hover{background-color:#0842981f}html[data-netbox-color-mode=dark] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-700 a:not(.btn){font-weight:700;color:#ced9ea}html[data-netbox-color-mode=dark] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-700 a:not(.btn){font-weight:700;color:#ced9ea}html[data-netbox-color-mode=dark] .badge.bg-blue-700,html[data-netbox-color-mode=dark] .toast.bg-blue-700,html[data-netbox-color-mode=dark] .toast-header.bg-blue-700,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-700{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd5e0'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800{color:#052c65}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800:hover{background-color:#052c651f}html[data-netbox-color-mode=dark] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-800 a:not(.btn){font-weight:700;color:#cdd5e0}html[data-netbox-color-mode=dark] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-800 a:not(.btn){font-weight:700;color:#cdd5e0}html[data-netbox-color-mode=dark] .badge.bg-blue-800,html[data-netbox-color-mode=dark] .toast.bg-blue-800,html[data-netbox-color-mode=dark] .toast-header.bg-blue-800,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-800{color:#fff}html[data-netbox-color-mode=dark] .bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd0d6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900{color:#031633}html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900:hover{background-color:#0316331f}html[data-netbox-color-mode=dark] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-900 a:not(.btn){font-weight:700;color:#cdd0d6}html[data-netbox-color-mode=dark] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-blue-900 a:not(.btn){font-weight:700;color:#cdd0d6}html[data-netbox-color-mode=dark] .badge.bg-blue-900,html[data-netbox-color-mode=dark] .toast.bg-blue-900,html[data-netbox-color-mode=dark] .toast-header.bg-blue-900,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-900{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23293132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100{color:#cff4fc}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}html[data-netbox-color-mode=dark] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-100 a:not(.btn){font-weight:700;color:#293132}html[data-netbox-color-mode=dark] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#293132}html[data-netbox-color-mode=dark] .badge.bg-cyan-100,html[data-netbox-color-mode=dark] .toast.bg-cyan-100,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-100,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-100{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202f32'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200{color:#9eeaf9}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}html[data-netbox-color-mode=dark] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-200 a:not(.btn){font-weight:700;color:#202f32}html[data-netbox-color-mode=dark] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#202f32}html[data-netbox-color-mode=dark] .badge.bg-cyan-200,html[data-netbox-color-mode=dark] .toast.bg-cyan-200,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-200,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-200{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162d31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300{color:#6edff6}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}html[data-netbox-color-mode=dark] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-300 a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#162d31}html[data-netbox-color-mode=dark] .badge.bg-cyan-300,html[data-netbox-color-mode=dark] .toast.bg-cyan-300,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-300,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-300{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c2b31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400{color:#3dd5f3}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}html[data-netbox-color-mode=dark] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-400 a:not(.btn){font-weight:700;color:#0c2b31}html[data-netbox-color-mode=dark] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#0c2b31}html[data-netbox-color-mode=dark] .badge.bg-cyan-400,html[data-netbox-color-mode=dark] .toast.bg-cyan-400,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-400,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-400{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23032830'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500{color:#0dcaf0}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}html[data-netbox-color-mode=dark] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-500 a:not(.btn){font-weight:700;color:#032830}html[data-netbox-color-mode=dark] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#032830}html[data-netbox-color-mode=dark] .badge.bg-cyan-500,html[data-netbox-color-mode=dark] .toast.bg-cyan-500,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-500,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-500{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23022026'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600{color:#0aa2c0}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}html[data-netbox-color-mode=dark] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-600 a:not(.btn){font-weight:700;color:#022026}html[data-netbox-color-mode=dark] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#022026}html[data-netbox-color-mode=dark] .badge.bg-cyan-600,html[data-netbox-color-mode=dark] .toast.bg-cyan-600,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-600,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-600{color:#000}html[data-netbox-color-mode=dark] .bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cee4e9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700{color:#087990}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700:hover{background-color:#0879901f}html[data-netbox-color-mode=dark] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-700 a:not(.btn){font-weight:700;color:#cee4e9}html[data-netbox-color-mode=dark] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#cee4e9}html[data-netbox-color-mode=dark] .badge.bg-cyan-700,html[data-netbox-color-mode=dark] .toast.bg-cyan-700,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-700,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-700{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cddcdf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800{color:#055160}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800:hover{background-color:#0551601f}html[data-netbox-color-mode=dark] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-800 a:not(.btn){font-weight:700;color:#cddcdf}html[data-netbox-color-mode=dark] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#cddcdf}html[data-netbox-color-mode=dark] .badge.bg-cyan-800,html[data-netbox-color-mode=dark] .toast.bg-cyan-800,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-800,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-800{color:#fff}html[data-netbox-color-mode=dark] .bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cdd4d6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900{color:#032830}html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900:hover{background-color:#0328301f}html[data-netbox-color-mode=dark] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-900 a:not(.btn){font-weight:700;color:#cdd4d6}html[data-netbox-color-mode=dark] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#cdd4d6}html[data-netbox-color-mode=dark] .badge.bg-cyan-900,html[data-netbox-color-mode=dark] .toast.bg-cyan-900,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-900,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-900{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2932'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100{color:#e0cffc}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}html[data-netbox-color-mode=dark] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-100 a:not(.btn){font-weight:700;color:#2d2932}html[data-netbox-color-mode=dark] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#2d2932}html[data-netbox-color-mode=dark] .badge.bg-indigo-100,html[data-netbox-color-mode=dark] .toast.bg-indigo-100,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-100,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-100{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23272032'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200{color:#c29ffa}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}html[data-netbox-color-mode=dark] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-200 a:not(.btn){font-weight:700;color:#272032}html[data-netbox-color-mode=dark] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#272032}html[data-netbox-color-mode=dark] .badge.bg-indigo-200,html[data-netbox-color-mode=dark] .toast.bg-indigo-200,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-200,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-200{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23211631'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300{color:#a370f7}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}html[data-netbox-color-mode=dark] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-300 a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#211631}html[data-netbox-color-mode=dark] .badge.bg-indigo-300,html[data-netbox-color-mode=dark] .toast.bg-indigo-300,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-300,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-300{color:#000}html[data-netbox-color-mode=dark] .bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e7d9fd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400{color:#8540f5}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}html[data-netbox-color-mode=dark] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-400 a:not(.btn){font-weight:700;color:#e7d9fd}html[data-netbox-color-mode=dark] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#e7d9fd}html[data-netbox-color-mode=dark] .badge.bg-indigo-400,html[data-netbox-color-mode=dark] .toast.bg-indigo-400,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-400,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-400{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0cffc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500{color:#6610f2}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}html[data-netbox-color-mode=dark] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-500 a:not(.btn){font-weight:700;color:#e0cffc}html[data-netbox-color-mode=dark] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#e0cffc}html[data-netbox-color-mode=dark] .badge.bg-indigo-500,html[data-netbox-color-mode=dark] .toast.bg-indigo-500,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-500,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-500{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dccff3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600{color:#520dc2}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}html[data-netbox-color-mode=dark] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-600 a:not(.btn){font-weight:700;color:#dccff3}html[data-netbox-color-mode=dark] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#dccff3}html[data-netbox-color-mode=dark] .badge.bg-indigo-600,html[data-netbox-color-mode=dark] .toast.bg-indigo-600,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-600,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-600{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d8cee9'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700{color:#3d0a91}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}html[data-netbox-color-mode=dark] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-700 a:not(.btn){font-weight:700;color:#d8cee9}html[data-netbox-color-mode=dark] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#d8cee9}html[data-netbox-color-mode=dark] .badge.bg-indigo-700,html[data-netbox-color-mode=dark] .toast.bg-indigo-700,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-700,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-700{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4cddf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800{color:#290661}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800:hover{background-color:#2906611f}html[data-netbox-color-mode=dark] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-800 a:not(.btn){font-weight:700;color:#d4cddf}html[data-netbox-color-mode=dark] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#d4cddf}html[data-netbox-color-mode=dark] .badge.bg-indigo-800,html[data-netbox-color-mode=dark] .toast.bg-indigo-800,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-800,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-800{color:#fff}html[data-netbox-color-mode=dark] .bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0cdd6'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900{color:#140330}html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900:hover{background-color:#1403301f}html[data-netbox-color-mode=dark] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-900 a:not(.btn){font-weight:700;color:#d0cdd6}html[data-netbox-color-mode=dark] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#d0cdd6}html[data-netbox-color-mode=dark] .badge.bg-indigo-900,html[data-netbox-color-mode=dark] .toast.bg-indigo-900,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-900,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-900{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2b31'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100{color:#e2d9f3}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}html[data-netbox-color-mode=dark] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-100 a:not(.btn){font-weight:700;color:#2d2b31}html[data-netbox-color-mode=dark] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-100 a:not(.btn){font-weight:700;color:#2d2b31}html[data-netbox-color-mode=dark] .badge.bg-purple-100,html[data-netbox-color-mode=dark] .toast.bg-purple-100,html[data-netbox-color-mode=dark] .toast-header.bg-purple-100,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-100{color:#000}html[data-netbox-color-mode=dark] .bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2327242e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200{color:#c5b3e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}html[data-netbox-color-mode=dark] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-200 a:not(.btn){font-weight:700;color:#27242e}html[data-netbox-color-mode=dark] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-200 a:not(.btn){font-weight:700;color:#27242e}html[data-netbox-color-mode=dark] .badge.bg-purple-200,html[data-netbox-color-mode=dark] .toast.bg-purple-200,html[data-netbox-color-mode=dark] .toast-header.bg-purple-200,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-200{color:#000}html[data-netbox-color-mode=dark] .bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23221c2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300{color:#a98eda}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}html[data-netbox-color-mode=dark] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-300 a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-300 a:not(.btn){font-weight:700;color:#221c2c}html[data-netbox-color-mode=dark] .badge.bg-purple-300,html[data-netbox-color-mode=dark] .toast.bg-purple-300,html[data-netbox-color-mode=dark] .toast-header.bg-purple-300,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-300{color:#000}html[data-netbox-color-mode=dark] .bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c1529'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400{color:#8c68cd}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}html[data-netbox-color-mode=dark] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-400 a:not(.btn){font-weight:700;color:#1c1529}html[data-netbox-color-mode=dark] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-400 a:not(.btn){font-weight:700;color:#1c1529}html[data-netbox-color-mode=dark] .badge.bg-purple-400,html[data-netbox-color-mode=dark] .toast.bg-purple-400,html[data-netbox-color-mode=dark] .toast-header.bg-purple-400,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-400{color:#000}html[data-netbox-color-mode=dark] .bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e2d9f3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500{color:#6f42c1}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}html[data-netbox-color-mode=dark] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-500 a:not(.btn){font-weight:700;color:#e2d9f3}html[data-netbox-color-mode=dark] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-500 a:not(.btn){font-weight:700;color:#e2d9f3}html[data-netbox-color-mode=dark] .badge.bg-purple-500,html[data-netbox-color-mode=dark] .toast.bg-purple-500,html[data-netbox-color-mode=dark] .toast-header.bg-purple-500,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-500{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ded7eb'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600{color:#59359a}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600:hover{background-color:#59359a1f}html[data-netbox-color-mode=dark] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-600 a:not(.btn){font-weight:700;color:#ded7eb}html[data-netbox-color-mode=dark] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-600 a:not(.btn){font-weight:700;color:#ded7eb}html[data-netbox-color-mode=dark] .badge.bg-purple-600,html[data-netbox-color-mode=dark] .toast.bg-purple-600,html[data-netbox-color-mode=dark] .toast-header.bg-purple-600,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-600{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d9d4e3'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700{color:#432874}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700:hover{background-color:#4328741f}html[data-netbox-color-mode=dark] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-700 a:not(.btn){font-weight:700;color:#d9d4e3}html[data-netbox-color-mode=dark] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-700 a:not(.btn){font-weight:700;color:#d9d4e3}html[data-netbox-color-mode=dark] .badge.bg-purple-700,html[data-netbox-color-mode=dark] .toast.bg-purple-700,html[data-netbox-color-mode=dark] .toast-header.bg-purple-700,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-700{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5d1db'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800{color:#2c1a4d}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}html[data-netbox-color-mode=dark] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-800 a:not(.btn){font-weight:700;color:#d5d1db}html[data-netbox-color-mode=dark] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-800 a:not(.btn){font-weight:700;color:#d5d1db}html[data-netbox-color-mode=dark] .badge.bg-purple-800,html[data-netbox-color-mode=dark] .toast.bg-purple-800,html[data-netbox-color-mode=dark] .toast-header.bg-purple-800,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-800{color:#fff}html[data-netbox-color-mode=dark] .bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d0cfd4'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900{color:#160d27}html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900:hover{background-color:#160d271f}html[data-netbox-color-mode=dark] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-900 a:not(.btn){font-weight:700;color:#d0cfd4}html[data-netbox-color-mode=dark] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-purple-900 a:not(.btn){font-weight:700;color:#d0cfd4}html[data-netbox-color-mode=dark] .badge.bg-purple-900,html[data-netbox-color-mode=dark] .toast.bg-purple-900,html[data-netbox-color-mode=dark] .toast-header.bg-purple-900,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-900{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23312b2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100{color:#f7d6e6}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}html[data-netbox-color-mode=dark] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-100 a:not(.btn){font-weight:700;color:#312b2e}html[data-netbox-color-mode=dark] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-100 a:not(.btn){font-weight:700;color:#312b2e}html[data-netbox-color-mode=dark] .badge.bg-pink-100,html[data-netbox-color-mode=dark] .toast.bg-pink-100,html[data-netbox-color-mode=dark] .toast-header.bg-pink-100,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-100{color:#000}html[data-netbox-color-mode=dark] .bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23302329'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200{color:#efadce}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200:hover{background-color:#efadce1f}html[data-netbox-color-mode=dark] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-200 a:not(.btn){font-weight:700;color:#302329}html[data-netbox-color-mode=dark] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-200 a:not(.btn){font-weight:700;color:#302329}html[data-netbox-color-mode=dark] .badge.bg-pink-200,html[data-netbox-color-mode=dark] .toast.bg-pink-200,html[data-netbox-color-mode=dark] .toast-header.bg-pink-200,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-200{color:#000}html[data-netbox-color-mode=dark] .bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e1b24'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300{color:#e685b5}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300:hover{background-color:#e685b51f}html[data-netbox-color-mode=dark] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-300 a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-300 a:not(.btn){font-weight:700;color:#2e1b24}html[data-netbox-color-mode=dark] .badge.bg-pink-300,html[data-netbox-color-mode=dark] .toast.bg-pink-300,html[data-netbox-color-mode=dark] .toast-header.bg-pink-300,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-300{color:#000}html[data-netbox-color-mode=dark] .bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c121f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400{color:#de5c9d}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}html[data-netbox-color-mode=dark] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-400 a:not(.btn){font-weight:700;color:#2c121f}html[data-netbox-color-mode=dark] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-400 a:not(.btn){font-weight:700;color:#2c121f}html[data-netbox-color-mode=dark] .badge.bg-pink-400,html[data-netbox-color-mode=dark] .toast.bg-pink-400,html[data-netbox-color-mode=dark] .toast-header.bg-pink-400,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-400{color:#000}html[data-netbox-color-mode=dark] .bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b0a1a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500{color:#d63384}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500:hover{background-color:#d633841f}html[data-netbox-color-mode=dark] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-500 a:not(.btn){font-weight:700;color:#2b0a1a}html[data-netbox-color-mode=dark] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-500 a:not(.btn){font-weight:700;color:#f7d6e6}html[data-netbox-color-mode=dark] .badge.bg-pink-500,html[data-netbox-color-mode=dark] .toast.bg-pink-500,html[data-netbox-color-mode=dark] .toast-header.bg-pink-500,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-500{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23eed4e1'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600{color:#ab296a}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}html[data-netbox-color-mode=dark] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-600 a:not(.btn){font-weight:700;color:#eed4e1}html[data-netbox-color-mode=dark] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-600 a:not(.btn){font-weight:700;color:#eed4e1}html[data-netbox-color-mode=dark] .badge.bg-pink-600,html[data-netbox-color-mode=dark] .toast.bg-pink-600,html[data-netbox-color-mode=dark] .toast-header.bg-pink-600,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-600{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6d2dc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700{color:#801f4f}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}html[data-netbox-color-mode=dark] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-700 a:not(.btn){font-weight:700;color:#e6d2dc}html[data-netbox-color-mode=dark] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-700 a:not(.btn){font-weight:700;color:#e6d2dc}html[data-netbox-color-mode=dark] .badge.bg-pink-700,html[data-netbox-color-mode=dark] .toast.bg-pink-700,html[data-netbox-color-mode=dark] .toast-header.bg-pink-700,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-700{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ddd0d7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800{color:#561435}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800:hover{background-color:#5614351f}html[data-netbox-color-mode=dark] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-800 a:not(.btn){font-weight:700;color:#ddd0d7}html[data-netbox-color-mode=dark] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-800 a:not(.btn){font-weight:700;color:#ddd0d7}html[data-netbox-color-mode=dark] .badge.bg-pink-800,html[data-netbox-color-mode=dark] .toast.bg-pink-800,html[data-netbox-color-mode=dark] .toast-header.bg-pink-800,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-800{color:#fff}html[data-netbox-color-mode=dark] .bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d5ced1'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900{color:#2b0a1a}html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}html[data-netbox-color-mode=dark] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-900 a:not(.btn){font-weight:700;color:#d5ced1}html[data-netbox-color-mode=dark] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}html[data-netbox-color-mode=dark] .toast.bg-pink-900 a:not(.btn){font-weight:700;color:#d5ced1}html[data-netbox-color-mode=dark] .badge.bg-pink-900,html[data-netbox-color-mode=dark] .toast.bg-pink-900,html[data-netbox-color-mode=dark] .toast-header.bg-pink-900,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-900{color:#fff}html[data-netbox-color-mode=dark] table td>.progress{min-width:6rem}html[data-netbox-color-mode=dark] .small .form-control{font-size:.875rem}html[data-netbox-color-mode=dark] :not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}html[data-netbox-color-mode=dark] .nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] .nav-mobile{display:flex}}html[data-netbox-color-mode=dark] .nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}html[data-netbox-color-mode=dark] .card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#495057;border-top:1px solid rgba(255,255,255,.125);border-bottom-color:#ffffff20}html[data-netbox-color-mode=dark] .card>.table.table-flush th,html[data-netbox-color-mode=dark] .card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]{border-color:#ffffff20!important}html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html[data-netbox-color-mode=dark] .header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}html[data-netbox-color-mode=dark] .header-alert-container .alert{width:100%}@media (min-width: 768px){html[data-netbox-color-mode=dark] .header-alert-container .alert{max-width:75%}}@media (min-width: 992px){html[data-netbox-color-mode=dark] .header-alert-container .alert{max-width:50%}}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}html[data-netbox-color-mode=dark] div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}html[data-netbox-color-mode=dark] table td a{text-decoration:none}html[data-netbox-color-mode=dark] table td a:hover{text-decoration:underline}html[data-netbox-color-mode=dark] table th a,html[data-netbox-color-mode=dark] table th a:hover{color:#fff;text-decoration:none}html[data-netbox-color-mode=dark] table td,html[data-netbox-color-mode=dark] table th{font-size:.875rem;line-height:1.25;vertical-align:middle}html[data-netbox-color-mode=dark] table td.min-width,html[data-netbox-color-mode=dark] table th.min-width{width:1%}html[data-netbox-color-mode=dark] table td .form-check-input,html[data-netbox-color-mode=dark] table th .form-check-input{margin-top:.125em;font-size:1rem}html[data-netbox-color-mode=dark] table td .btn-sm,html[data-netbox-color-mode=dark] table td .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table th .btn-sm,html[data-netbox-color-mode=dark] table th .btn-group-sm>.btn{line-height:1}html[data-netbox-color-mode=dark] table td p,html[data-netbox-color-mode=dark] table th p{margin-bottom:0}html[data-netbox-color-mode=dark] table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}html[data-netbox-color-mode=dark] table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}html[data-netbox-color-mode=dark] table.attr-table th{font-weight:normal;width:25%}html[data-netbox-color-mode=dark] div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}@media (min-width: 992px){html[data-netbox-color-mode=dark] div.title-container{flex-direction:row}}html[data-netbox-color-mode=dark] div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .controls{margin-bottom:.5rem}@media print{html[data-netbox-color-mode=dark] .controls{display:none!important}}html[data-netbox-color-mode=dark] .controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}@media (min-width: 992px){html[data-netbox-color-mode=dark] .controls .control-group{justify-content:flex-end}}html[data-netbox-color-mode=dark] .controls .control-group>*{margin:.25rem}html[data-netbox-color-mode=dark] .controls .control-group>*:first-child{margin-left:0}html[data-netbox-color-mode=dark] .controls .control-group>*:last-child{margin-right:0}html[data-netbox-color-mode=dark] .object-subtitle{display:block;font-size:.875rem;color:#ced4da}@media (min-width: 768px){html[data-netbox-color-mode=dark] .object-subtitle{display:inline-block}}html[data-netbox-color-mode=dark] .object-subtitle>span{display:block}html[data-netbox-color-mode=dark] .object-subtitle>span.separator{display:none}@media (min-width: 768px){html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span.separator{display:inline-block}}html[data-netbox-color-mode=dark] nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}html[data-netbox-color-mode=dark] nav.search .search-container{display:flex;width:100%}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] nav.search .search-container{display:none}}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selected{border-color:#495057}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle{color:#fff;border-color:#495057;margin-left:0;font-weight:400;line-height:1.5;color:#f8f9fa;background-color:#495057;border:1px solid #495057;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.disabled{color:#fff;background-color:#495057;border-color:#495057}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:after{display:none}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}html[data-netbox-color-mode=dark] main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}@media print{html[data-netbox-color-mode=dark] main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}html[data-netbox-color-mode=dark] main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}html[data-netbox-color-mode=dark] main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}html[data-netbox-color-mode=dark] .footer{padding:0}html[data-netbox-color-mode=dark] .footer .nav-link{padding:.5rem}@media (max-width: 767.98px){html[data-netbox-color-mode=dark] .footer{margin-bottom:8rem}}html[data-netbox-color-mode=dark] footer.login-footer{height:4rem;margin-top:auto}html[data-netbox-color-mode=dark] footer.login-footer .container-fluid,html[data-netbox-color-mode=dark] footer.login-footer .container-sm,html[data-netbox-color-mode=dark] footer.login-footer .container-md,html[data-netbox-color-mode=dark] footer.login-footer .container-lg,html[data-netbox-color-mode=dark] footer.login-footer .container-xl,html[data-netbox-color-mode=dark] footer.login-footer .container-xxl{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}html[data-netbox-color-mode=dark] h1.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h1,html[data-netbox-color-mode=dark] h2.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h2,html[data-netbox-color-mode=dark] h3.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h3,html[data-netbox-color-mode=dark] h4.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h4,html[data-netbox-color-mode=dark] h5.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h5,html[data-netbox-color-mode=dark] h6.accordion-item-title,html[data-netbox-color-mode=dark] .accordion-item-title.h6{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}html[data-netbox-color-mode=dark] .form-login{width:100%;max-width:330px;padding:15px}html[data-netbox-color-mode=dark] .form-login input:focus{z-index:1}html[data-netbox-color-mode=dark] .form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}html[data-netbox-color-mode=dark] .form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}html[data-netbox-color-mode=dark] .form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}html[data-netbox-color-mode=dark] .navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link:hover{color:#000;background-color:#6397e5}html[data-netbox-color-mode=dark] div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}html[data-netbox-color-mode=dark] div.content-container:focus,html[data-netbox-color-mode=dark] div.content-container:focus-visible{outline:0}html[data-netbox-color-mode=dark] div.content-container div.content{flex:1}@media (max-width: 991.98px){html[data-netbox-color-mode=dark] div.content-container{width:100%}}@media print{html[data-netbox-color-mode=dark] div.content-container{width:100%!important;margin-left:0!important}}@media (max-width: 768px){html[data-netbox-color-mode=dark] .sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}html[data-netbox-color-mode=dark] .tooltip{pointer-events:none}html[data-netbox-color-mode=dark] span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}html[data-netbox-color-mode=dark] .btn{white-space:nowrap}html[data-netbox-color-mode=dark] .card{box-shadow:0 .125rem .25rem #00000013}html[data-netbox-color-mode=dark] .card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}html[data-netbox-color-mode=dark] .card .card-header+.card-body{padding-top:0}html[data-netbox-color-mode=dark] .card .card-body.small .form-control,html[data-netbox-color-mode=dark] .card .card-body.small .form-select{font-size:.875rem}html[data-netbox-color-mode=dark] .card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(255,255,255,.125);opacity:.25}@media print{html[data-netbox-color-mode=dark] .card{box-shadow:unset!important}}html[data-netbox-color-mode=dark] .form-floating{position:relative}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){html[data-netbox-color-mode=dark] .form-floating>.input-group>label{transition:none}}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control::placeholder{color:transparent}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=dark] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=dark] .form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.choices~label,html[data-netbox-color-mode=dark] .form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}html[data-netbox-color-mode=dark] .form-object-edit{margin:0 auto;max-width:800px}html[data-netbox-color-mode=dark] textarea.form-control[rows="10"]{height:18rem}html[data-netbox-color-mode=dark] textarea#id_local_context_data,html[data-netbox-color-mode=dark] textarea.markdown,html[data-netbox-color-mode=dark] textarea#id_public_key,html[data-netbox-color-mode=dark] textarea.form-control[name=csv],html[data-netbox-color-mode=dark] textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}html[data-netbox-color-mode=dark] .card:not(:only-of-type){margin-bottom:1rem}html[data-netbox-color-mode=dark] .stat-btn{min-width:3rem}html[data-netbox-color-mode=dark] nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}html[data-netbox-color-mode=dark] div.paginator>form>div.input-group{width:fit-content}html[data-netbox-color-mode=dark] label.required{font-weight:700}html[data-netbox-color-mode=dark] label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}html[data-netbox-color-mode=dark] div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}html[data-netbox-color-mode=dark] table tbody tr.primary{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.secondary{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.success{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.info{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.warning{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.danger{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.light{background-color:#dee2e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.dark{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo{background-color:#a370f726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple{background-color:#a98eda26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink{background-color:#e685b526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}html[data-netbox-color-mode=dark] table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge:not(.badge){padding:0 .65em}html[data-netbox-color-mode=dark] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}html[data-netbox-color-mode=dark] pre.change-data{padding-right:0;padding-left:0}html[data-netbox-color-mode=dark] pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}html[data-netbox-color-mode=dark] pre.change-data>span.added{background-color:var(--nbx-change-added)}html[data-netbox-color-mode=dark] pre.change-data>span.removed{background-color:var(--nbx-change-removed)}html[data-netbox-color-mode=dark] pre.change-diff{border-color:transparent}html[data-netbox-color-mode=dark] pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}html[data-netbox-color-mode=dark] pre.change-diff.change-added{background-color:var(--nbx-change-added)}html[data-netbox-color-mode=dark] div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}html[data-netbox-color-mode=dark] div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#adb5bd}html[data-netbox-color-mode=dark] .table-controls{display:flex}@media (min-width: 768px){html[data-netbox-color-mode=dark] .table-controls{margin-top:0!important;margin-bottom:0!important}}html[data-netbox-color-mode=dark] .table-controls .table-configure{justify-content:flex-start}@media (min-width: 768px){html[data-netbox-color-mode=dark] .table-controls .table-configure{justify-content:flex-end}}html[data-netbox-color-mode=dark] .table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}html[data-netbox-color-mode=dark] .paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover{border-bottom-color:transparent}html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active{background-color:#171b1d;border-bottom-color:#171b1d;transform:translateY(1px)}html[data-netbox-color-mode=dark] .tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#171b1d;border-bottom:1px solid #495057}@media print{html[data-netbox-color-mode=dark] .tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{html[data-netbox-color-mode=dark] .masonry{position:static!important;display:block!important;height:unset!important}}@media print{html[data-netbox-color-mode=dark] .masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}html[data-netbox-color-mode=dark] .record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}html[data-netbox-color-mode=dark] .record-depth span:only-of-type,html[data-netbox-color-mode=dark] .record-depth span:last-of-type{margin-right:.25rem}html[data-netbox-color-mode=dark] .popover.image-preview-popover{max-width:unset}html[data-netbox-color-mode=dark] #django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}html[data-netbox-color-mode=dark] html[data-netbox-url-name=login] #django-messages{display:none} diff --git a/netbox/project-static/dist/netbox-light.css b/netbox/project-static/dist/netbox-light.css index 6ca1d7884..2c5aa81f0 100644 --- a/netbox/project-static/dist/netbox-light.css +++ b/netbox/project-static/dist/netbox-light.css @@ -1 +1 @@ -:root{--bs-orange: #fd7e14;--bs-teal: #20c997;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #337ab7;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-red: #dc3545;--bs-yellow: #ffc107;--bs-green: #198754;--bs-blue: #0d6efd;--bs-cyan: #0dcaf0;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:800}small,.small{font-size:.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#212529;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.375rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer:before{content:"\2014\a0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){.container-sm,.container{max-width:540px}}@media (min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media (min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media (min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media (min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: .25rem}.g-1,.gy-1{--bs-gutter-y: .25rem}.g-2,.gx-2{--bs-gutter-x: .5rem}.g-2,.gy-2{--bs-gutter-y: .5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: .25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: .25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: .5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: .5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: .25rem}.g-md-1,.gy-md-1{--bs-gutter-y: .25rem}.g-md-2,.gx-md-2{--bs-gutter-x: .5rem}.g-md-2,.gy-md-2{--bs-gutter-y: .5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: .25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: .25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: .5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: .5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: .25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: .25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: .5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: .5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: .25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: .25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: .5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: .5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, .05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, .1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, .075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #e9ecef;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#adb5bd;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{color:#6c757d;background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-primary:hover{color:#fff;background-color:#2b689c;border-color:#296292}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#2b689c;border-color:#296292;box-shadow:0 0 0 .25rem #528ec280}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#296292;border-color:#265c89}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #528ec280}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-red{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-red,.btn-red:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-red,.btn-check:active+.btn-red,.btn-red:active,.btn-red.active,.show>.btn-red.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-red:focus,.btn-check:active+.btn-red:focus,.btn-red:active:focus,.btn-red.active:focus,.show>.btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-red:disabled,.btn-red.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-yellow{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-yellow,.btn-yellow:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-yellow,.btn-check:active+.btn-yellow,.btn-yellow:active,.btn-yellow.active,.show>.btn-yellow.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-yellow:focus,.btn-check:active+.btn-yellow:focus,.btn-yellow:active:focus,.btn-yellow.active:focus,.show>.btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-yellow:disabled,.btn-yellow.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-green{color:#fff;background-color:#198754;border-color:#198754}.btn-green:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-green,.btn-green:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-green,.btn-check:active+.btn-green,.btn-green:active,.btn-green.active,.show>.btn-green.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-green:focus,.btn-check:active+.btn-green:focus,.btn-green:active:focus,.btn-green.active:focus,.show>.btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-green:disabled,.btn-green.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-blue{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-blue,.btn-blue:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+.btn-blue,.btn-check:active+.btn-blue,.btn-blue:active,.btn-blue.active,.show>.btn-blue.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-blue:focus,.btn-check:active+.btn-blue:focus,.btn-blue:active:focus,.btn-blue.active:focus,.show>.btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}.btn-blue:disabled,.btn-blue.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-cyan{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-cyan,.btn-cyan:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-cyan,.btn-check:active+.btn-cyan,.btn-cyan:active,.btn-cyan.active,.show>.btn-cyan.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-cyan:focus,.btn-check:active+.btn-cyan:focus,.btn-cyan:active:focus,.btn-cyan.active:focus,.show>.btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-cyan:disabled,.btn-cyan.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-indigo{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+.btn-indigo,.btn-indigo:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+.btn-indigo,.btn-check:active+.btn-indigo,.btn-indigo:active,.btn-indigo.active,.show>.btn-indigo.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+.btn-indigo:focus,.btn-check:active+.btn-indigo:focus,.btn-indigo:active:focus,.btn-indigo.active:focus,.show>.btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}.btn-indigo:disabled,.btn-indigo.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-purple{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+.btn-purple,.btn-purple:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+.btn-purple,.btn-check:active+.btn-purple,.btn-purple:active,.btn-purple.active,.show>.btn-purple.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+.btn-purple:focus,.btn-check:active+.btn-purple:focus,.btn-purple:active:focus,.btn-purple.active:focus,.show>.btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}.btn-purple:disabled,.btn-purple.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-pink{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+.btn-pink,.btn-pink:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+.btn-pink,.btn-check:active+.btn-pink,.btn-pink:active,.btn-pink.active,.show>.btn-pink.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+.btn-pink:focus,.btn-check:active+.btn-pink:focus,.btn-pink:active:focus,.btn-pink.active:focus,.show>.btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}.btn-pink:disabled,.btn-pink.disabled{color:#fff;background-color:#d63384;border-color:#d63384}.btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+.btn-darker,.btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+.btn-darker,.btn-check:active+.btn-darker,.btn-darker:active,.btn-darker.active,.show>.btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+.btn-darker:focus,.btn-check:active+.btn-darker:focus,.btn-darker:active:focus,.btn-darker.active:focus,.show>.btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}.btn-darker:disabled,.btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+.btn-darkest,.btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+.btn-darkest,.btn-check:active+.btn-darkest,.btn-darkest:active,.btn-darkest.active,.show>.btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+.btn-darkest:focus,.btn-check:active+.btn-darkest:focus,.btn-darkest:active:focus,.btn-darkest.active:focus,.show>.btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}.btn-darkest:disabled,.btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+.btn-gray,.btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+.btn-gray,.btn-check:active+.btn-gray,.btn-gray:active,.btn-gray.active,.show>.btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+.btn-gray:focus,.btn-check:active+.btn-gray:focus,.btn-gray:active:focus,.btn-gray.active:focus,.show>.btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}.btn-gray:disabled,.btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-gray-100,.btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+.btn-gray-100,.btn-check:active+.btn-gray-100,.btn-gray-100:active,.btn-gray-100.active,.show>.btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-gray-100:focus,.btn-check:active+.btn-gray-100:focus,.btn-gray-100:active:focus,.btn-gray-100.active:focus,.show>.btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}.btn-gray-100:disabled,.btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+.btn-gray-200,.btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+.btn-gray-200,.btn-check:active+.btn-gray-200,.btn-gray-200:active,.btn-gray-200.active,.show>.btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+.btn-gray-200:focus,.btn-check:active+.btn-gray-200:focus,.btn-gray-200:active:focus,.btn-gray-200.active:focus,.show>.btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}.btn-gray-200:disabled,.btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+.btn-gray-300,.btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+.btn-gray-300,.btn-check:active+.btn-gray-300,.btn-gray-300:active,.btn-gray-300.active,.show>.btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+.btn-gray-300:focus,.btn-check:active+.btn-gray-300:focus,.btn-gray-300:active:focus,.btn-gray-300.active:focus,.show>.btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}.btn-gray-300:disabled,.btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+.btn-gray-400,.btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+.btn-gray-400,.btn-check:active+.btn-gray-400,.btn-gray-400:active,.btn-gray-400.active,.show>.btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+.btn-gray-400:focus,.btn-check:active+.btn-gray-400:focus,.btn-gray-400:active:focus,.btn-gray-400.active:focus,.show>.btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}.btn-gray-400:disabled,.btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+.btn-gray-500,.btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+.btn-gray-500,.btn-check:active+.btn-gray-500,.btn-gray-500:active,.btn-gray-500.active,.show>.btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+.btn-gray-500:focus,.btn-check:active+.btn-gray-500:focus,.btn-gray-500:active:focus,.btn-gray-500.active:focus,.show>.btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}.btn-gray-500:disabled,.btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-gray-600,.btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+.btn-gray-600,.btn-check:active+.btn-gray-600,.btn-gray-600:active,.btn-gray-600.active,.show>.btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-gray-600:focus,.btn-check:active+.btn-gray-600:focus,.btn-gray-600:active:focus,.btn-gray-600.active:focus,.show>.btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}.btn-gray-600:disabled,.btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}.btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+.btn-gray-700,.btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+.btn-gray-700,.btn-check:active+.btn-gray-700,.btn-gray-700:active,.btn-gray-700.active,.show>.btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+.btn-gray-700:focus,.btn-check:active+.btn-gray-700:focus,.btn-gray-700:active:focus,.btn-gray-700.active:focus,.show>.btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}.btn-gray-700:disabled,.btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}.btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+.btn-gray-800,.btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+.btn-gray-800,.btn-check:active+.btn-gray-800,.btn-gray-800:active,.btn-gray-800.active,.show>.btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+.btn-gray-800:focus,.btn-check:active+.btn-gray-800:focus,.btn-gray-800:active:focus,.btn-gray-800.active:focus,.show>.btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}.btn-gray-800:disabled,.btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}.btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-gray-900,.btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+.btn-gray-900,.btn-check:active+.btn-gray-900,.btn-gray-900:active,.btn-gray-900.active,.show>.btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-gray-900:focus,.btn-check:active+.btn-gray-900:focus,.btn-gray-900:active:focus,.btn-gray-900.active:focus,.show>.btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}.btn-gray-900:disabled,.btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+.btn-red-100,.btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+.btn-red-100,.btn-check:active+.btn-red-100,.btn-red-100:active,.btn-red-100.active,.show>.btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+.btn-red-100:focus,.btn-check:active+.btn-red-100:focus,.btn-red-100:active:focus,.btn-red-100.active:focus,.show>.btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}.btn-red-100:disabled,.btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+.btn-red-200,.btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+.btn-red-200,.btn-check:active+.btn-red-200,.btn-red-200:active,.btn-red-200.active,.show>.btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+.btn-red-200:focus,.btn-check:active+.btn-red-200:focus,.btn-red-200:active:focus,.btn-red-200.active:focus,.show>.btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}.btn-red-200:disabled,.btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+.btn-red-300,.btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+.btn-red-300,.btn-check:active+.btn-red-300,.btn-red-300:active,.btn-red-300.active,.show>.btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+.btn-red-300:focus,.btn-check:active+.btn-red-300:focus,.btn-red-300:active:focus,.btn-red-300.active:focus,.show>.btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}.btn-red-300:disabled,.btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+.btn-red-400,.btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+.btn-red-400,.btn-check:active+.btn-red-400,.btn-red-400:active,.btn-red-400.active,.show>.btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+.btn-red-400:focus,.btn-check:active+.btn-red-400:focus,.btn-red-400:active:focus,.btn-red-400.active:focus,.show>.btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}.btn-red-400:disabled,.btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-red-500,.btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-red-500,.btn-check:active+.btn-red-500,.btn-red-500:active,.btn-red-500.active,.show>.btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-red-500:focus,.btn-check:active+.btn-red-500:focus,.btn-red-500:active:focus,.btn-red-500.active:focus,.show>.btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-red-500:disabled,.btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+.btn-red-600,.btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+.btn-red-600,.btn-check:active+.btn-red-600,.btn-red-600:active,.btn-red-600.active,.show>.btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+.btn-red-600:focus,.btn-check:active+.btn-red-600:focus,.btn-red-600:active:focus,.btn-red-600.active:focus,.show>.btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}.btn-red-600:disabled,.btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-red-700{color:#fff;background-color:#842029;border-color:#842029}.btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+.btn-red-700,.btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+.btn-red-700,.btn-check:active+.btn-red-700,.btn-red-700:active,.btn-red-700.active,.show>.btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+.btn-red-700:focus,.btn-check:active+.btn-red-700:focus,.btn-red-700:active:focus,.btn-red-700.active:focus,.show>.btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}.btn-red-700:disabled,.btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}.btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}.btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+.btn-red-800,.btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+.btn-red-800,.btn-check:active+.btn-red-800,.btn-red-800:active,.btn-red-800.active,.show>.btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+.btn-red-800:focus,.btn-check:active+.btn-red-800:focus,.btn-red-800:active:focus,.btn-red-800.active:focus,.show>.btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}.btn-red-800:disabled,.btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}.btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+.btn-red-900,.btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+.btn-red-900,.btn-check:active+.btn-red-900,.btn-red-900:active,.btn-red-900.active,.show>.btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+.btn-red-900:focus,.btn-check:active+.btn-red-900:focus,.btn-red-900:active:focus,.btn-red-900.active:focus,.show>.btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}.btn-red-900:disabled,.btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+.btn-yellow-100,.btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+.btn-yellow-100,.btn-check:active+.btn-yellow-100,.btn-yellow-100:active,.btn-yellow-100.active,.show>.btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+.btn-yellow-100:focus,.btn-check:active+.btn-yellow-100:focus,.btn-yellow-100:active:focus,.btn-yellow-100.active:focus,.show>.btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}.btn-yellow-100:disabled,.btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+.btn-yellow-200,.btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+.btn-yellow-200,.btn-check:active+.btn-yellow-200,.btn-yellow-200:active,.btn-yellow-200.active,.show>.btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+.btn-yellow-200:focus,.btn-check:active+.btn-yellow-200:focus,.btn-yellow-200:active:focus,.btn-yellow-200.active:focus,.show>.btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}.btn-yellow-200:disabled,.btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+.btn-yellow-300,.btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+.btn-yellow-300,.btn-check:active+.btn-yellow-300,.btn-yellow-300:active,.btn-yellow-300.active,.show>.btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+.btn-yellow-300:focus,.btn-check:active+.btn-yellow-300:focus,.btn-yellow-300:active:focus,.btn-yellow-300.active:focus,.show>.btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}.btn-yellow-300:disabled,.btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+.btn-yellow-400,.btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+.btn-yellow-400,.btn-check:active+.btn-yellow-400,.btn-yellow-400:active,.btn-yellow-400.active,.show>.btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+.btn-yellow-400:focus,.btn-check:active+.btn-yellow-400:focus,.btn-yellow-400:active:focus,.btn-yellow-400.active:focus,.show>.btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}.btn-yellow-400:disabled,.btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-yellow-500,.btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-yellow-500,.btn-check:active+.btn-yellow-500,.btn-yellow-500:active,.btn-yellow-500.active,.show>.btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-yellow-500:focus,.btn-check:active+.btn-yellow-500:focus,.btn-yellow-500:active:focus,.btn-yellow-500.active:focus,.show>.btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-yellow-500:disabled,.btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+.btn-yellow-600,.btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+.btn-yellow-600,.btn-check:active+.btn-yellow-600,.btn-yellow-600:active,.btn-yellow-600.active,.show>.btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+.btn-yellow-600:focus,.btn-check:active+.btn-yellow-600:focus,.btn-yellow-600:active:focus,.btn-yellow-600.active:focus,.show>.btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}.btn-yellow-600:disabled,.btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}.btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+.btn-yellow-700,.btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+.btn-yellow-700,.btn-check:active+.btn-yellow-700,.btn-yellow-700:active,.btn-yellow-700.active,.show>.btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+.btn-yellow-700:focus,.btn-check:active+.btn-yellow-700:focus,.btn-yellow-700:active:focus,.btn-yellow-700.active:focus,.show>.btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}.btn-yellow-700:disabled,.btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}.btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}.btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+.btn-yellow-800,.btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+.btn-yellow-800,.btn-check:active+.btn-yellow-800,.btn-yellow-800:active,.btn-yellow-800.active,.show>.btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+.btn-yellow-800:focus,.btn-check:active+.btn-yellow-800:focus,.btn-yellow-800:active:focus,.btn-yellow-800.active:focus,.show>.btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}.btn-yellow-800:disabled,.btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}.btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}.btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+.btn-yellow-900,.btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+.btn-yellow-900,.btn-check:active+.btn-yellow-900,.btn-yellow-900:active,.btn-yellow-900.active,.show>.btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+.btn-yellow-900:focus,.btn-check:active+.btn-yellow-900:focus,.btn-yellow-900:active:focus,.btn-yellow-900.active:focus,.show>.btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}.btn-yellow-900:disabled,.btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}.btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+.btn-green-100,.btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+.btn-green-100,.btn-check:active+.btn-green-100,.btn-green-100:active,.btn-green-100.active,.show>.btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+.btn-green-100:focus,.btn-check:active+.btn-green-100:focus,.btn-green-100:active:focus,.btn-green-100.active:focus,.show>.btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}.btn-green-100:disabled,.btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+.btn-green-200,.btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+.btn-green-200,.btn-check:active+.btn-green-200,.btn-green-200:active,.btn-green-200.active,.show>.btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+.btn-green-200:focus,.btn-check:active+.btn-green-200:focus,.btn-green-200:active:focus,.btn-green-200.active:focus,.show>.btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}.btn-green-200:disabled,.btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}.btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+.btn-green-300,.btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+.btn-green-300,.btn-check:active+.btn-green-300,.btn-green-300:active,.btn-green-300.active,.show>.btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+.btn-green-300:focus,.btn-check:active+.btn-green-300:focus,.btn-green-300:active:focus,.btn-green-300.active:focus,.show>.btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}.btn-green-300:disabled,.btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}.btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}.btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+.btn-green-400,.btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+.btn-green-400,.btn-check:active+.btn-green-400,.btn-green-400:active,.btn-green-400.active,.show>.btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+.btn-green-400:focus,.btn-check:active+.btn-green-400:focus,.btn-green-400:active:focus,.btn-green-400.active:focus,.show>.btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}.btn-green-400:disabled,.btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}.btn-green-500{color:#fff;background-color:#198754;border-color:#198754}.btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-green-500,.btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-green-500,.btn-check:active+.btn-green-500,.btn-green-500:active,.btn-green-500.active,.show>.btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-green-500:focus,.btn-check:active+.btn-green-500:focus,.btn-green-500:active:focus,.btn-green-500.active:focus,.show>.btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-green-500:disabled,.btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}.btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+.btn-green-600,.btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+.btn-green-600,.btn-check:active+.btn-green-600,.btn-green-600:active,.btn-green-600.active,.show>.btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+.btn-green-600:focus,.btn-check:active+.btn-green-600:focus,.btn-green-600:active:focus,.btn-green-600.active:focus,.show>.btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}.btn-green-600:disabled,.btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}.btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+.btn-green-700,.btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+.btn-green-700,.btn-check:active+.btn-green-700,.btn-green-700:active,.btn-green-700.active,.show>.btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+.btn-green-700:focus,.btn-check:active+.btn-green-700:focus,.btn-green-700:active:focus,.btn-green-700.active:focus,.show>.btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}.btn-green-700:disabled,.btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+.btn-green-800,.btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+.btn-green-800,.btn-check:active+.btn-green-800,.btn-green-800:active,.btn-green-800.active,.show>.btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+.btn-green-800:focus,.btn-check:active+.btn-green-800:focus,.btn-green-800:active:focus,.btn-green-800.active:focus,.show>.btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}.btn-green-800:disabled,.btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}.btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+.btn-green-900,.btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+.btn-green-900,.btn-check:active+.btn-green-900,.btn-green-900:active,.btn-green-900.active,.show>.btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+.btn-green-900:focus,.btn-check:active+.btn-green-900:focus,.btn-green-900:active:focus,.btn-green-900.active:focus,.show>.btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}.btn-green-900:disabled,.btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}.btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+.btn-blue-100,.btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+.btn-blue-100,.btn-check:active+.btn-blue-100,.btn-blue-100:active,.btn-blue-100.active,.show>.btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+.btn-blue-100:focus,.btn-check:active+.btn-blue-100:focus,.btn-blue-100:active:focus,.btn-blue-100.active:focus,.show>.btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}.btn-blue-100:disabled,.btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+.btn-blue-200,.btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+.btn-blue-200,.btn-check:active+.btn-blue-200,.btn-blue-200:active,.btn-blue-200.active,.show>.btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+.btn-blue-200:focus,.btn-check:active+.btn-blue-200:focus,.btn-blue-200:active:focus,.btn-blue-200.active:focus,.show>.btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}.btn-blue-200:disabled,.btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+.btn-blue-300,.btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+.btn-blue-300,.btn-check:active+.btn-blue-300,.btn-blue-300:active,.btn-blue-300.active,.show>.btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+.btn-blue-300:focus,.btn-check:active+.btn-blue-300:focus,.btn-blue-300:active:focus,.btn-blue-300.active:focus,.show>.btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}.btn-blue-300:disabled,.btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+.btn-blue-400,.btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+.btn-blue-400,.btn-check:active+.btn-blue-400,.btn-blue-400:active,.btn-blue-400.active,.show>.btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+.btn-blue-400:focus,.btn-check:active+.btn-blue-400:focus,.btn-blue-400:active:focus,.btn-blue-400.active:focus,.show>.btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}.btn-blue-400:disabled,.btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-blue-500,.btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+.btn-blue-500,.btn-check:active+.btn-blue-500,.btn-blue-500:active,.btn-blue-500.active,.show>.btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-blue-500:focus,.btn-check:active+.btn-blue-500:focus,.btn-blue-500:active:focus,.btn-blue-500.active:focus,.show>.btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}.btn-blue-500:disabled,.btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+.btn-blue-600,.btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+.btn-blue-600,.btn-check:active+.btn-blue-600,.btn-blue-600:active,.btn-blue-600.active,.show>.btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+.btn-blue-600:focus,.btn-check:active+.btn-blue-600:focus,.btn-blue-600:active:focus,.btn-blue-600.active:focus,.show>.btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}.btn-blue-600:disabled,.btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}.btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+.btn-blue-700,.btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+.btn-blue-700,.btn-check:active+.btn-blue-700,.btn-blue-700:active,.btn-blue-700.active,.show>.btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+.btn-blue-700:focus,.btn-check:active+.btn-blue-700:focus,.btn-blue-700:active:focus,.btn-blue-700.active:focus,.show>.btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}.btn-blue-700:disabled,.btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}.btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}.btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+.btn-blue-800,.btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+.btn-blue-800,.btn-check:active+.btn-blue-800,.btn-blue-800:active,.btn-blue-800.active,.show>.btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+.btn-blue-800:focus,.btn-check:active+.btn-blue-800:focus,.btn-blue-800:active:focus,.btn-blue-800.active:focus,.show>.btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}.btn-blue-800:disabled,.btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}.btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}.btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+.btn-blue-900,.btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+.btn-blue-900,.btn-check:active+.btn-blue-900,.btn-blue-900:active,.btn-blue-900.active,.show>.btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+.btn-blue-900:focus,.btn-check:active+.btn-blue-900:focus,.btn-blue-900:active:focus,.btn-blue-900.active:focus,.show>.btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}.btn-blue-900:disabled,.btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}.btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+.btn-cyan-100,.btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+.btn-cyan-100,.btn-check:active+.btn-cyan-100,.btn-cyan-100:active,.btn-cyan-100.active,.show>.btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+.btn-cyan-100:focus,.btn-check:active+.btn-cyan-100:focus,.btn-cyan-100:active:focus,.btn-cyan-100.active:focus,.show>.btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}.btn-cyan-100:disabled,.btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+.btn-cyan-200,.btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+.btn-cyan-200,.btn-check:active+.btn-cyan-200,.btn-cyan-200:active,.btn-cyan-200.active,.show>.btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+.btn-cyan-200:focus,.btn-check:active+.btn-cyan-200:focus,.btn-cyan-200:active:focus,.btn-cyan-200.active:focus,.show>.btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}.btn-cyan-200:disabled,.btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+.btn-cyan-300,.btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+.btn-cyan-300,.btn-check:active+.btn-cyan-300,.btn-cyan-300:active,.btn-cyan-300.active,.show>.btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+.btn-cyan-300:focus,.btn-check:active+.btn-cyan-300:focus,.btn-cyan-300:active:focus,.btn-cyan-300.active:focus,.show>.btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}.btn-cyan-300:disabled,.btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+.btn-cyan-400,.btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+.btn-cyan-400,.btn-check:active+.btn-cyan-400,.btn-cyan-400:active,.btn-cyan-400.active,.show>.btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+.btn-cyan-400:focus,.btn-check:active+.btn-cyan-400:focus,.btn-cyan-400:active:focus,.btn-cyan-400.active:focus,.show>.btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}.btn-cyan-400:disabled,.btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-cyan-500,.btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-cyan-500,.btn-check:active+.btn-cyan-500,.btn-cyan-500:active,.btn-cyan-500.active,.show>.btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-cyan-500:focus,.btn-check:active+.btn-cyan-500:focus,.btn-cyan-500:active:focus,.btn-cyan-500.active:focus,.show>.btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-cyan-500:disabled,.btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+.btn-cyan-600,.btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+.btn-cyan-600,.btn-check:active+.btn-cyan-600,.btn-cyan-600:active,.btn-cyan-600.active,.show>.btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+.btn-cyan-600:focus,.btn-check:active+.btn-cyan-600:focus,.btn-cyan-600:active:focus,.btn-cyan-600.active:focus,.show>.btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}.btn-cyan-600:disabled,.btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}.btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+.btn-cyan-700,.btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+.btn-cyan-700,.btn-check:active+.btn-cyan-700,.btn-cyan-700:active,.btn-cyan-700.active,.show>.btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+.btn-cyan-700:focus,.btn-check:active+.btn-cyan-700:focus,.btn-cyan-700:active:focus,.btn-cyan-700.active:focus,.show>.btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}.btn-cyan-700:disabled,.btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}.btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}.btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+.btn-cyan-800,.btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+.btn-cyan-800,.btn-check:active+.btn-cyan-800,.btn-cyan-800:active,.btn-cyan-800.active,.show>.btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+.btn-cyan-800:focus,.btn-check:active+.btn-cyan-800:focus,.btn-cyan-800:active:focus,.btn-cyan-800.active:focus,.show>.btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}.btn-cyan-800:disabled,.btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}.btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}.btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+.btn-cyan-900,.btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+.btn-cyan-900,.btn-check:active+.btn-cyan-900,.btn-cyan-900:active,.btn-cyan-900.active,.show>.btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+.btn-cyan-900:focus,.btn-check:active+.btn-cyan-900:focus,.btn-cyan-900:active:focus,.btn-cyan-900.active:focus,.show>.btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}.btn-cyan-900:disabled,.btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}.btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+.btn-indigo-100,.btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+.btn-indigo-100,.btn-check:active+.btn-indigo-100,.btn-indigo-100:active,.btn-indigo-100.active,.show>.btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+.btn-indigo-100:focus,.btn-check:active+.btn-indigo-100:focus,.btn-indigo-100:active:focus,.btn-indigo-100.active:focus,.show>.btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}.btn-indigo-100:disabled,.btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+.btn-indigo-200,.btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+.btn-indigo-200,.btn-check:active+.btn-indigo-200,.btn-indigo-200:active,.btn-indigo-200.active,.show>.btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+.btn-indigo-200:focus,.btn-check:active+.btn-indigo-200:focus,.btn-indigo-200:active:focus,.btn-indigo-200.active:focus,.show>.btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}.btn-indigo-200:disabled,.btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+.btn-indigo-300,.btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+.btn-indigo-300,.btn-check:active+.btn-indigo-300,.btn-indigo-300:active,.btn-indigo-300.active,.show>.btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+.btn-indigo-300:focus,.btn-check:active+.btn-indigo-300:focus,.btn-indigo-300:active:focus,.btn-indigo-300.active:focus,.show>.btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}.btn-indigo-300:disabled,.btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+.btn-indigo-400,.btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+.btn-indigo-400,.btn-check:active+.btn-indigo-400,.btn-indigo-400:active,.btn-indigo-400.active,.show>.btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+.btn-indigo-400:focus,.btn-check:active+.btn-indigo-400:focus,.btn-indigo-400:active:focus,.btn-indigo-400.active:focus,.show>.btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}.btn-indigo-400:disabled,.btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+.btn-indigo-500,.btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+.btn-indigo-500,.btn-check:active+.btn-indigo-500,.btn-indigo-500:active,.btn-indigo-500.active,.show>.btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+.btn-indigo-500:focus,.btn-check:active+.btn-indigo-500:focus,.btn-indigo-500:active:focus,.btn-indigo-500.active:focus,.show>.btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}.btn-indigo-500:disabled,.btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+.btn-indigo-600,.btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+.btn-indigo-600,.btn-check:active+.btn-indigo-600,.btn-indigo-600:active,.btn-indigo-600.active,.show>.btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+.btn-indigo-600:focus,.btn-check:active+.btn-indigo-600:focus,.btn-indigo-600:active:focus,.btn-indigo-600.active:focus,.show>.btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}.btn-indigo-600:disabled,.btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+.btn-indigo-700,.btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+.btn-indigo-700,.btn-check:active+.btn-indigo-700,.btn-indigo-700:active,.btn-indigo-700.active,.show>.btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+.btn-indigo-700:focus,.btn-check:active+.btn-indigo-700:focus,.btn-indigo-700:active:focus,.btn-indigo-700.active:focus,.show>.btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}.btn-indigo-700:disabled,.btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}.btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+.btn-indigo-800,.btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+.btn-indigo-800,.btn-check:active+.btn-indigo-800,.btn-indigo-800:active,.btn-indigo-800.active,.show>.btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+.btn-indigo-800:focus,.btn-check:active+.btn-indigo-800:focus,.btn-indigo-800:active:focus,.btn-indigo-800.active:focus,.show>.btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}.btn-indigo-800:disabled,.btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}.btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}.btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+.btn-indigo-900,.btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+.btn-indigo-900,.btn-check:active+.btn-indigo-900,.btn-indigo-900:active,.btn-indigo-900.active,.show>.btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+.btn-indigo-900:focus,.btn-check:active+.btn-indigo-900:focus,.btn-indigo-900:active:focus,.btn-indigo-900.active:focus,.show>.btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}.btn-indigo-900:disabled,.btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}.btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+.btn-purple-100,.btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+.btn-purple-100,.btn-check:active+.btn-purple-100,.btn-purple-100:active,.btn-purple-100.active,.show>.btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+.btn-purple-100:focus,.btn-check:active+.btn-purple-100:focus,.btn-purple-100:active:focus,.btn-purple-100.active:focus,.show>.btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}.btn-purple-100:disabled,.btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+.btn-purple-200,.btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+.btn-purple-200,.btn-check:active+.btn-purple-200,.btn-purple-200:active,.btn-purple-200.active,.show>.btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+.btn-purple-200:focus,.btn-check:active+.btn-purple-200:focus,.btn-purple-200:active:focus,.btn-purple-200.active:focus,.show>.btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}.btn-purple-200:disabled,.btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+.btn-purple-300,.btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+.btn-purple-300,.btn-check:active+.btn-purple-300,.btn-purple-300:active,.btn-purple-300.active,.show>.btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+.btn-purple-300:focus,.btn-check:active+.btn-purple-300:focus,.btn-purple-300:active:focus,.btn-purple-300.active:focus,.show>.btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}.btn-purple-300:disabled,.btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+.btn-purple-400,.btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+.btn-purple-400,.btn-check:active+.btn-purple-400,.btn-purple-400:active,.btn-purple-400.active,.show>.btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+.btn-purple-400:focus,.btn-check:active+.btn-purple-400:focus,.btn-purple-400:active:focus,.btn-purple-400.active:focus,.show>.btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}.btn-purple-400:disabled,.btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+.btn-purple-500,.btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+.btn-purple-500,.btn-check:active+.btn-purple-500,.btn-purple-500:active,.btn-purple-500.active,.show>.btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+.btn-purple-500:focus,.btn-check:active+.btn-purple-500:focus,.btn-purple-500:active:focus,.btn-purple-500.active:focus,.show>.btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}.btn-purple-500:disabled,.btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}.btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+.btn-purple-600,.btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+.btn-purple-600,.btn-check:active+.btn-purple-600,.btn-purple-600:active,.btn-purple-600.active,.show>.btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+.btn-purple-600:focus,.btn-check:active+.btn-purple-600:focus,.btn-purple-600:active:focus,.btn-purple-600.active:focus,.show>.btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}.btn-purple-600:disabled,.btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}.btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}.btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+.btn-purple-700,.btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+.btn-purple-700,.btn-check:active+.btn-purple-700,.btn-purple-700:active,.btn-purple-700.active,.show>.btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+.btn-purple-700:focus,.btn-check:active+.btn-purple-700:focus,.btn-purple-700:active:focus,.btn-purple-700.active:focus,.show>.btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}.btn-purple-700:disabled,.btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}.btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+.btn-purple-800,.btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+.btn-purple-800,.btn-check:active+.btn-purple-800,.btn-purple-800:active,.btn-purple-800.active,.show>.btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+.btn-purple-800:focus,.btn-check:active+.btn-purple-800:focus,.btn-purple-800:active:focus,.btn-purple-800.active:focus,.show>.btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}.btn-purple-800:disabled,.btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}.btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+.btn-purple-900,.btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+.btn-purple-900,.btn-check:active+.btn-purple-900,.btn-purple-900:active,.btn-purple-900.active,.show>.btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+.btn-purple-900:focus,.btn-check:active+.btn-purple-900:focus,.btn-purple-900:active:focus,.btn-purple-900.active:focus,.show>.btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}.btn-purple-900:disabled,.btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}.btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+.btn-pink-100,.btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+.btn-pink-100,.btn-check:active+.btn-pink-100,.btn-pink-100:active,.btn-pink-100.active,.show>.btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+.btn-pink-100:focus,.btn-check:active+.btn-pink-100:focus,.btn-pink-100:active:focus,.btn-pink-100.active:focus,.show>.btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}.btn-pink-100:disabled,.btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}.btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+.btn-pink-200,.btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+.btn-pink-200,.btn-check:active+.btn-pink-200,.btn-pink-200:active,.btn-pink-200.active,.show>.btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+.btn-pink-200:focus,.btn-check:active+.btn-pink-200:focus,.btn-pink-200:active:focus,.btn-pink-200.active:focus,.show>.btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}.btn-pink-200:disabled,.btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}.btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+.btn-pink-300,.btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+.btn-pink-300,.btn-check:active+.btn-pink-300,.btn-pink-300:active,.btn-pink-300.active,.show>.btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+.btn-pink-300:focus,.btn-check:active+.btn-pink-300:focus,.btn-pink-300:active:focus,.btn-pink-300.active:focus,.show>.btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}.btn-pink-300:disabled,.btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+.btn-pink-400,.btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+.btn-pink-400,.btn-check:active+.btn-pink-400,.btn-pink-400:active,.btn-pink-400.active,.show>.btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+.btn-pink-400:focus,.btn-check:active+.btn-pink-400:focus,.btn-pink-400:active:focus,.btn-pink-400.active:focus,.show>.btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}.btn-pink-400:disabled,.btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+.btn-pink-500,.btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+.btn-pink-500,.btn-check:active+.btn-pink-500,.btn-pink-500:active,.btn-pink-500.active,.show>.btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+.btn-pink-500:focus,.btn-check:active+.btn-pink-500:focus,.btn-pink-500:active:focus,.btn-pink-500.active:focus,.show>.btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}.btn-pink-500:disabled,.btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+.btn-pink-600,.btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+.btn-pink-600,.btn-check:active+.btn-pink-600,.btn-pink-600:active,.btn-pink-600.active,.show>.btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+.btn-pink-600:focus,.btn-check:active+.btn-pink-600:focus,.btn-pink-600:active:focus,.btn-pink-600.active:focus,.show>.btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}.btn-pink-600:disabled,.btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+.btn-pink-700,.btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+.btn-pink-700,.btn-check:active+.btn-pink-700,.btn-pink-700:active,.btn-pink-700.active,.show>.btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+.btn-pink-700:focus,.btn-check:active+.btn-pink-700:focus,.btn-pink-700:active:focus,.btn-pink-700.active:focus,.show>.btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}.btn-pink-700:disabled,.btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}.btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+.btn-pink-800,.btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+.btn-pink-800,.btn-check:active+.btn-pink-800,.btn-pink-800:active,.btn-pink-800.active,.show>.btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+.btn-pink-800:focus,.btn-check:active+.btn-pink-800:focus,.btn-pink-800:active:focus,.btn-pink-800.active:focus,.show>.btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}.btn-pink-800:disabled,.btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}.btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+.btn-pink-900,.btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+.btn-pink-900,.btn-check:active+.btn-pink-900,.btn-pink-900:active,.btn-pink-900.active,.show>.btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+.btn-pink-900:focus,.btn-check:active+.btn-pink-900:focus,.btn-pink-900:active:focus,.btn-pink-900.active:focus,.show>.btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}.btn-pink-900:disabled,.btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-outline-primary{color:#337ab7;border-color:#337ab7}.btn-outline-primary:hover{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#337ab7;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#212529;background-color:transparent}.btn-outline-red{color:#dc3545;border-color:#dc3545}.btn-outline-red:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-red,.btn-outline-red:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-red,.btn-check:active+.btn-outline-red,.btn-outline-red:active,.btn-outline-red.active,.btn-outline-red.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-red:focus,.btn-check:active+.btn-outline-red:focus,.btn-outline-red:active:focus,.btn-outline-red.active:focus,.btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-red:disabled,.btn-outline-red.disabled{color:#dc3545;background-color:transparent}.btn-outline-yellow{color:#ffc107;border-color:#ffc107}.btn-outline-yellow:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-yellow,.btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-yellow,.btn-check:active+.btn-outline-yellow,.btn-outline-yellow:active,.btn-outline-yellow.active,.btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-yellow:focus,.btn-check:active+.btn-outline-yellow:focus,.btn-outline-yellow:active:focus,.btn-outline-yellow.active:focus,.btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-yellow:disabled,.btn-outline-yellow.disabled{color:#ffc107;background-color:transparent}.btn-outline-green{color:#198754;border-color:#198754}.btn-outline-green:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-green,.btn-outline-green:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-green,.btn-check:active+.btn-outline-green,.btn-outline-green:active,.btn-outline-green.active,.btn-outline-green.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-green:focus,.btn-check:active+.btn-outline-green:focus,.btn-outline-green:active:focus,.btn-outline-green.active:focus,.btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-green:disabled,.btn-outline-green.disabled{color:#198754;background-color:transparent}.btn-outline-blue{color:#0d6efd;border-color:#0d6efd}.btn-outline-blue:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-blue,.btn-outline-blue:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+.btn-outline-blue,.btn-check:active+.btn-outline-blue,.btn-outline-blue:active,.btn-outline-blue.active,.btn-outline-blue.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-blue:focus,.btn-check:active+.btn-outline-blue:focus,.btn-outline-blue:active:focus,.btn-outline-blue.active:focus,.btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-outline-blue:disabled,.btn-outline-blue.disabled{color:#0d6efd;background-color:transparent}.btn-outline-cyan{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-cyan:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-cyan,.btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-cyan,.btn-check:active+.btn-outline-cyan,.btn-outline-cyan:active,.btn-outline-cyan.active,.btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-cyan:focus,.btn-check:active+.btn-outline-cyan:focus,.btn-outline-cyan:active:focus,.btn-outline-cyan.active:focus,.btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-cyan:disabled,.btn-outline-cyan.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-indigo{color:#6610f2;border-color:#6610f2}.btn-outline-indigo:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+.btn-outline-indigo,.btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+.btn-outline-indigo,.btn-check:active+.btn-outline-indigo,.btn-outline-indigo:active,.btn-outline-indigo.active,.btn-outline-indigo.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+.btn-outline-indigo:focus,.btn-check:active+.btn-outline-indigo:focus,.btn-outline-indigo:active:focus,.btn-outline-indigo.active:focus,.btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-outline-indigo:disabled,.btn-outline-indigo.disabled{color:#6610f2;background-color:transparent}.btn-outline-purple{color:#6f42c1;border-color:#6f42c1}.btn-outline-purple:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+.btn-outline-purple,.btn-outline-purple:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+.btn-outline-purple,.btn-check:active+.btn-outline-purple,.btn-outline-purple:active,.btn-outline-purple.active,.btn-outline-purple.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+.btn-outline-purple:focus,.btn-check:active+.btn-outline-purple:focus,.btn-outline-purple:active:focus,.btn-outline-purple.active:focus,.btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-outline-purple:disabled,.btn-outline-purple.disabled{color:#6f42c1;background-color:transparent}.btn-outline-pink{color:#d63384;border-color:#d63384}.btn-outline-pink:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+.btn-outline-pink,.btn-outline-pink:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+.btn-outline-pink,.btn-check:active+.btn-outline-pink,.btn-outline-pink:active,.btn-outline-pink.active,.btn-outline-pink.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+.btn-outline-pink:focus,.btn-check:active+.btn-outline-pink:focus,.btn-outline-pink:active:focus,.btn-outline-pink.active:focus,.btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-outline-pink:disabled,.btn-outline-pink.disabled{color:#d63384;background-color:transparent}.btn-outline-darker{color:#1b1f22;border-color:#1b1f22}.btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+.btn-outline-darker,.btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+.btn-outline-darker,.btn-check:active+.btn-outline-darker,.btn-outline-darker:active,.btn-outline-darker.active,.btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+.btn-outline-darker:focus,.btn-check:active+.btn-outline-darker:focus,.btn-outline-darker:active:focus,.btn-outline-darker.active:focus,.btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-outline-darker:disabled,.btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}.btn-outline-darkest{color:#171b1d;border-color:#171b1d}.btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+.btn-outline-darkest,.btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+.btn-outline-darkest,.btn-check:active+.btn-outline-darkest,.btn-outline-darkest:active,.btn-outline-darkest.active,.btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+.btn-outline-darkest:focus,.btn-check:active+.btn-outline-darkest:focus,.btn-outline-darkest:active:focus,.btn-outline-darkest.active:focus,.btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-outline-darkest:disabled,.btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}.btn-outline-gray{color:#ced4da;border-color:#ced4da}.btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+.btn-outline-gray,.btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+.btn-outline-gray,.btn-check:active+.btn-outline-gray,.btn-outline-gray:active,.btn-outline-gray.active,.btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+.btn-outline-gray:focus,.btn-check:active+.btn-outline-gray:focus,.btn-outline-gray:active:focus,.btn-outline-gray.active:focus,.btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-outline-gray:disabled,.btn-outline-gray.disabled{color:#ced4da;background-color:transparent}.btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-gray-100,.btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+.btn-outline-gray-100,.btn-check:active+.btn-outline-gray-100,.btn-outline-gray-100:active,.btn-outline-gray-100.active,.btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-gray-100:focus,.btn-check:active+.btn-outline-gray-100:focus,.btn-outline-gray-100:active:focus,.btn-outline-gray-100.active:focus,.btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-outline-gray-100:disabled,.btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}.btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+.btn-outline-gray-200,.btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+.btn-outline-gray-200,.btn-check:active+.btn-outline-gray-200,.btn-outline-gray-200:active,.btn-outline-gray-200.active,.btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+.btn-outline-gray-200:focus,.btn-check:active+.btn-outline-gray-200:focus,.btn-outline-gray-200:active:focus,.btn-outline-gray-200.active:focus,.btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-outline-gray-200:disabled,.btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}.btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}.btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+.btn-outline-gray-300,.btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+.btn-outline-gray-300,.btn-check:active+.btn-outline-gray-300,.btn-outline-gray-300:active,.btn-outline-gray-300.active,.btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+.btn-outline-gray-300:focus,.btn-check:active+.btn-outline-gray-300:focus,.btn-outline-gray-300:active:focus,.btn-outline-gray-300.active:focus,.btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-outline-gray-300:disabled,.btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}.btn-outline-gray-400{color:#ced4da;border-color:#ced4da}.btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+.btn-outline-gray-400,.btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+.btn-outline-gray-400,.btn-check:active+.btn-outline-gray-400,.btn-outline-gray-400:active,.btn-outline-gray-400.active,.btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+.btn-outline-gray-400:focus,.btn-check:active+.btn-outline-gray-400:focus,.btn-outline-gray-400:active:focus,.btn-outline-gray-400.active:focus,.btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-outline-gray-400:disabled,.btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}.btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}.btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+.btn-outline-gray-500,.btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+.btn-outline-gray-500,.btn-check:active+.btn-outline-gray-500,.btn-outline-gray-500:active,.btn-outline-gray-500.active,.btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+.btn-outline-gray-500:focus,.btn-check:active+.btn-outline-gray-500:focus,.btn-outline-gray-500:active:focus,.btn-outline-gray-500.active:focus,.btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-outline-gray-500:disabled,.btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}.btn-outline-gray-600{color:#6c757d;border-color:#6c757d}.btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-gray-600,.btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+.btn-outline-gray-600,.btn-check:active+.btn-outline-gray-600,.btn-outline-gray-600:active,.btn-outline-gray-600.active,.btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-gray-600:focus,.btn-check:active+.btn-outline-gray-600:focus,.btn-outline-gray-600:active:focus,.btn-outline-gray-600.active:focus,.btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-gray-600:disabled,.btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}.btn-outline-gray-700{color:#495057;border-color:#495057}.btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-gray-700,.btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+.btn-outline-gray-700,.btn-check:active+.btn-outline-gray-700,.btn-outline-gray-700:active,.btn-outline-gray-700.active,.btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+.btn-outline-gray-700:focus,.btn-check:active+.btn-outline-gray-700:focus,.btn-outline-gray-700:active:focus,.btn-outline-gray-700.active:focus,.btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}.btn-outline-gray-700:disabled,.btn-outline-gray-700.disabled{color:#495057;background-color:transparent}.btn-outline-gray-800{color:#343a40;border-color:#343a40}.btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+.btn-outline-gray-800,.btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+.btn-outline-gray-800,.btn-check:active+.btn-outline-gray-800,.btn-outline-gray-800:active,.btn-outline-gray-800.active,.btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+.btn-outline-gray-800:focus,.btn-check:active+.btn-outline-gray-800:focus,.btn-outline-gray-800:active:focus,.btn-outline-gray-800.active:focus,.btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-outline-gray-800:disabled,.btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}.btn-outline-gray-900{color:#212529;border-color:#212529}.btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-gray-900,.btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+.btn-outline-gray-900,.btn-check:active+.btn-outline-gray-900,.btn-outline-gray-900:active,.btn-outline-gray-900.active,.btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-gray-900:focus,.btn-check:active+.btn-outline-gray-900:focus,.btn-outline-gray-900:active:focus,.btn-outline-gray-900.active:focus,.btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-gray-900:disabled,.btn-outline-gray-900.disabled{color:#212529;background-color:transparent}.btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}.btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+.btn-outline-red-100,.btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+.btn-outline-red-100,.btn-check:active+.btn-outline-red-100,.btn-outline-red-100:active,.btn-outline-red-100.active,.btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+.btn-outline-red-100:focus,.btn-check:active+.btn-outline-red-100:focus,.btn-outline-red-100:active:focus,.btn-outline-red-100.active:focus,.btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-outline-red-100:disabled,.btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}.btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}.btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+.btn-outline-red-200,.btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+.btn-outline-red-200,.btn-check:active+.btn-outline-red-200,.btn-outline-red-200:active,.btn-outline-red-200.active,.btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+.btn-outline-red-200:focus,.btn-check:active+.btn-outline-red-200:focus,.btn-outline-red-200:active:focus,.btn-outline-red-200.active:focus,.btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-outline-red-200:disabled,.btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}.btn-outline-red-300{color:#ea868f;border-color:#ea868f}.btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+.btn-outline-red-300,.btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+.btn-outline-red-300,.btn-check:active+.btn-outline-red-300,.btn-outline-red-300:active,.btn-outline-red-300.active,.btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+.btn-outline-red-300:focus,.btn-check:active+.btn-outline-red-300:focus,.btn-outline-red-300:active:focus,.btn-outline-red-300.active:focus,.btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-outline-red-300:disabled,.btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}.btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}.btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+.btn-outline-red-400,.btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+.btn-outline-red-400,.btn-check:active+.btn-outline-red-400,.btn-outline-red-400:active,.btn-outline-red-400.active,.btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+.btn-outline-red-400:focus,.btn-check:active+.btn-outline-red-400:focus,.btn-outline-red-400:active:focus,.btn-outline-red-400.active:focus,.btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-outline-red-400:disabled,.btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}.btn-outline-red-500{color:#dc3545;border-color:#dc3545}.btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-red-500,.btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-red-500,.btn-check:active+.btn-outline-red-500,.btn-outline-red-500:active,.btn-outline-red-500.active,.btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-red-500:focus,.btn-check:active+.btn-outline-red-500:focus,.btn-outline-red-500:active:focus,.btn-outline-red-500.active:focus,.btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-red-500:disabled,.btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}.btn-outline-red-600{color:#b02a37;border-color:#b02a37}.btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+.btn-outline-red-600,.btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+.btn-outline-red-600,.btn-check:active+.btn-outline-red-600,.btn-outline-red-600:active,.btn-outline-red-600.active,.btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+.btn-outline-red-600:focus,.btn-check:active+.btn-outline-red-600:focus,.btn-outline-red-600:active:focus,.btn-outline-red-600.active:focus,.btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-outline-red-600:disabled,.btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}.btn-outline-red-700{color:#842029;border-color:#842029}.btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+.btn-outline-red-700,.btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+.btn-outline-red-700,.btn-check:active+.btn-outline-red-700,.btn-outline-red-700:active,.btn-outline-red-700.active,.btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+.btn-outline-red-700:focus,.btn-check:active+.btn-outline-red-700:focus,.btn-outline-red-700:active:focus,.btn-outline-red-700.active:focus,.btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}.btn-outline-red-700:disabled,.btn-outline-red-700.disabled{color:#842029;background-color:transparent}.btn-outline-red-800{color:#58151c;border-color:#58151c}.btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+.btn-outline-red-800,.btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+.btn-outline-red-800,.btn-check:active+.btn-outline-red-800,.btn-outline-red-800:active,.btn-outline-red-800.active,.btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+.btn-outline-red-800:focus,.btn-check:active+.btn-outline-red-800:focus,.btn-outline-red-800:active:focus,.btn-outline-red-800.active:focus,.btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-outline-red-800:disabled,.btn-outline-red-800.disabled{color:#58151c;background-color:transparent}.btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}.btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+.btn-outline-red-900,.btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+.btn-outline-red-900,.btn-check:active+.btn-outline-red-900,.btn-outline-red-900:active,.btn-outline-red-900.active,.btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+.btn-outline-red-900:focus,.btn-check:active+.btn-outline-red-900:focus,.btn-outline-red-900:active:focus,.btn-outline-red-900.active:focus,.btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-outline-red-900:disabled,.btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}.btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}.btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+.btn-outline-yellow-100,.btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+.btn-outline-yellow-100,.btn-check:active+.btn-outline-yellow-100,.btn-outline-yellow-100:active,.btn-outline-yellow-100.active,.btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+.btn-outline-yellow-100:focus,.btn-check:active+.btn-outline-yellow-100:focus,.btn-outline-yellow-100:active:focus,.btn-outline-yellow-100.active:focus,.btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-outline-yellow-100:disabled,.btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}.btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}.btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+.btn-outline-yellow-200,.btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+.btn-outline-yellow-200,.btn-check:active+.btn-outline-yellow-200,.btn-outline-yellow-200:active,.btn-outline-yellow-200.active,.btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+.btn-outline-yellow-200:focus,.btn-check:active+.btn-outline-yellow-200:focus,.btn-outline-yellow-200:active:focus,.btn-outline-yellow-200.active:focus,.btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-outline-yellow-200:disabled,.btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}.btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}.btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+.btn-outline-yellow-300,.btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+.btn-outline-yellow-300,.btn-check:active+.btn-outline-yellow-300,.btn-outline-yellow-300:active,.btn-outline-yellow-300.active,.btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+.btn-outline-yellow-300:focus,.btn-check:active+.btn-outline-yellow-300:focus,.btn-outline-yellow-300:active:focus,.btn-outline-yellow-300.active:focus,.btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-outline-yellow-300:disabled,.btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}.btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}.btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+.btn-outline-yellow-400,.btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+.btn-outline-yellow-400,.btn-check:active+.btn-outline-yellow-400,.btn-outline-yellow-400:active,.btn-outline-yellow-400.active,.btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+.btn-outline-yellow-400:focus,.btn-check:active+.btn-outline-yellow-400:focus,.btn-outline-yellow-400:active:focus,.btn-outline-yellow-400.active:focus,.btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-outline-yellow-400:disabled,.btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}.btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}.btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-yellow-500,.btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-yellow-500,.btn-check:active+.btn-outline-yellow-500,.btn-outline-yellow-500:active,.btn-outline-yellow-500.active,.btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-yellow-500:focus,.btn-check:active+.btn-outline-yellow-500:focus,.btn-outline-yellow-500:active:focus,.btn-outline-yellow-500.active:focus,.btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-yellow-500:disabled,.btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}.btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}.btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+.btn-outline-yellow-600,.btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+.btn-outline-yellow-600,.btn-check:active+.btn-outline-yellow-600,.btn-outline-yellow-600:active,.btn-outline-yellow-600.active,.btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+.btn-outline-yellow-600:focus,.btn-check:active+.btn-outline-yellow-600:focus,.btn-outline-yellow-600:active:focus,.btn-outline-yellow-600.active:focus,.btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-outline-yellow-600:disabled,.btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}.btn-outline-yellow-700{color:#997404;border-color:#997404}.btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+.btn-outline-yellow-700,.btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+.btn-outline-yellow-700,.btn-check:active+.btn-outline-yellow-700,.btn-outline-yellow-700:active,.btn-outline-yellow-700.active,.btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+.btn-outline-yellow-700:focus,.btn-check:active+.btn-outline-yellow-700:focus,.btn-outline-yellow-700:active:focus,.btn-outline-yellow-700.active:focus,.btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}.btn-outline-yellow-700:disabled,.btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}.btn-outline-yellow-800{color:#664d03;border-color:#664d03}.btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+.btn-outline-yellow-800,.btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+.btn-outline-yellow-800,.btn-check:active+.btn-outline-yellow-800,.btn-outline-yellow-800:active,.btn-outline-yellow-800.active,.btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+.btn-outline-yellow-800:focus,.btn-check:active+.btn-outline-yellow-800:focus,.btn-outline-yellow-800:active:focus,.btn-outline-yellow-800.active:focus,.btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-outline-yellow-800:disabled,.btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}.btn-outline-yellow-900{color:#332701;border-color:#332701}.btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+.btn-outline-yellow-900,.btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+.btn-outline-yellow-900,.btn-check:active+.btn-outline-yellow-900,.btn-outline-yellow-900:active,.btn-outline-yellow-900.active,.btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+.btn-outline-yellow-900:focus,.btn-check:active+.btn-outline-yellow-900:focus,.btn-outline-yellow-900:active:focus,.btn-outline-yellow-900.active:focus,.btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}.btn-outline-yellow-900:disabled,.btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}.btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}.btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+.btn-outline-green-100,.btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+.btn-outline-green-100,.btn-check:active+.btn-outline-green-100,.btn-outline-green-100:active,.btn-outline-green-100.active,.btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+.btn-outline-green-100:focus,.btn-check:active+.btn-outline-green-100:focus,.btn-outline-green-100:active:focus,.btn-outline-green-100.active:focus,.btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-outline-green-100:disabled,.btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}.btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}.btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+.btn-outline-green-200,.btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+.btn-outline-green-200,.btn-check:active+.btn-outline-green-200,.btn-outline-green-200:active,.btn-outline-green-200.active,.btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+.btn-outline-green-200:focus,.btn-check:active+.btn-outline-green-200:focus,.btn-outline-green-200:active:focus,.btn-outline-green-200.active:focus,.btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-outline-green-200:disabled,.btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}.btn-outline-green-300{color:#75b798;border-color:#75b798}.btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+.btn-outline-green-300,.btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+.btn-outline-green-300,.btn-check:active+.btn-outline-green-300,.btn-outline-green-300:active,.btn-outline-green-300.active,.btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+.btn-outline-green-300:focus,.btn-check:active+.btn-outline-green-300:focus,.btn-outline-green-300:active:focus,.btn-outline-green-300.active:focus,.btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-outline-green-300:disabled,.btn-outline-green-300.disabled{color:#75b798;background-color:transparent}.btn-outline-green-400{color:#479f76;border-color:#479f76}.btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+.btn-outline-green-400,.btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+.btn-outline-green-400,.btn-check:active+.btn-outline-green-400,.btn-outline-green-400:active,.btn-outline-green-400.active,.btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+.btn-outline-green-400:focus,.btn-check:active+.btn-outline-green-400:focus,.btn-outline-green-400:active:focus,.btn-outline-green-400.active:focus,.btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-outline-green-400:disabled,.btn-outline-green-400.disabled{color:#479f76;background-color:transparent}.btn-outline-green-500{color:#198754;border-color:#198754}.btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-green-500,.btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-green-500,.btn-check:active+.btn-outline-green-500,.btn-outline-green-500:active,.btn-outline-green-500.active,.btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-green-500:focus,.btn-check:active+.btn-outline-green-500:focus,.btn-outline-green-500:active:focus,.btn-outline-green-500.active:focus,.btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-green-500:disabled,.btn-outline-green-500.disabled{color:#198754;background-color:transparent}.btn-outline-green-600{color:#146c43;border-color:#146c43}.btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+.btn-outline-green-600,.btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+.btn-outline-green-600,.btn-check:active+.btn-outline-green-600,.btn-outline-green-600:active,.btn-outline-green-600.active,.btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+.btn-outline-green-600:focus,.btn-check:active+.btn-outline-green-600:focus,.btn-outline-green-600:active:focus,.btn-outline-green-600.active:focus,.btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-outline-green-600:disabled,.btn-outline-green-600.disabled{color:#146c43;background-color:transparent}.btn-outline-green-700{color:#0f5132;border-color:#0f5132}.btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+.btn-outline-green-700,.btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+.btn-outline-green-700,.btn-check:active+.btn-outline-green-700,.btn-outline-green-700:active,.btn-outline-green-700.active,.btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+.btn-outline-green-700:focus,.btn-check:active+.btn-outline-green-700:focus,.btn-outline-green-700:active:focus,.btn-outline-green-700.active:focus,.btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-outline-green-700:disabled,.btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}.btn-outline-green-800{color:#0a3622;border-color:#0a3622}.btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+.btn-outline-green-800,.btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+.btn-outline-green-800,.btn-check:active+.btn-outline-green-800,.btn-outline-green-800:active,.btn-outline-green-800.active,.btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+.btn-outline-green-800:focus,.btn-check:active+.btn-outline-green-800:focus,.btn-outline-green-800:active:focus,.btn-outline-green-800.active:focus,.btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-outline-green-800:disabled,.btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}.btn-outline-green-900{color:#051b11;border-color:#051b11}.btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+.btn-outline-green-900,.btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+.btn-outline-green-900,.btn-check:active+.btn-outline-green-900,.btn-outline-green-900:active,.btn-outline-green-900.active,.btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+.btn-outline-green-900:focus,.btn-check:active+.btn-outline-green-900:focus,.btn-outline-green-900:active:focus,.btn-outline-green-900.active:focus,.btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-outline-green-900:disabled,.btn-outline-green-900.disabled{color:#051b11;background-color:transparent}.btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}.btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+.btn-outline-blue-100,.btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+.btn-outline-blue-100,.btn-check:active+.btn-outline-blue-100,.btn-outline-blue-100:active,.btn-outline-blue-100.active,.btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+.btn-outline-blue-100:focus,.btn-check:active+.btn-outline-blue-100:focus,.btn-outline-blue-100:active:focus,.btn-outline-blue-100.active:focus,.btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-outline-blue-100:disabled,.btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}.btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}.btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+.btn-outline-blue-200,.btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+.btn-outline-blue-200,.btn-check:active+.btn-outline-blue-200,.btn-outline-blue-200:active,.btn-outline-blue-200.active,.btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+.btn-outline-blue-200:focus,.btn-check:active+.btn-outline-blue-200:focus,.btn-outline-blue-200:active:focus,.btn-outline-blue-200.active:focus,.btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-outline-blue-200:disabled,.btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}.btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}.btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+.btn-outline-blue-300,.btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+.btn-outline-blue-300,.btn-check:active+.btn-outline-blue-300,.btn-outline-blue-300:active,.btn-outline-blue-300.active,.btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+.btn-outline-blue-300:focus,.btn-check:active+.btn-outline-blue-300:focus,.btn-outline-blue-300:active:focus,.btn-outline-blue-300.active:focus,.btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-outline-blue-300:disabled,.btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}.btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}.btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+.btn-outline-blue-400,.btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+.btn-outline-blue-400,.btn-check:active+.btn-outline-blue-400,.btn-outline-blue-400:active,.btn-outline-blue-400.active,.btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+.btn-outline-blue-400:focus,.btn-check:active+.btn-outline-blue-400:focus,.btn-outline-blue-400:active:focus,.btn-outline-blue-400.active:focus,.btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-outline-blue-400:disabled,.btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}.btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}.btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-blue-500,.btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+.btn-outline-blue-500,.btn-check:active+.btn-outline-blue-500,.btn-outline-blue-500:active,.btn-outline-blue-500.active,.btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-blue-500:focus,.btn-check:active+.btn-outline-blue-500:focus,.btn-outline-blue-500:active:focus,.btn-outline-blue-500.active:focus,.btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-outline-blue-500:disabled,.btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}.btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}.btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+.btn-outline-blue-600,.btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+.btn-outline-blue-600,.btn-check:active+.btn-outline-blue-600,.btn-outline-blue-600:active,.btn-outline-blue-600.active,.btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+.btn-outline-blue-600:focus,.btn-check:active+.btn-outline-blue-600:focus,.btn-outline-blue-600:active:focus,.btn-outline-blue-600.active:focus,.btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-outline-blue-600:disabled,.btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}.btn-outline-blue-700{color:#084298;border-color:#084298}.btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+.btn-outline-blue-700,.btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+.btn-outline-blue-700,.btn-check:active+.btn-outline-blue-700,.btn-outline-blue-700:active,.btn-outline-blue-700.active,.btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+.btn-outline-blue-700:focus,.btn-check:active+.btn-outline-blue-700:focus,.btn-outline-blue-700:active:focus,.btn-outline-blue-700.active:focus,.btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}.btn-outline-blue-700:disabled,.btn-outline-blue-700.disabled{color:#084298;background-color:transparent}.btn-outline-blue-800{color:#052c65;border-color:#052c65}.btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+.btn-outline-blue-800,.btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+.btn-outline-blue-800,.btn-check:active+.btn-outline-blue-800,.btn-outline-blue-800:active,.btn-outline-blue-800.active,.btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+.btn-outline-blue-800:focus,.btn-check:active+.btn-outline-blue-800:focus,.btn-outline-blue-800:active:focus,.btn-outline-blue-800.active:focus,.btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-outline-blue-800:disabled,.btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}.btn-outline-blue-900{color:#031633;border-color:#031633}.btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+.btn-outline-blue-900,.btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+.btn-outline-blue-900,.btn-check:active+.btn-outline-blue-900,.btn-outline-blue-900:active,.btn-outline-blue-900.active,.btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+.btn-outline-blue-900:focus,.btn-check:active+.btn-outline-blue-900:focus,.btn-outline-blue-900:active:focus,.btn-outline-blue-900.active:focus,.btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}.btn-outline-blue-900:disabled,.btn-outline-blue-900.disabled{color:#031633;background-color:transparent}.btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}.btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+.btn-outline-cyan-100,.btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+.btn-outline-cyan-100,.btn-check:active+.btn-outline-cyan-100,.btn-outline-cyan-100:active,.btn-outline-cyan-100.active,.btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+.btn-outline-cyan-100:focus,.btn-check:active+.btn-outline-cyan-100:focus,.btn-outline-cyan-100:active:focus,.btn-outline-cyan-100.active:focus,.btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-outline-cyan-100:disabled,.btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}.btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}.btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+.btn-outline-cyan-200,.btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+.btn-outline-cyan-200,.btn-check:active+.btn-outline-cyan-200,.btn-outline-cyan-200:active,.btn-outline-cyan-200.active,.btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+.btn-outline-cyan-200:focus,.btn-check:active+.btn-outline-cyan-200:focus,.btn-outline-cyan-200:active:focus,.btn-outline-cyan-200.active:focus,.btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-outline-cyan-200:disabled,.btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}.btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}.btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+.btn-outline-cyan-300,.btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+.btn-outline-cyan-300,.btn-check:active+.btn-outline-cyan-300,.btn-outline-cyan-300:active,.btn-outline-cyan-300.active,.btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+.btn-outline-cyan-300:focus,.btn-check:active+.btn-outline-cyan-300:focus,.btn-outline-cyan-300:active:focus,.btn-outline-cyan-300.active:focus,.btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-outline-cyan-300:disabled,.btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}.btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}.btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+.btn-outline-cyan-400,.btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+.btn-outline-cyan-400,.btn-check:active+.btn-outline-cyan-400,.btn-outline-cyan-400:active,.btn-outline-cyan-400.active,.btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+.btn-outline-cyan-400:focus,.btn-check:active+.btn-outline-cyan-400:focus,.btn-outline-cyan-400:active:focus,.btn-outline-cyan-400.active:focus,.btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-outline-cyan-400:disabled,.btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}.btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-cyan-500,.btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-cyan-500,.btn-check:active+.btn-outline-cyan-500,.btn-outline-cyan-500:active,.btn-outline-cyan-500.active,.btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-cyan-500:focus,.btn-check:active+.btn-outline-cyan-500:focus,.btn-outline-cyan-500:active:focus,.btn-outline-cyan-500.active:focus,.btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-cyan-500:disabled,.btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}.btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+.btn-outline-cyan-600,.btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+.btn-outline-cyan-600,.btn-check:active+.btn-outline-cyan-600,.btn-outline-cyan-600:active,.btn-outline-cyan-600.active,.btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+.btn-outline-cyan-600:focus,.btn-check:active+.btn-outline-cyan-600:focus,.btn-outline-cyan-600:active:focus,.btn-outline-cyan-600.active:focus,.btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-outline-cyan-600:disabled,.btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}.btn-outline-cyan-700{color:#087990;border-color:#087990}.btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+.btn-outline-cyan-700,.btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+.btn-outline-cyan-700,.btn-check:active+.btn-outline-cyan-700,.btn-outline-cyan-700:active,.btn-outline-cyan-700.active,.btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+.btn-outline-cyan-700:focus,.btn-check:active+.btn-outline-cyan-700:focus,.btn-outline-cyan-700:active:focus,.btn-outline-cyan-700.active:focus,.btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}.btn-outline-cyan-700:disabled,.btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}.btn-outline-cyan-800{color:#055160;border-color:#055160}.btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+.btn-outline-cyan-800,.btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+.btn-outline-cyan-800,.btn-check:active+.btn-outline-cyan-800,.btn-outline-cyan-800:active,.btn-outline-cyan-800.active,.btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+.btn-outline-cyan-800:focus,.btn-check:active+.btn-outline-cyan-800:focus,.btn-outline-cyan-800:active:focus,.btn-outline-cyan-800.active:focus,.btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}.btn-outline-cyan-800:disabled,.btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}.btn-outline-cyan-900{color:#032830;border-color:#032830}.btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+.btn-outline-cyan-900,.btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+.btn-outline-cyan-900,.btn-check:active+.btn-outline-cyan-900,.btn-outline-cyan-900:active,.btn-outline-cyan-900.active,.btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+.btn-outline-cyan-900:focus,.btn-check:active+.btn-outline-cyan-900:focus,.btn-outline-cyan-900:active:focus,.btn-outline-cyan-900.active:focus,.btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}.btn-outline-cyan-900:disabled,.btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}.btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}.btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+.btn-outline-indigo-100,.btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+.btn-outline-indigo-100,.btn-check:active+.btn-outline-indigo-100,.btn-outline-indigo-100:active,.btn-outline-indigo-100.active,.btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+.btn-outline-indigo-100:focus,.btn-check:active+.btn-outline-indigo-100:focus,.btn-outline-indigo-100:active:focus,.btn-outline-indigo-100.active:focus,.btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-outline-indigo-100:disabled,.btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}.btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}.btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+.btn-outline-indigo-200,.btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+.btn-outline-indigo-200,.btn-check:active+.btn-outline-indigo-200,.btn-outline-indigo-200:active,.btn-outline-indigo-200.active,.btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+.btn-outline-indigo-200:focus,.btn-check:active+.btn-outline-indigo-200:focus,.btn-outline-indigo-200:active:focus,.btn-outline-indigo-200.active:focus,.btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-outline-indigo-200:disabled,.btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}.btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}.btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+.btn-outline-indigo-300,.btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+.btn-outline-indigo-300,.btn-check:active+.btn-outline-indigo-300,.btn-outline-indigo-300:active,.btn-outline-indigo-300.active,.btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+.btn-outline-indigo-300:focus,.btn-check:active+.btn-outline-indigo-300:focus,.btn-outline-indigo-300:active:focus,.btn-outline-indigo-300.active:focus,.btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-outline-indigo-300:disabled,.btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}.btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}.btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+.btn-outline-indigo-400,.btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+.btn-outline-indigo-400,.btn-check:active+.btn-outline-indigo-400,.btn-outline-indigo-400:active,.btn-outline-indigo-400.active,.btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+.btn-outline-indigo-400:focus,.btn-check:active+.btn-outline-indigo-400:focus,.btn-outline-indigo-400:active:focus,.btn-outline-indigo-400.active:focus,.btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-outline-indigo-400:disabled,.btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}.btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}.btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+.btn-outline-indigo-500,.btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+.btn-outline-indigo-500,.btn-check:active+.btn-outline-indigo-500,.btn-outline-indigo-500:active,.btn-outline-indigo-500.active,.btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+.btn-outline-indigo-500:focus,.btn-check:active+.btn-outline-indigo-500:focus,.btn-outline-indigo-500:active:focus,.btn-outline-indigo-500.active:focus,.btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-outline-indigo-500:disabled,.btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}.btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}.btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+.btn-outline-indigo-600,.btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+.btn-outline-indigo-600,.btn-check:active+.btn-outline-indigo-600,.btn-outline-indigo-600:active,.btn-outline-indigo-600.active,.btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+.btn-outline-indigo-600:focus,.btn-check:active+.btn-outline-indigo-600:focus,.btn-outline-indigo-600:active:focus,.btn-outline-indigo-600.active:focus,.btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-outline-indigo-600:disabled,.btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}.btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}.btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+.btn-outline-indigo-700,.btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+.btn-outline-indigo-700,.btn-check:active+.btn-outline-indigo-700,.btn-outline-indigo-700:active,.btn-outline-indigo-700.active,.btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+.btn-outline-indigo-700:focus,.btn-check:active+.btn-outline-indigo-700:focus,.btn-outline-indigo-700:active:focus,.btn-outline-indigo-700.active:focus,.btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-outline-indigo-700:disabled,.btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}.btn-outline-indigo-800{color:#290661;border-color:#290661}.btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+.btn-outline-indigo-800,.btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+.btn-outline-indigo-800,.btn-check:active+.btn-outline-indigo-800,.btn-outline-indigo-800:active,.btn-outline-indigo-800.active,.btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+.btn-outline-indigo-800:focus,.btn-check:active+.btn-outline-indigo-800:focus,.btn-outline-indigo-800:active:focus,.btn-outline-indigo-800.active:focus,.btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}.btn-outline-indigo-800:disabled,.btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}.btn-outline-indigo-900{color:#140330;border-color:#140330}.btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+.btn-outline-indigo-900,.btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+.btn-outline-indigo-900,.btn-check:active+.btn-outline-indigo-900,.btn-outline-indigo-900:active,.btn-outline-indigo-900.active,.btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+.btn-outline-indigo-900:focus,.btn-check:active+.btn-outline-indigo-900:focus,.btn-outline-indigo-900:active:focus,.btn-outline-indigo-900.active:focus,.btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}.btn-outline-indigo-900:disabled,.btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}.btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}.btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+.btn-outline-purple-100,.btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+.btn-outline-purple-100,.btn-check:active+.btn-outline-purple-100,.btn-outline-purple-100:active,.btn-outline-purple-100.active,.btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+.btn-outline-purple-100:focus,.btn-check:active+.btn-outline-purple-100:focus,.btn-outline-purple-100:active:focus,.btn-outline-purple-100.active:focus,.btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-outline-purple-100:disabled,.btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}.btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}.btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+.btn-outline-purple-200,.btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+.btn-outline-purple-200,.btn-check:active+.btn-outline-purple-200,.btn-outline-purple-200:active,.btn-outline-purple-200.active,.btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+.btn-outline-purple-200:focus,.btn-check:active+.btn-outline-purple-200:focus,.btn-outline-purple-200:active:focus,.btn-outline-purple-200.active:focus,.btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-outline-purple-200:disabled,.btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}.btn-outline-purple-300{color:#a98eda;border-color:#a98eda}.btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+.btn-outline-purple-300,.btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+.btn-outline-purple-300,.btn-check:active+.btn-outline-purple-300,.btn-outline-purple-300:active,.btn-outline-purple-300.active,.btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+.btn-outline-purple-300:focus,.btn-check:active+.btn-outline-purple-300:focus,.btn-outline-purple-300:active:focus,.btn-outline-purple-300.active:focus,.btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-outline-purple-300:disabled,.btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}.btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}.btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+.btn-outline-purple-400,.btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+.btn-outline-purple-400,.btn-check:active+.btn-outline-purple-400,.btn-outline-purple-400:active,.btn-outline-purple-400.active,.btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+.btn-outline-purple-400:focus,.btn-check:active+.btn-outline-purple-400:focus,.btn-outline-purple-400:active:focus,.btn-outline-purple-400.active:focus,.btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-outline-purple-400:disabled,.btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}.btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}.btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+.btn-outline-purple-500,.btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+.btn-outline-purple-500,.btn-check:active+.btn-outline-purple-500,.btn-outline-purple-500:active,.btn-outline-purple-500.active,.btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+.btn-outline-purple-500:focus,.btn-check:active+.btn-outline-purple-500:focus,.btn-outline-purple-500:active:focus,.btn-outline-purple-500.active:focus,.btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-outline-purple-500:disabled,.btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}.btn-outline-purple-600{color:#59359a;border-color:#59359a}.btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+.btn-outline-purple-600,.btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+.btn-outline-purple-600,.btn-check:active+.btn-outline-purple-600,.btn-outline-purple-600:active,.btn-outline-purple-600.active,.btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+.btn-outline-purple-600:focus,.btn-check:active+.btn-outline-purple-600:focus,.btn-outline-purple-600:active:focus,.btn-outline-purple-600.active:focus,.btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-outline-purple-600:disabled,.btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}.btn-outline-purple-700{color:#432874;border-color:#432874}.btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+.btn-outline-purple-700,.btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+.btn-outline-purple-700,.btn-check:active+.btn-outline-purple-700,.btn-outline-purple-700:active,.btn-outline-purple-700.active,.btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+.btn-outline-purple-700:focus,.btn-check:active+.btn-outline-purple-700:focus,.btn-outline-purple-700:active:focus,.btn-outline-purple-700.active:focus,.btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}.btn-outline-purple-700:disabled,.btn-outline-purple-700.disabled{color:#432874;background-color:transparent}.btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}.btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+.btn-outline-purple-800,.btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+.btn-outline-purple-800,.btn-check:active+.btn-outline-purple-800,.btn-outline-purple-800:active,.btn-outline-purple-800.active,.btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+.btn-outline-purple-800:focus,.btn-check:active+.btn-outline-purple-800:focus,.btn-outline-purple-800:active:focus,.btn-outline-purple-800.active:focus,.btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-outline-purple-800:disabled,.btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}.btn-outline-purple-900{color:#160d27;border-color:#160d27}.btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+.btn-outline-purple-900,.btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+.btn-outline-purple-900,.btn-check:active+.btn-outline-purple-900,.btn-outline-purple-900:active,.btn-outline-purple-900.active,.btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+.btn-outline-purple-900:focus,.btn-check:active+.btn-outline-purple-900:focus,.btn-outline-purple-900:active:focus,.btn-outline-purple-900.active:focus,.btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-outline-purple-900:disabled,.btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}.btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}.btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+.btn-outline-pink-100,.btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+.btn-outline-pink-100,.btn-check:active+.btn-outline-pink-100,.btn-outline-pink-100:active,.btn-outline-pink-100.active,.btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+.btn-outline-pink-100:focus,.btn-check:active+.btn-outline-pink-100:focus,.btn-outline-pink-100:active:focus,.btn-outline-pink-100.active:focus,.btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-outline-pink-100:disabled,.btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}.btn-outline-pink-200{color:#efadce;border-color:#efadce}.btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+.btn-outline-pink-200,.btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+.btn-outline-pink-200,.btn-check:active+.btn-outline-pink-200,.btn-outline-pink-200:active,.btn-outline-pink-200.active,.btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+.btn-outline-pink-200:focus,.btn-check:active+.btn-outline-pink-200:focus,.btn-outline-pink-200:active:focus,.btn-outline-pink-200.active:focus,.btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-outline-pink-200:disabled,.btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}.btn-outline-pink-300{color:#e685b5;border-color:#e685b5}.btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+.btn-outline-pink-300,.btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+.btn-outline-pink-300,.btn-check:active+.btn-outline-pink-300,.btn-outline-pink-300:active,.btn-outline-pink-300.active,.btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+.btn-outline-pink-300:focus,.btn-check:active+.btn-outline-pink-300:focus,.btn-outline-pink-300:active:focus,.btn-outline-pink-300.active:focus,.btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-outline-pink-300:disabled,.btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}.btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}.btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+.btn-outline-pink-400,.btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+.btn-outline-pink-400,.btn-check:active+.btn-outline-pink-400,.btn-outline-pink-400:active,.btn-outline-pink-400.active,.btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+.btn-outline-pink-400:focus,.btn-check:active+.btn-outline-pink-400:focus,.btn-outline-pink-400:active:focus,.btn-outline-pink-400.active:focus,.btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-outline-pink-400:disabled,.btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}.btn-outline-pink-500{color:#d63384;border-color:#d63384}.btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+.btn-outline-pink-500,.btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+.btn-outline-pink-500,.btn-check:active+.btn-outline-pink-500,.btn-outline-pink-500:active,.btn-outline-pink-500.active,.btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+.btn-outline-pink-500:focus,.btn-check:active+.btn-outline-pink-500:focus,.btn-outline-pink-500:active:focus,.btn-outline-pink-500.active:focus,.btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-outline-pink-500:disabled,.btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}.btn-outline-pink-600{color:#ab296a;border-color:#ab296a}.btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+.btn-outline-pink-600,.btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+.btn-outline-pink-600,.btn-check:active+.btn-outline-pink-600,.btn-outline-pink-600:active,.btn-outline-pink-600.active,.btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+.btn-outline-pink-600:focus,.btn-check:active+.btn-outline-pink-600:focus,.btn-outline-pink-600:active:focus,.btn-outline-pink-600.active:focus,.btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-outline-pink-600:disabled,.btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}.btn-outline-pink-700{color:#801f4f;border-color:#801f4f}.btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+.btn-outline-pink-700,.btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+.btn-outline-pink-700,.btn-check:active+.btn-outline-pink-700,.btn-outline-pink-700:active,.btn-outline-pink-700.active,.btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+.btn-outline-pink-700:focus,.btn-check:active+.btn-outline-pink-700:focus,.btn-outline-pink-700:active:focus,.btn-outline-pink-700.active:focus,.btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-outline-pink-700:disabled,.btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}.btn-outline-pink-800{color:#561435;border-color:#561435}.btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+.btn-outline-pink-800,.btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+.btn-outline-pink-800,.btn-check:active+.btn-outline-pink-800,.btn-outline-pink-800:active,.btn-outline-pink-800.active,.btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+.btn-outline-pink-800:focus,.btn-check:active+.btn-outline-pink-800:focus,.btn-outline-pink-800:active:focus,.btn-outline-pink-800.active:focus,.btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}.btn-outline-pink-800:disabled,.btn-outline-pink-800.disabled{color:#561435;background-color:transparent}.btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}.btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+.btn-outline-pink-900,.btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+.btn-outline-pink-900,.btn-check:active+.btn-outline-pink-900,.btn-outline-pink-900:active,.btn-outline-pink-900.active,.btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+.btn-outline-pink-900:focus,.btn-check:active+.btn-outline-pink-900:focus,.btn-outline-pink-900:active:focus,.btn-outline-pink-900.active:focus,.btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-outline-pink-900:disabled,.btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.375rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle:after{display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:#00000026}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.375rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media (min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:#000000e6}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#000000e6}.navbar-light .navbar-nav .nav-link{color:#0000008c}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:#000000b3}.navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:#000000e6}.navbar-light .navbar-toggler{color:#0000008c;border-color:#0000001a}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#0000008c}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#000000e6}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#ffffff8c}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}.navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#ffffff8c}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.375rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;color:#343a40;background-color:"unset";border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;color:#343a40;background-color:"unset";border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#343a40;background-color:#cfe2ff;box-shadow:inset 0 -1px #dee2e6}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion: reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.accordion-header{margin-bottom:0}.accordion-item{background-color:transparent;border:1px solid #dee2e6}.accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E"))}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#1f496e;background-color:#d6e4f1;border-color:#c2d7e9}.alert-primary .alert-link{color:#193a58}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}.alert-red{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-red .alert-link{color:#6a1a21}.alert-yellow{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-yellow .alert-link{color:#523e02}.alert-green{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-green .alert-link{color:#0c4128}.alert-blue{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-blue .alert-link{color:#06357a}.alert-cyan{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-cyan .alert-link{color:#04414d}.alert-indigo{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}.alert-indigo .alert-link{color:#310874}.alert-purple{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}.alert-purple .alert-link{color:#36205d}.alert-pink{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}.alert-pink .alert-link{color:#66193f}.alert-darker{color:#101314;background-color:#d1d2d3;border-color:#bbbcbd}.alert-darker .alert-link{color:#0d0f10}.alert-darkest{color:#0e1011;background-color:#d1d1d2;border-color:#b9bbbb}.alert-darkest .alert-link{color:#0b0d0e}.alert-gray{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}.alert-gray .alert-link{color:#424446}.alert-gray-100{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-gray-100 .alert-link{color:#4f5050}.alert-gray-200{color:#5d5e60;background-color:#fbfbfc;border-color:#f8f9fa}.alert-gray-200 .alert-link{color:#4a4b4d}.alert-gray-300{color:#595a5c;background-color:#f8f9fa;border-color:#f5f6f8}.alert-gray-300 .alert-link{color:#47484a}.alert-gray-400{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}.alert-gray-400 .alert-link{color:#424446}.alert-gray-500{color:#686d71;background-color:#eff0f2;border-color:#e6e9eb}.alert-gray-500 .alert-link{color:#53575a}.alert-gray-600{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-gray-600 .alert-link{color:#34383c}.alert-gray-700{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-gray-700 .alert-link{color:#23262a}.alert-gray-800{color:#1f2326;background-color:#d6d8d9;border-color:#c2c4c6}.alert-gray-800 .alert-link{color:#191c1e}.alert-gray-900{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-gray-900 .alert-link{color:#101214}.alert-red-100{color:#635657;background-color:#fef7f8;border-color:#fdf3f4}.alert-red-100 .alert-link{color:#4f4546}.alert-red-200{color:#604648;background-color:#fceff0;border-color:#fbe7e9}.alert-red-200 .alert-link{color:#4d383a}.alert-red-300{color:#8c5056;background-color:#fbe7e9;border-color:#f9dbdd}.alert-red-300 .alert-link{color:#704045}.alert-red-400{color:#883840;background-color:#f9dfe1;border-color:#f7ced2}.alert-red-400 .alert-link{color:#6d2d33}.alert-red-500{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-red-500 .alert-link{color:#6a1a21}.alert-red-600{color:#6a1921;background-color:#efd4d7;border-color:#e7bfc3}.alert-red-600 .alert-link{color:#55141a}.alert-red-700{color:#4f1319;background-color:#e6d2d4;border-color:#dabcbf}.alert-red-700 .alert-link{color:#3f0f14}.alert-red-800{color:#350d11;background-color:#ded0d2;border-color:#cdb9bb}.alert-red-800 .alert-link{color:#2a0a0e}.alert-red-900{color:#1a0708;background-color:#d5cecf;border-color:#c0b6b7}.alert-red-900 .alert-link{color:#150606}.alert-yellow-100{color:#666152;background-color:#fffdf5;border-color:#fffbf0}.alert-yellow-100 .alert-link{color:#524e42}.alert-yellow-200{color:#665c3e;background-color:#fffaeb;border-color:#fff8e1}.alert-yellow-200 .alert-link{color:#524a32}.alert-yellow-300{color:#66572a;background-color:#fff8e1;border-color:#fff4d2}.alert-yellow-300 .alert-link{color:#524622}.alert-yellow-400{color:#665217;background-color:#fff5d7;border-color:#fff0c4}.alert-yellow-400 .alert-link{color:#524212}.alert-yellow-500{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-yellow-500 .alert-link{color:#523e02}.alert-yellow-600{color:#7a5c04;background-color:#f5ebcd;border-color:#f0e1b4}.alert-yellow-600 .alert-link{color:#624a03}.alert-yellow-700{color:#5c4602;background-color:#ebe3cd;border-color:#e0d5b4}.alert-yellow-700 .alert-link{color:#4a3802}.alert-yellow-800{color:#3d2e02;background-color:#e0dbcd;border-color:#d1cab3}.alert-yellow-800 .alert-link{color:#312502}.alert-yellow-900{color:#1f1701;background-color:#d6d4cc;border-color:#c2beb3}.alert-yellow-900 .alert-link{color:#191201}.alert-green-100{color:#545c58;background-color:#f6faf8;border-color:#f1f8f5}.alert-green-100 .alert-link{color:#434a46}.alert-green-200{color:#41534b;background-color:#edf5f1;border-color:#e3f1eb}.alert-green-200 .alert-link{color:#34423c}.alert-green-300{color:#466e5b;background-color:#e3f1ea;border-color:#d6e9e0}.alert-green-300 .alert-link{color:#385849}.alert-green-400{color:#2b5f47;background-color:#daece4;border-color:#c8e2d6}.alert-green-400 .alert-link{color:#224c39}.alert-green-500{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-green-500 .alert-link{color:#0c4128}.alert-green-600{color:#0c4128;background-color:#d0e2d9;border-color:#b9d3c7}.alert-green-600 .alert-link{color:#0a3420}.alert-green-700{color:#09311e;background-color:#cfdcd6;border-color:#b7cbc2}.alert-green-700 .alert-link{color:#072718}.alert-green-800{color:#062014;background-color:#ced7d3;border-color:#b6c3bd}.alert-green-800 .alert-link{color:#051a10}.alert-green-900{color:#03100a;background-color:#cdd1cf;border-color:#b4bbb8}.alert-green-900 .alert-link{color:#020d08}.alert-blue-100{color:#535a66;background-color:#f5f9ff;border-color:#f1f6ff}.alert-blue-100 .alert-link{color:#424852}.alert-blue-200{color:#3f4f66;background-color:#ecf3ff;border-color:#e2eeff}.alert-blue-200 .alert-link{color:#323f52}.alert-blue-300{color:#426598;background-color:#e2eeff;border-color:#d4e5ff}.alert-blue-300 .alert-link{color:#35517a}.alert-blue-400{color:#255398;background-color:#d8e8ff;border-color:#c5dcfe}.alert-blue-400 .alert-link{color:#1e427a}.alert-blue-500{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-blue-500 .alert-link{color:#06357a}.alert-blue-600{color:#063579;background-color:#cedef4;border-color:#b6cdef}.alert-blue-600 .alert-link{color:#052a61}.alert-blue-700{color:#05285b;background-color:#ced9ea;border-color:#b5c6e0}.alert-blue-700 .alert-link{color:#042049}.alert-blue-800{color:#031a3d;background-color:#cdd5e0;border-color:#b4c0d1}.alert-blue-800 .alert-link{color:#021531}.alert-blue-900{color:#020d1f;background-color:#cdd0d6;border-color:#b3b9c2}.alert-blue-900 .alert-link{color:#020a19}.alert-cyan-100{color:#536265;background-color:#f5fdfe;border-color:#f1fcfe}.alert-cyan-100 .alert-link{color:#424e51}.alert-cyan-200{color:#3f5e64;background-color:#ecfbfe;border-color:#e2f9fd}.alert-cyan-200 .alert-link{color:#324b50}.alert-cyan-300{color:#2c5962;background-color:#e2f9fd;border-color:#d4f5fc}.alert-cyan-300 .alert-link{color:#23474e}.alert-cyan-400{color:#185561;background-color:#d8f7fd;border-color:#c5f2fb}.alert-cyan-400 .alert-link{color:#13444e}.alert-cyan-500{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-cyan-500 .alert-link{color:#04414d}.alert-cyan-600{color:#066173;background-color:#ceecf2;border-color:#b6e3ec}.alert-cyan-600 .alert-link{color:#054e5c}.alert-cyan-700{color:#054956;background-color:#cee4e9;border-color:#b5d7de}.alert-cyan-700 .alert-link{color:#043a45}.alert-cyan-800{color:#03313a;background-color:#cddcdf;border-color:#b4cbcf}.alert-cyan-800 .alert-link{color:#02272e}.alert-cyan-900{color:#02181d;background-color:#cdd4d6;border-color:#b3bfc1}.alert-cyan-900 .alert-link{color:#021317}.alert-indigo-100{color:#5a5365;background-color:#f9f5fe;border-color:#f6f1fe}.alert-indigo-100 .alert-link{color:#484251}.alert-indigo-200{color:#745f96;background-color:#f3ecfe;border-color:#ede2fe}.alert-indigo-200 .alert-link{color:#5d4c78}.alert-indigo-300{color:#624394;background-color:#ede2fd;border-color:#e3d4fd}.alert-indigo-300 .alert-link{color:#4e3676}.alert-indigo-400{color:#502693;background-color:#e7d9fd;border-color:#dac6fc}.alert-indigo-400 .alert-link{color:#401e76}.alert-indigo-500{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}.alert-indigo-500 .alert-link{color:#310874}.alert-indigo-600{color:#310874;background-color:#dccff3;border-color:#cbb6ed}.alert-indigo-600 .alert-link{color:#27065d}.alert-indigo-700{color:#250657;background-color:#d8cee9;border-color:#c5b6de}.alert-indigo-700 .alert-link{color:#1e0546}.alert-indigo-800{color:#19043a;background-color:#d4cddf;border-color:#bfb4d0}.alert-indigo-800 .alert-link{color:#14032e}.alert-indigo-900{color:#0c021d;background-color:#d0cdd6;border-color:#b9b3c1}.alert-indigo-900 .alert-link{color:#0a0217}.alert-purple-100{color:#5a5761;background-color:#f9f7fd;border-color:#f6f4fb}.alert-purple-100 .alert-link{color:#48464e}.alert-purple-200{color:#4f485c;background-color:#f3f0fa;border-color:#eee8f8}.alert-purple-200 .alert-link{color:#3f3a4a}.alert-purple-300{color:#655583;background-color:#eee8f8;border-color:#e5ddf4}.alert-purple-300 .alert-link{color:#514469}.alert-purple-400{color:#543e7b;background-color:#e8e1f5;border-color:#ddd2f0}.alert-purple-400 .alert-link{color:#433262}.alert-purple-500{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}.alert-purple-500 .alert-link{color:#36205d}.alert-purple-600{color:#35205c;background-color:#ded7eb;border-color:#cdc2e1}.alert-purple-600 .alert-link{color:#2a1a4a}.alert-purple-700{color:#281846;background-color:#d9d4e3;border-color:#c7bfd5}.alert-purple-700 .alert-link{color:#201338}.alert-purple-800{color:#1a102e;background-color:#d5d1db;border-color:#c0baca}.alert-purple-800 .alert-link{color:#150d25}.alert-purple-900{color:#0d0817;background-color:#d0cfd4;border-color:#b9b6be}.alert-purple-900 .alert-link{color:#0a0612}.alert-pink-100{color:#63565c;background-color:#fdf7fa;border-color:#fdf3f8}.alert-pink-100 .alert-link{color:#4f454a}.alert-pink-200{color:#604552;background-color:#fceff5;border-color:#fae6f0}.alert-pink-200 .alert-link{color:#4d3742}.alert-pink-300{color:#8a506d;background-color:#fae7f0;border-color:#f8dae9}.alert-pink-300 .alert-link{color:#6e4057}.alert-pink-400{color:#85375e;background-color:#f8deeb;border-color:#f5cee2}.alert-pink-400 .alert-link{color:#6a2c4b}.alert-pink-500{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}.alert-pink-500 .alert-link{color:#66193f}.alert-pink-600{color:#671940;background-color:#eed4e1;border-color:#e6bfd2}.alert-pink-600 .alert-link{color:#521433}.alert-pink-700{color:#4d132f;background-color:#e6d2dc;border-color:#d9bcca}.alert-pink-700 .alert-link{color:#3e0f26}.alert-pink-800{color:#340c20;background-color:#ddd0d7;border-color:#ccb9c2}.alert-pink-800 .alert-link{color:#2a0a1a}.alert-pink-900{color:#1a0610;background-color:#d5ced1;border-color:#bfb6ba}.alert-pink-900 .alert-link{color:#15050d}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.375rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#495057;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#adb5bd;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#1f496e;background-color:#d6e4f1}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1f496e;background-color:#c1cdd9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1f496e;border-color:#1f496e}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-red{color:#842029;background-color:#f8d7da}.list-group-item-red.list-group-item-action:hover,.list-group-item-red.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-red.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-yellow{color:#664d03;background-color:#fff3cd}.list-group-item-yellow.list-group-item-action:hover,.list-group-item-yellow.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-green{color:#0f5132;background-color:#d1e7dd}.list-group-item-green.list-group-item-action:hover,.list-group-item-green.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-green.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-blue{color:#084298;background-color:#cfe2ff}.list-group-item-blue.list-group-item-action:hover,.list-group-item-blue.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-cyan{color:#055160;background-color:#cff4fc}.list-group-item-cyan.list-group-item-action:hover,.list-group-item-cyan.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-indigo{color:#3d0a91;background-color:#e0cffc}.list-group-item-indigo.list-group-item-action:hover,.list-group-item-indigo.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}.list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.list-group-item-purple{color:#432874;background-color:#e2d9f3}.list-group-item-purple.list-group-item-action:hover,.list-group-item-purple.list-group-item-action:focus{color:#432874;background-color:#cbc3db}.list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}.list-group-item-pink{color:#801f4f;background-color:#f7d6e6}.list-group-item-pink.list-group-item-action:hover,.list-group-item-pink.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}.list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}.list-group-item-darker{color:#101314;background-color:#d1d2d3}.list-group-item-darker.list-group-item-action:hover,.list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}.list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}.list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}.list-group-item-darkest.list-group-item-action:hover,.list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}.list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}.list-group-item-gray{color:#525557;background-color:#f5f6f8}.list-group-item-gray.list-group-item-action:hover,.list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}.list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}.list-group-item-gray-100{color:#636464;background-color:#fefefe}.list-group-item-gray-100.list-group-item-action:hover,.list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}.list-group-item-gray-200.list-group-item-action:hover,.list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}.list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}.list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}.list-group-item-gray-300.list-group-item-action:hover,.list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}.list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}.list-group-item-gray-400{color:#525557;background-color:#f5f6f8}.list-group-item-gray-400.list-group-item-action:hover,.list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}.list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}.list-group-item-gray-500{color:#686d71;background-color:#eff0f2}.list-group-item-gray-500.list-group-item-action:hover,.list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}.list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}.list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}.list-group-item-gray-600.list-group-item-action:hover,.list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}.list-group-item-gray-700.list-group-item-action:hover,.list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}.list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}.list-group-item-gray-800.list-group-item-action:hover,.list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}.list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}.list-group-item-gray-900{color:#141619;background-color:#d3d3d4}.list-group-item-gray-900.list-group-item-action:hover,.list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-red-100{color:#635657;background-color:#fef7f8}.list-group-item-red-100.list-group-item-action:hover,.list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}.list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}.list-group-item-red-200{color:#604648;background-color:#fceff0}.list-group-item-red-200.list-group-item-action:hover,.list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}.list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}.list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}.list-group-item-red-300.list-group-item-action:hover,.list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}.list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}.list-group-item-red-400{color:#883840;background-color:#f9dfe1}.list-group-item-red-400.list-group-item-action:hover,.list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}.list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}.list-group-item-red-500{color:#842029;background-color:#f8d7da}.list-group-item-red-500.list-group-item-action:hover,.list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-red-600{color:#6a1921;background-color:#efd4d7}.list-group-item-red-600.list-group-item-action:hover,.list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}.list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}.list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}.list-group-item-red-700.list-group-item-action:hover,.list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}.list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}.list-group-item-red-800{color:#350d11;background-color:#ded0d2}.list-group-item-red-800.list-group-item-action:hover,.list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}.list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}.list-group-item-red-900{color:#1a0708;background-color:#d5cecf}.list-group-item-red-900.list-group-item-action:hover,.list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}.list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}.list-group-item-yellow-100{color:#666152;background-color:#fffdf5}.list-group-item-yellow-100.list-group-item-action:hover,.list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}.list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}.list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}.list-group-item-yellow-200.list-group-item-action:hover,.list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}.list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}.list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}.list-group-item-yellow-300.list-group-item-action:hover,.list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}.list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}.list-group-item-yellow-400{color:#665217;background-color:#fff5d7}.list-group-item-yellow-400.list-group-item-action:hover,.list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}.list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}.list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}.list-group-item-yellow-500.list-group-item-action:hover,.list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}.list-group-item-yellow-600.list-group-item-action:hover,.list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}.list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}.list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}.list-group-item-yellow-700.list-group-item-action:hover,.list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}.list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}.list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}.list-group-item-yellow-800.list-group-item-action:hover,.list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}.list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}.list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}.list-group-item-yellow-900.list-group-item-action:hover,.list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}.list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}.list-group-item-green-100{color:#545c58;background-color:#f6faf8}.list-group-item-green-100.list-group-item-action:hover,.list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}.list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}.list-group-item-green-200{color:#41534b;background-color:#edf5f1}.list-group-item-green-200.list-group-item-action:hover,.list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}.list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}.list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}.list-group-item-green-300.list-group-item-action:hover,.list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}.list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}.list-group-item-green-400{color:#2b5f47;background-color:#daece4}.list-group-item-green-400.list-group-item-action:hover,.list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}.list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}.list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}.list-group-item-green-500.list-group-item-action:hover,.list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}.list-group-item-green-600.list-group-item-action:hover,.list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}.list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}.list-group-item-green-700{color:#09311e;background-color:#cfdcd6}.list-group-item-green-700.list-group-item-action:hover,.list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}.list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}.list-group-item-green-800{color:#062014;background-color:#ced7d3}.list-group-item-green-800.list-group-item-action:hover,.list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}.list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}.list-group-item-green-900{color:#03100a;background-color:#cdd1cf}.list-group-item-green-900.list-group-item-action:hover,.list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}.list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}.list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}.list-group-item-blue-100.list-group-item-action:hover,.list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}.list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}.list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}.list-group-item-blue-200.list-group-item-action:hover,.list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}.list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}.list-group-item-blue-300{color:#426598;background-color:#e2eeff}.list-group-item-blue-300.list-group-item-action:hover,.list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}.list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}.list-group-item-blue-400{color:#255398;background-color:#d8e8ff}.list-group-item-blue-400.list-group-item-action:hover,.list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}.list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}.list-group-item-blue-500{color:#084298;background-color:#cfe2ff}.list-group-item-blue-500.list-group-item-action:hover,.list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-blue-600{color:#063579;background-color:#cedef4}.list-group-item-blue-600.list-group-item-action:hover,.list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}.list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}.list-group-item-blue-700{color:#05285b;background-color:#ced9ea}.list-group-item-blue-700.list-group-item-action:hover,.list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}.list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}.list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}.list-group-item-blue-800.list-group-item-action:hover,.list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}.list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}.list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}.list-group-item-blue-900.list-group-item-action:hover,.list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}.list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}.list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}.list-group-item-cyan-100.list-group-item-action:hover,.list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}.list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}.list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}.list-group-item-cyan-200.list-group-item-action:hover,.list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}.list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}.list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}.list-group-item-cyan-300.list-group-item-action:hover,.list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}.list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}.list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}.list-group-item-cyan-400.list-group-item-action:hover,.list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}.list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}.list-group-item-cyan-500{color:#055160;background-color:#cff4fc}.list-group-item-cyan-500.list-group-item-action:hover,.list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-cyan-600{color:#066173;background-color:#ceecf2}.list-group-item-cyan-600.list-group-item-action:hover,.list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}.list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}.list-group-item-cyan-700{color:#054956;background-color:#cee4e9}.list-group-item-cyan-700.list-group-item-action:hover,.list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}.list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}.list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}.list-group-item-cyan-800.list-group-item-action:hover,.list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}.list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}.list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}.list-group-item-cyan-900.list-group-item-action:hover,.list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}.list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}.list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}.list-group-item-indigo-100.list-group-item-action:hover,.list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}.list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}.list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}.list-group-item-indigo-200.list-group-item-action:hover,.list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}.list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}.list-group-item-indigo-300{color:#624394;background-color:#ede2fd}.list-group-item-indigo-300.list-group-item-action:hover,.list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}.list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}.list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}.list-group-item-indigo-400.list-group-item-action:hover,.list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}.list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}.list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}.list-group-item-indigo-500.list-group-item-action:hover,.list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}.list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.list-group-item-indigo-600{color:#310874;background-color:#dccff3}.list-group-item-indigo-600.list-group-item-action:hover,.list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}.list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}.list-group-item-indigo-700{color:#250657;background-color:#d8cee9}.list-group-item-indigo-700.list-group-item-action:hover,.list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}.list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}.list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}.list-group-item-indigo-800.list-group-item-action:hover,.list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}.list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}.list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}.list-group-item-indigo-900.list-group-item-action:hover,.list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}.list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}.list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}.list-group-item-purple-100.list-group-item-action:hover,.list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}.list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}.list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}.list-group-item-purple-200.list-group-item-action:hover,.list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}.list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}.list-group-item-purple-300{color:#655583;background-color:#eee8f8}.list-group-item-purple-300.list-group-item-action:hover,.list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}.list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}.list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}.list-group-item-purple-400.list-group-item-action:hover,.list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}.list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}.list-group-item-purple-500{color:#432874;background-color:#e2d9f3}.list-group-item-purple-500.list-group-item-action:hover,.list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}.list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}.list-group-item-purple-600{color:#35205c;background-color:#ded7eb}.list-group-item-purple-600.list-group-item-action:hover,.list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}.list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}.list-group-item-purple-700{color:#281846;background-color:#d9d4e3}.list-group-item-purple-700.list-group-item-action:hover,.list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}.list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}.list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}.list-group-item-purple-800.list-group-item-action:hover,.list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}.list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}.list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}.list-group-item-purple-900.list-group-item-action:hover,.list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}.list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}.list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}.list-group-item-pink-100.list-group-item-action:hover,.list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}.list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}.list-group-item-pink-200{color:#604552;background-color:#fceff5}.list-group-item-pink-200.list-group-item-action:hover,.list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}.list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}.list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}.list-group-item-pink-300.list-group-item-action:hover,.list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}.list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}.list-group-item-pink-400{color:#85375e;background-color:#f8deeb}.list-group-item-pink-400.list-group-item-action:hover,.list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}.list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}.list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}.list-group-item-pink-500.list-group-item-action:hover,.list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}.list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}.list-group-item-pink-600{color:#671940;background-color:#eed4e1}.list-group-item-pink-600.list-group-item-action:hover,.list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}.list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}.list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}.list-group-item-pink-700.list-group-item-action:hover,.list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}.list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}.list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}.list-group-item-pink-800.list-group-item-action:hover,.list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}.list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}.list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}.list-group-item-pink-900.list-group-item-action:hover,.list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}.list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.375rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:before,.popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00000040}.bs-popover-top>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00000040}.bs-popover-end>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00000040}.bs-popover-bottom>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header:before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00000040}.bs-popover-start>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translate(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translate(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#337ab7}.link-primary:hover,.link-primary:focus{color:#296292}.link-secondary{color:#6c757d}.link-secondary:hover,.link-secondary:focus{color:#565e64}.link-success{color:#198754}.link-success:hover,.link-success:focus{color:#146c43}.link-info{color:#0dcaf0}.link-info:hover,.link-info:focus{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:hover,.link-warning:focus{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:hover,.link-danger:focus{color:#b02a37}.link-light{color:#f8f9fa}.link-light:hover,.link-light:focus{color:#f9fafb}.link-dark{color:#212529}.link-dark:hover,.link-dark:focus{color:#1a1e21}.link-red{color:#dc3545}.link-red:hover,.link-red:focus{color:#b02a37}.link-yellow{color:#ffc107}.link-yellow:hover,.link-yellow:focus{color:#ffcd39}.link-green{color:#198754}.link-green:hover,.link-green:focus{color:#146c43}.link-blue{color:#0d6efd}.link-blue:hover,.link-blue:focus{color:#0a58ca}.link-cyan{color:#0dcaf0}.link-cyan:hover,.link-cyan:focus{color:#3dd5f3}.link-indigo{color:#6610f2}.link-indigo:hover,.link-indigo:focus{color:#520dc2}.link-purple{color:#6f42c1}.link-purple:hover,.link-purple:focus{color:#59359a}.link-pink{color:#d63384}.link-pink:hover,.link-pink:focus{color:#ab296a}.link-darker{color:#1b1f22}.link-darker:hover,.link-darker:focus{color:#16191b}.link-darkest{color:#171b1d}.link-darkest:hover,.link-darkest:focus{color:#121617}.link-gray{color:#ced4da}.link-gray:hover,.link-gray:focus{color:#d8dde1}.link-gray-100{color:#f8f9fa}.link-gray-100:hover,.link-gray-100:focus{color:#f9fafb}.link-gray-200{color:#e9ecef}.link-gray-200:hover,.link-gray-200:focus{color:#edf0f2}.link-gray-300{color:#dee2e6}.link-gray-300:hover,.link-gray-300:focus{color:#e5e8eb}.link-gray-400{color:#ced4da}.link-gray-400:hover,.link-gray-400:focus{color:#d8dde1}.link-gray-500{color:#adb5bd}.link-gray-500:hover,.link-gray-500:focus{color:#bdc4ca}.link-gray-600{color:#6c757d}.link-gray-600:hover,.link-gray-600:focus{color:#565e64}.link-gray-700{color:#495057}.link-gray-700:hover,.link-gray-700:focus{color:#3a4046}.link-gray-800{color:#343a40}.link-gray-800:hover,.link-gray-800:focus{color:#2a2e33}.link-gray-900{color:#212529}.link-gray-900:hover,.link-gray-900:focus{color:#1a1e21}.link-red-100{color:#f8d7da}.link-red-100:hover,.link-red-100:focus{color:#f9dfe1}.link-red-200{color:#f1aeb5}.link-red-200:hover,.link-red-200:focus{color:#f4bec4}.link-red-300{color:#ea868f}.link-red-300:hover,.link-red-300:focus{color:#ee9ea5}.link-red-400{color:#e35d6a}.link-red-400:hover,.link-red-400:focus{color:#e97d88}.link-red-500{color:#dc3545}.link-red-500:hover,.link-red-500:focus{color:#b02a37}.link-red-600{color:#b02a37}.link-red-600:hover,.link-red-600:focus{color:#8d222c}.link-red-700{color:#842029}.link-red-700:hover,.link-red-700:focus{color:#6a1a21}.link-red-800{color:#58151c}.link-red-800:hover,.link-red-800:focus{color:#461116}.link-red-900{color:#2c0b0e}.link-red-900:hover,.link-red-900:focus{color:#23090b}.link-yellow-100{color:#fff3cd}.link-yellow-100:hover,.link-yellow-100:focus{color:#fff5d7}.link-yellow-200{color:#ffe69c}.link-yellow-200:hover,.link-yellow-200:focus{color:#ffebb0}.link-yellow-300{color:#ffda6a}.link-yellow-300:hover,.link-yellow-300:focus{color:#ffe188}.link-yellow-400{color:#ffcd39}.link-yellow-400:hover,.link-yellow-400:focus{color:#ffd761}.link-yellow-500{color:#ffc107}.link-yellow-500:hover,.link-yellow-500:focus{color:#ffcd39}.link-yellow-600{color:#cc9a06}.link-yellow-600:hover,.link-yellow-600:focus{color:#d6ae38}.link-yellow-700{color:#997404}.link-yellow-700:hover,.link-yellow-700:focus{color:#ad9036}.link-yellow-800{color:#664d03}.link-yellow-800:hover,.link-yellow-800:focus{color:#523e02}.link-yellow-900{color:#332701}.link-yellow-900:hover,.link-yellow-900:focus{color:#291f01}.link-green-100{color:#d1e7dd}.link-green-100:hover,.link-green-100:focus{color:#daece4}.link-green-200{color:#a3cfbb}.link-green-200:hover,.link-green-200:focus{color:#b5d9c9}.link-green-300{color:#75b798}.link-green-300:hover,.link-green-300:focus{color:#91c5ad}.link-green-400{color:#479f76}.link-green-400:hover,.link-green-400:focus{color:#6cb291}.link-green-500{color:#198754}.link-green-500:hover,.link-green-500:focus{color:#146c43}.link-green-600{color:#146c43}.link-green-600:hover,.link-green-600:focus{color:#105636}.link-green-700{color:#0f5132}.link-green-700:hover,.link-green-700:focus{color:#0c4128}.link-green-800{color:#0a3622}.link-green-800:hover,.link-green-800:focus{color:#082b1b}.link-green-900{color:#051b11}.link-green-900:hover,.link-green-900:focus{color:#04160e}.link-blue-100{color:#cfe2ff}.link-blue-100:hover,.link-blue-100:focus{color:#d9e8ff}.link-blue-200{color:#9ec5fe}.link-blue-200:hover,.link-blue-200:focus{color:#b1d1fe}.link-blue-300{color:#6ea8fe}.link-blue-300:hover,.link-blue-300:focus{color:#8bb9fe}.link-blue-400{color:#3d8bfd}.link-blue-400:hover,.link-blue-400:focus{color:#64a2fd}.link-blue-500{color:#0d6efd}.link-blue-500:hover,.link-blue-500:focus{color:#0a58ca}.link-blue-600{color:#0a58ca}.link-blue-600:hover,.link-blue-600:focus{color:#0846a2}.link-blue-700{color:#084298}.link-blue-700:hover,.link-blue-700:focus{color:#06357a}.link-blue-800{color:#052c65}.link-blue-800:hover,.link-blue-800:focus{color:#042351}.link-blue-900{color:#031633}.link-blue-900:hover,.link-blue-900:focus{color:#021229}.link-cyan-100{color:#cff4fc}.link-cyan-100:hover,.link-cyan-100:focus{color:#d9f6fd}.link-cyan-200{color:#9eeaf9}.link-cyan-200:hover,.link-cyan-200:focus{color:#b1eefa}.link-cyan-300{color:#6edff6}.link-cyan-300:hover,.link-cyan-300:focus{color:#8be5f8}.link-cyan-400{color:#3dd5f3}.link-cyan-400:hover,.link-cyan-400:focus{color:#64ddf5}.link-cyan-500{color:#0dcaf0}.link-cyan-500:hover,.link-cyan-500:focus{color:#3dd5f3}.link-cyan-600{color:#0aa2c0}.link-cyan-600:hover,.link-cyan-600:focus{color:#3bb5cd}.link-cyan-700{color:#087990}.link-cyan-700:hover,.link-cyan-700:focus{color:#066173}.link-cyan-800{color:#055160}.link-cyan-800:hover,.link-cyan-800:focus{color:#04414d}.link-cyan-900{color:#032830}.link-cyan-900:hover,.link-cyan-900:focus{color:#022026}.link-indigo-100{color:#e0cffc}.link-indigo-100:hover,.link-indigo-100:focus{color:#e6d9fd}.link-indigo-200{color:#c29ffa}.link-indigo-200:hover,.link-indigo-200:focus{color:#ceb2fb}.link-indigo-300{color:#a370f7}.link-indigo-300:hover,.link-indigo-300:focus{color:#b58df9}.link-indigo-400{color:#8540f5}.link-indigo-400:hover,.link-indigo-400:focus{color:#6a33c4}.link-indigo-500{color:#6610f2}.link-indigo-500:hover,.link-indigo-500:focus{color:#520dc2}.link-indigo-600{color:#520dc2}.link-indigo-600:hover,.link-indigo-600:focus{color:#420a9b}.link-indigo-700{color:#3d0a91}.link-indigo-700:hover,.link-indigo-700:focus{color:#310874}.link-indigo-800{color:#290661}.link-indigo-800:hover,.link-indigo-800:focus{color:#21054e}.link-indigo-900{color:#140330}.link-indigo-900:hover,.link-indigo-900:focus{color:#100226}.link-purple-100{color:#e2d9f3}.link-purple-100:hover,.link-purple-100:focus{color:#e8e1f5}.link-purple-200{color:#c5b3e6}.link-purple-200:hover,.link-purple-200:focus{color:#d1c2eb}.link-purple-300{color:#a98eda}.link-purple-300:hover,.link-purple-300:focus{color:#baa5e1}.link-purple-400{color:#8c68cd}.link-purple-400:hover,.link-purple-400:focus{color:#a386d7}.link-purple-500{color:#6f42c1}.link-purple-500:hover,.link-purple-500:focus{color:#59359a}.link-purple-600{color:#59359a}.link-purple-600:hover,.link-purple-600:focus{color:#472a7b}.link-purple-700{color:#432874}.link-purple-700:hover,.link-purple-700:focus{color:#36205d}.link-purple-800{color:#2c1a4d}.link-purple-800:hover,.link-purple-800:focus{color:#23153e}.link-purple-900{color:#160d27}.link-purple-900:hover,.link-purple-900:focus{color:#120a1f}.link-pink-100{color:#f7d6e6}.link-pink-100:hover,.link-pink-100:focus{color:#f9deeb}.link-pink-200{color:#efadce}.link-pink-200:hover,.link-pink-200:focus{color:#f2bdd8}.link-pink-300{color:#e685b5}.link-pink-300:hover,.link-pink-300:focus{color:#eb9dc4}.link-pink-400{color:#de5c9d}.link-pink-400:hover,.link-pink-400:focus{color:#e57db1}.link-pink-500{color:#d63384}.link-pink-500:hover,.link-pink-500:focus{color:#ab296a}.link-pink-600{color:#ab296a}.link-pink-600:hover,.link-pink-600:focus{color:#892155}.link-pink-700{color:#801f4f}.link-pink-700:hover,.link-pink-700:focus{color:#66193f}.link-pink-800{color:#561435}.link-pink-800:hover,.link-pink-800:focus{color:#45102a}.link-pink-900{color:#2b0a1a}.link-pink-900:hover,.link-pink-900:focus{color:#220815}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem #00000026!important}.shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}.shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translate(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#337ab7!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-red{border-color:#dc3545!important}.border-yellow{border-color:#ffc107!important}.border-green{border-color:#198754!important}.border-blue{border-color:#0d6efd!important}.border-cyan{border-color:#0dcaf0!important}.border-indigo{border-color:#6610f2!important}.border-purple{border-color:#6f42c1!important}.border-pink{border-color:#d63384!important}.border-darker{border-color:#1b1f22!important}.border-darkest{border-color:#171b1d!important}.border-gray{border-color:#ced4da!important}.border-gray-100{border-color:#f8f9fa!important}.border-gray-200{border-color:#e9ecef!important}.border-gray-300{border-color:#dee2e6!important}.border-gray-400{border-color:#ced4da!important}.border-gray-500{border-color:#adb5bd!important}.border-gray-600{border-color:#6c757d!important}.border-gray-700{border-color:#495057!important}.border-gray-800{border-color:#343a40!important}.border-gray-900{border-color:#212529!important}.border-red-100{border-color:#f8d7da!important}.border-red-200{border-color:#f1aeb5!important}.border-red-300{border-color:#ea868f!important}.border-red-400{border-color:#e35d6a!important}.border-red-500{border-color:#dc3545!important}.border-red-600{border-color:#b02a37!important}.border-red-700{border-color:#842029!important}.border-red-800{border-color:#58151c!important}.border-red-900{border-color:#2c0b0e!important}.border-yellow-100{border-color:#fff3cd!important}.border-yellow-200{border-color:#ffe69c!important}.border-yellow-300{border-color:#ffda6a!important}.border-yellow-400{border-color:#ffcd39!important}.border-yellow-500{border-color:#ffc107!important}.border-yellow-600{border-color:#cc9a06!important}.border-yellow-700{border-color:#997404!important}.border-yellow-800{border-color:#664d03!important}.border-yellow-900{border-color:#332701!important}.border-green-100{border-color:#d1e7dd!important}.border-green-200{border-color:#a3cfbb!important}.border-green-300{border-color:#75b798!important}.border-green-400{border-color:#479f76!important}.border-green-500{border-color:#198754!important}.border-green-600{border-color:#146c43!important}.border-green-700{border-color:#0f5132!important}.border-green-800{border-color:#0a3622!important}.border-green-900{border-color:#051b11!important}.border-blue-100{border-color:#cfe2ff!important}.border-blue-200{border-color:#9ec5fe!important}.border-blue-300{border-color:#6ea8fe!important}.border-blue-400{border-color:#3d8bfd!important}.border-blue-500{border-color:#0d6efd!important}.border-blue-600{border-color:#0a58ca!important}.border-blue-700{border-color:#084298!important}.border-blue-800{border-color:#052c65!important}.border-blue-900{border-color:#031633!important}.border-cyan-100{border-color:#cff4fc!important}.border-cyan-200{border-color:#9eeaf9!important}.border-cyan-300{border-color:#6edff6!important}.border-cyan-400{border-color:#3dd5f3!important}.border-cyan-500{border-color:#0dcaf0!important}.border-cyan-600{border-color:#0aa2c0!important}.border-cyan-700{border-color:#087990!important}.border-cyan-800{border-color:#055160!important}.border-cyan-900{border-color:#032830!important}.border-indigo-100{border-color:#e0cffc!important}.border-indigo-200{border-color:#c29ffa!important}.border-indigo-300{border-color:#a370f7!important}.border-indigo-400{border-color:#8540f5!important}.border-indigo-500{border-color:#6610f2!important}.border-indigo-600{border-color:#520dc2!important}.border-indigo-700{border-color:#3d0a91!important}.border-indigo-800{border-color:#290661!important}.border-indigo-900{border-color:#140330!important}.border-purple-100{border-color:#e2d9f3!important}.border-purple-200{border-color:#c5b3e6!important}.border-purple-300{border-color:#a98eda!important}.border-purple-400{border-color:#8c68cd!important}.border-purple-500{border-color:#6f42c1!important}.border-purple-600{border-color:#59359a!important}.border-purple-700{border-color:#432874!important}.border-purple-800{border-color:#2c1a4d!important}.border-purple-900{border-color:#160d27!important}.border-pink-100{border-color:#f7d6e6!important}.border-pink-200{border-color:#efadce!important}.border-pink-300{border-color:#e685b5!important}.border-pink-400{border-color:#de5c9d!important}.border-pink-500{border-color:#d63384!important}.border-pink-600{border-color:#ab296a!important}.border-pink-700{border-color:#801f4f!important}.border-pink-800{border-color:#561435!important}.border-pink-900{border-color:#2b0a1a!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:200!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:800!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:1.75!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#337ab7!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-red{color:#dc3545!important}.text-yellow{color:#ffc107!important}.text-green{color:#198754!important}.text-blue{color:#0d6efd!important}.text-cyan{color:#0dcaf0!important}.text-indigo{color:#6610f2!important}.text-purple{color:#6f42c1!important}.text-pink{color:#d63384!important}.text-darker{color:#1b1f22!important}.text-darkest{color:#171b1d!important}.text-gray{color:#ced4da!important}.text-gray-100{color:#f8f9fa!important}.text-gray-200{color:#e9ecef!important}.text-gray-300{color:#dee2e6!important}.text-gray-400{color:#ced4da!important}.text-gray-500{color:#adb5bd!important}.text-gray-600{color:#6c757d!important}.text-gray-700{color:#495057!important}.text-gray-800{color:#343a40!important}.text-gray-900{color:#212529!important}.text-red-100{color:#f8d7da!important}.text-red-200{color:#f1aeb5!important}.text-red-300{color:#ea868f!important}.text-red-400{color:#e35d6a!important}.text-red-500{color:#dc3545!important}.text-red-600{color:#b02a37!important}.text-red-700{color:#842029!important}.text-red-800{color:#58151c!important}.text-red-900{color:#2c0b0e!important}.text-yellow-100{color:#fff3cd!important}.text-yellow-200{color:#ffe69c!important}.text-yellow-300{color:#ffda6a!important}.text-yellow-400{color:#ffcd39!important}.text-yellow-500{color:#ffc107!important}.text-yellow-600{color:#cc9a06!important}.text-yellow-700{color:#997404!important}.text-yellow-800{color:#664d03!important}.text-yellow-900{color:#332701!important}.text-green-100{color:#d1e7dd!important}.text-green-200{color:#a3cfbb!important}.text-green-300{color:#75b798!important}.text-green-400{color:#479f76!important}.text-green-500{color:#198754!important}.text-green-600{color:#146c43!important}.text-green-700{color:#0f5132!important}.text-green-800{color:#0a3622!important}.text-green-900{color:#051b11!important}.text-blue-100{color:#cfe2ff!important}.text-blue-200{color:#9ec5fe!important}.text-blue-300{color:#6ea8fe!important}.text-blue-400{color:#3d8bfd!important}.text-blue-500{color:#0d6efd!important}.text-blue-600{color:#0a58ca!important}.text-blue-700{color:#084298!important}.text-blue-800{color:#052c65!important}.text-blue-900{color:#031633!important}.text-cyan-100{color:#cff4fc!important}.text-cyan-200{color:#9eeaf9!important}.text-cyan-300{color:#6edff6!important}.text-cyan-400{color:#3dd5f3!important}.text-cyan-500{color:#0dcaf0!important}.text-cyan-600{color:#0aa2c0!important}.text-cyan-700{color:#087990!important}.text-cyan-800{color:#055160!important}.text-cyan-900{color:#032830!important}.text-indigo-100{color:#e0cffc!important}.text-indigo-200{color:#c29ffa!important}.text-indigo-300{color:#a370f7!important}.text-indigo-400{color:#8540f5!important}.text-indigo-500{color:#6610f2!important}.text-indigo-600{color:#520dc2!important}.text-indigo-700{color:#3d0a91!important}.text-indigo-800{color:#290661!important}.text-indigo-900{color:#140330!important}.text-purple-100{color:#e2d9f3!important}.text-purple-200{color:#c5b3e6!important}.text-purple-300{color:#a98eda!important}.text-purple-400{color:#8c68cd!important}.text-purple-500{color:#6f42c1!important}.text-purple-600{color:#59359a!important}.text-purple-700{color:#432874!important}.text-purple-800{color:#2c1a4d!important}.text-purple-900{color:#160d27!important}.text-pink-100{color:#f7d6e6!important}.text-pink-200{color:#efadce!important}.text-pink-300{color:#e685b5!important}.text-pink-400{color:#de5c9d!important}.text-pink-500{color:#d63384!important}.text-pink-600{color:#ab296a!important}.text-pink-700{color:#801f4f!important}.text-pink-800{color:#561435!important}.text-pink-900{color:#2b0a1a!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:#00000080!important}.text-white-50{color:#ffffff80!important}.text-reset{color:inherit!important}.bg-primary{background-color:#337ab7!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-red{background-color:#dc3545!important}.bg-yellow{background-color:#ffc107!important}.bg-green{background-color:#198754!important}.bg-blue{background-color:#0d6efd!important}.bg-cyan{background-color:#0dcaf0!important}.bg-indigo{background-color:#6610f2!important}.bg-purple{background-color:#6f42c1!important}.bg-pink{background-color:#d63384!important}.bg-darker{background-color:#1b1f22!important}.bg-darkest{background-color:#171b1d!important}.bg-gray{background-color:#ced4da!important}.bg-gray-100{background-color:#f8f9fa!important}.bg-gray-200{background-color:#e9ecef!important}.bg-gray-300{background-color:#dee2e6!important}.bg-gray-400{background-color:#ced4da!important}.bg-gray-500{background-color:#adb5bd!important}.bg-gray-600{background-color:#6c757d!important}.bg-gray-700{background-color:#495057!important}.bg-gray-800{background-color:#343a40!important}.bg-gray-900{background-color:#212529!important}.bg-red-100{background-color:#f8d7da!important}.bg-red-200{background-color:#f1aeb5!important}.bg-red-300{background-color:#ea868f!important}.bg-red-400{background-color:#e35d6a!important}.bg-red-500{background-color:#dc3545!important}.bg-red-600{background-color:#b02a37!important}.bg-red-700{background-color:#842029!important}.bg-red-800{background-color:#58151c!important}.bg-red-900{background-color:#2c0b0e!important}.bg-yellow-100{background-color:#fff3cd!important}.bg-yellow-200{background-color:#ffe69c!important}.bg-yellow-300{background-color:#ffda6a!important}.bg-yellow-400{background-color:#ffcd39!important}.bg-yellow-500{background-color:#ffc107!important}.bg-yellow-600{background-color:#cc9a06!important}.bg-yellow-700{background-color:#997404!important}.bg-yellow-800{background-color:#664d03!important}.bg-yellow-900{background-color:#332701!important}.bg-green-100{background-color:#d1e7dd!important}.bg-green-200{background-color:#a3cfbb!important}.bg-green-300{background-color:#75b798!important}.bg-green-400{background-color:#479f76!important}.bg-green-500{background-color:#198754!important}.bg-green-600{background-color:#146c43!important}.bg-green-700{background-color:#0f5132!important}.bg-green-800{background-color:#0a3622!important}.bg-green-900{background-color:#051b11!important}.bg-blue-100{background-color:#cfe2ff!important}.bg-blue-200{background-color:#9ec5fe!important}.bg-blue-300{background-color:#6ea8fe!important}.bg-blue-400{background-color:#3d8bfd!important}.bg-blue-500{background-color:#0d6efd!important}.bg-blue-600{background-color:#0a58ca!important}.bg-blue-700{background-color:#084298!important}.bg-blue-800{background-color:#052c65!important}.bg-blue-900{background-color:#031633!important}.bg-cyan-100{background-color:#cff4fc!important}.bg-cyan-200{background-color:#9eeaf9!important}.bg-cyan-300{background-color:#6edff6!important}.bg-cyan-400{background-color:#3dd5f3!important}.bg-cyan-500{background-color:#0dcaf0!important}.bg-cyan-600{background-color:#0aa2c0!important}.bg-cyan-700{background-color:#087990!important}.bg-cyan-800{background-color:#055160!important}.bg-cyan-900{background-color:#032830!important}.bg-indigo-100{background-color:#e0cffc!important}.bg-indigo-200{background-color:#c29ffa!important}.bg-indigo-300{background-color:#a370f7!important}.bg-indigo-400{background-color:#8540f5!important}.bg-indigo-500{background-color:#6610f2!important}.bg-indigo-600{background-color:#520dc2!important}.bg-indigo-700{background-color:#3d0a91!important}.bg-indigo-800{background-color:#290661!important}.bg-indigo-900{background-color:#140330!important}.bg-purple-100{background-color:#e2d9f3!important}.bg-purple-200{background-color:#c5b3e6!important}.bg-purple-300{background-color:#a98eda!important}.bg-purple-400{background-color:#8c68cd!important}.bg-purple-500{background-color:#6f42c1!important}.bg-purple-600{background-color:#59359a!important}.bg-purple-700{background-color:#432874!important}.bg-purple-800{background-color:#2c1a4d!important}.bg-purple-900{background-color:#160d27!important}.bg-pink-100{background-color:#f7d6e6!important}.bg-pink-200{background-color:#efadce!important}.bg-pink-300{background-color:#e685b5!important}.bg-pink-400{background-color:#de5c9d!important}.bg-pink-500{background-color:#d63384!important}.bg-pink-600{background-color:#ab296a!important}.bg-pink-700{background-color:#801f4f!important}.bg-pink-800{background-color:#561435!important}.bg-pink-900{background-color:#2b0a1a!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.375rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.375rem!important}.rounded-2{border-radius:.375rem!important}.rounded-3{border-radius:.75rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width: 576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width: 768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width: 992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width: 1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width: 1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width: 1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}:root{--nbx-select-content-bg: #fff;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}:root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}.ss-main{position:relative;display:inline-block;user-select:none;color:#212529;width:100%}.ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}.ss-main .ss-single-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}.ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}.ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}.ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}.ss-main .ss-single-selected .placeholder .ss-disabled{color:#6c757d}.ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}.ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}.ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}.ss-main .ss-single-selected .ss-arrow span{border:solid #212529;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}.ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}.ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}.ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}.ss-main .ss-multi-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#212529}.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}.ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}.ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}.ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}.ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#6c757d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}.ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#0d6efd;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}.ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}.ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}.ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#212529;position:relative;height:10px;width:2px;transition:transform .2s}.ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#212529;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}.ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #ced4da;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}.ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}.ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}.ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}.ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}.ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}.ss-content .ss-search input::placeholder{color:#adb5bd;vertical-align:middle}.ss-content .ss-search input:focus{box-shadow:0 0 5px #0d6efd}.ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #ced4da;border-radius:.375rem;box-sizing:border-box}.ss-content .ss-addable{padding-top:0}.ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}.ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}.ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}.ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}.ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#0d6efd}.ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}.ss-content .ss-list .ss-option *{display:inline-block}.ss-content .ss-list .ss-option:hover,.ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#0d6efd}.ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#6c757d;background-color:#fff}.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#212529;background-color:#0d6efd1a}.ss-content .ss-list .ss-option.ss-hide{display:none}.ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}.ss-main{color:#212529}.ss-main.is-invalid .ss-single-selected,.ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}.ss-main.is-valid .ss-single-selected,.ss-main.is-valid .ss-multi-selected{border-color:#198754}.ss-main .ss-single-selected,.ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#fff;border:1px solid #e9ecef}.ss-main .ss-single-selected[disabled],.ss-main .ss-multi-selected[disabled]{color:#6c757d;background-color:#e9ecef}.ss-main div.ss-multi-selected .ss-values .ss-disabled,.ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}.ss-main .ss-single-selected span.ss-arrow span.arrow-down,.ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#6c757d}.ss-main .ss-single-selected .placeholder .depth{display:none}.ss-main .ss-single-selected span.placeholder>*,.ss-main .ss-single-selected span.placeholder{line-height:1.5}.ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}.ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}.ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}.ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}.ss-main .ss-multi-selected .ss-add{margin:0 .75rem}.ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#212529;background-color:var(--nbx-select-option-selected-bg)}.ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}.ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}.ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#6c757d}.ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}.ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}.ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}.ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}.ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}.ss-main .ss-content .ss-search{padding-right:.5rem}.ss-main .ss-content .ss-search button{margin-left:.75rem}.ss-main .ss-content .ss-search input[type=search]{color:#212529;background-color:#fff;border:1px solid #e9ecef}.ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #ced4da;transition:all .1s ease-in-out}@media (max-width: 991.98px){.sidenav{transform:translate(-3rem)}.sidenav+.content-container[class]{margin-left:0}.sidenav .profile-button-container[class]{display:block}}.sidenav .profile-button-container{display:none;padding:.5rem 1rem}.sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}.sidenav .sidenav-brand{margin-right:0}.sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}@media (min-width: 768px){.sidenav .sidenav-inner{padding-right:0;padding-left:0}}.sidenav .sidenav-brand-img,.sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}.sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}.sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}.sidenav .sidenav-toggle{display:none}.sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}.sidenav .sidenav-collapse>*{min-width:100%}@media (min-width: 768px){.sidenav .sidenav-collapse{margin-right:0;margin-left:0}}.sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}.sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}.sidenav .nav .nav-item.no-buttons{padding-right:5rem}.sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#343a40;background:#cfe2ff}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#6c757d;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#343a40}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#0d6efd;transform:rotate(90deg)}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}.sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}.sidenav .navbar-nav .nav-item{margin-top:2px}.sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}.sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}.sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}.sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}.sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}@media (min-width: 1200px){body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}.g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}body[data-sidenav-show] .sidenav,body[data-sidenav-pinned] .sidenav{max-width:16rem}body[data-sidenav-show] .sidenav .sidenav-brand,body[data-sidenav-show] .sidenav .navbar-heading,body[data-sidenav-pinned] .sidenav .sidenav-brand,body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}body[data-sidenav-show] .sidenav .sidenav-brand,body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}body[data-sidenav-show] .sidenav .sidenav-brand-icon,body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}@media (max-width: 991.98px){body[data-sidenav-show] .sidenav,body[data-sidenav-pinned] .sidenav{transform:translate(0)}}body[data-sidenav-hide] .sidenav .sidenav-header,body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}body[data-sidenav-hide] .sidenav .sidenav-brand,body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0;transform:translate(-150%)}body[data-sidenav-hide] .sidenav .sidenav-brand-icon,body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}body[data-sidenav-hide] .sidenav .nav-item .collapse,body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}body[data-sidenav-hide] .sidenav .nav-link-text,body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}body[data-sidenav-show] .sidenav .sidenav-brand{display:block}body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}@media (min-width: 992px){body[data-sidenav-show] .sidenav .sidenav-toggle{display:inline-block}}.simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}.simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}.simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}small,.small{font-size:smaller!important}a[type=button]{-webkit-appearance:unset!important}*[data-href]{cursor:pointer}.form-control:not([type=file]){font-size:inherit}.badge{font-size:.75rem}.text-xs{font-size:.75rem!important;line-height:1.25!important}.border-input{border:1px solid #e9ecef!important}.ws-nowrap{white-space:nowrap!important}table tr .vertical-align,table td .vertical-align{vertical-align:middle}@media print{.noprint{display:none!important;visibility:hidden!important}}.printonly{display:none!important;visibility:hidden!important}@media print{.printonly{display:block!important;visibility:visible!important}}:root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #e9ecef;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #0d6efd;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}:root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}.bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f496e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-primary{color:#337ab7}.btn.btn-ghost-primary:hover{background-color:#337ab71f}.alert.alert-primary a:not(.btn),.table-primary a:not(.btn){font-weight:700;color:#1f496e}.alert.alert-primary .btn:not([class*=btn-outline]),.table-primary .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-primary a:not(.btn){font-weight:700;color:#adcae2}.badge.bg-primary,.toast.bg-primary,.toast-header.bg-primary,.progress-bar.bg-primary{color:#fff}.bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-secondary{color:#6c757d}.btn.btn-ghost-secondary:hover{background-color:#6c757d1f}.alert.alert-secondary a:not(.btn),.table-secondary a:not(.btn){font-weight:700;color:#41464b}.alert.alert-secondary .btn:not([class*=btn-outline]),.table-secondary .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-secondary a:not(.btn){font-weight:700;color:#c4c8cb}.badge.bg-secondary,.toast.bg-secondary,.toast-header.bg-secondary,.progress-bar.bg-secondary{color:#fff}.bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-success{color:#198754}.btn.btn-ghost-success:hover{background-color:#1987541f}.alert.alert-success a:not(.btn),.table-success a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-success .btn:not([class*=btn-outline]),.table-success .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-success a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-success,.toast.bg-success,.toast-header.bg-success,.progress-bar.bg-success{color:#fff}.bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-info{color:#0dcaf0}.btn.btn-ghost-info:hover{background-color:#0dcaf01f}.alert.alert-info a:not(.btn),.table-info a:not(.btn){font-weight:700;color:#055160}.alert.alert-info .btn:not([class*=btn-outline]),.table-info .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-info a:not(.btn){font-weight:700;color:#055160}.badge.bg-info,.toast.bg-info,.toast-header.bg-info,.progress-bar.bg-info{color:#000}.bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-warning{color:#ffc107}.btn.btn-ghost-warning:hover{background-color:#ffc1071f}.alert.alert-warning a:not(.btn),.table-warning a:not(.btn){font-weight:700;color:#664d03}.alert.alert-warning .btn:not([class*=btn-outline]),.table-warning .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-warning a:not(.btn){font-weight:700;color:#664d03}.badge.bg-warning,.toast.bg-warning,.toast-header.bg-warning,.progress-bar.bg-warning{color:#000}.bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-danger{color:#dc3545}.btn.btn-ghost-danger:hover{background-color:#dc35451f}.alert.alert-danger a:not(.btn),.table-danger a:not(.btn){font-weight:700;color:#842029}.alert.alert-danger .btn:not([class*=btn-outline]),.table-danger .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-danger a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-danger,.toast.bg-danger,.toast-header.bg-danger,.progress-bar.bg-danger{color:#fff}.bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-light{color:#f8f9fa}.btn.btn-ghost-light:hover{background-color:#f8f9fa1f}.alert.alert-light a:not(.btn),.table-light a:not(.btn){font-weight:700;color:#636464}.alert.alert-light .btn:not([class*=btn-outline]),.table-light .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-light a:not(.btn){font-weight:700;color:#636464}.badge.bg-light,.toast.bg-light,.toast-header.bg-light,.progress-bar.bg-light{color:#000}.bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-dark{color:#212529}.btn.btn-ghost-dark:hover{background-color:#2125291f}.alert.alert-dark a:not(.btn),.table-dark a:not(.btn){font-weight:700;color:#141619}.alert.alert-dark .btn:not([class*=btn-outline]),.table-dark .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-dark a:not(.btn){font-weight:700;color:#a6a8a9}.badge.bg-dark,.toast.bg-dark,.toast-header.bg-dark,.progress-bar.bg-dark{color:#fff}.bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red{color:#dc3545}.btn.btn-ghost-red:hover{background-color:#dc35451f}.alert.alert-red a:not(.btn),.table-red a:not(.btn){font-weight:700;color:#842029}.alert.alert-red .btn:not([class*=btn-outline]),.table-red .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-red,.toast.bg-red,.toast-header.bg-red,.progress-bar.bg-red{color:#fff}.bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow{color:#ffc107}.btn.btn-ghost-yellow:hover{background-color:#ffc1071f}.alert.alert-yellow a:not(.btn),.table-yellow a:not(.btn){font-weight:700;color:#664d03}.alert.alert-yellow .btn:not([class*=btn-outline]),.table-yellow .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow a:not(.btn){font-weight:700;color:#664d03}.badge.bg-yellow,.toast.bg-yellow,.toast-header.bg-yellow,.progress-bar.bg-yellow{color:#000}.bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green{color:#198754}.btn.btn-ghost-green:hover{background-color:#1987541f}.alert.alert-green a:not(.btn),.table-green a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-green .btn:not([class*=btn-outline]),.table-green .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-green,.toast.bg-green,.toast-header.bg-green,.progress-bar.bg-green{color:#fff}.bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue{color:#0d6efd}.btn.btn-ghost-blue:hover{background-color:#0d6efd1f}.alert.alert-blue a:not(.btn),.table-blue a:not(.btn){font-weight:700;color:#084298}.alert.alert-blue .btn:not([class*=btn-outline]),.table-blue .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue a:not(.btn){font-weight:700;color:#9ec5fe}.badge.bg-blue,.toast.bg-blue,.toast-header.bg-blue,.progress-bar.bg-blue{color:#fff}.bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan{color:#0dcaf0}.btn.btn-ghost-cyan:hover{background-color:#0dcaf01f}.alert.alert-cyan a:not(.btn),.table-cyan a:not(.btn){font-weight:700;color:#055160}.alert.alert-cyan .btn:not([class*=btn-outline]),.table-cyan .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan a:not(.btn){font-weight:700;color:#055160}.badge.bg-cyan,.toast.bg-cyan,.toast-header.bg-cyan,.progress-bar.bg-cyan{color:#000}.bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo{color:#6610f2}.btn.btn-ghost-indigo:hover{background-color:#6610f21f}.alert.alert-indigo a:not(.btn),.table-indigo a:not(.btn){font-weight:700;color:#3d0a91}.alert.alert-indigo .btn:not([class*=btn-outline]),.table-indigo .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo a:not(.btn){font-weight:700;color:#c29ffa}.badge.bg-indigo,.toast.bg-indigo,.toast-header.bg-indigo,.progress-bar.bg-indigo{color:#fff}.bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple{color:#6f42c1}.btn.btn-ghost-purple:hover{background-color:#6f42c11f}.alert.alert-purple a:not(.btn),.table-purple a:not(.btn){font-weight:700;color:#432874}.alert.alert-purple .btn:not([class*=btn-outline]),.table-purple .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple a:not(.btn){font-weight:700;color:#c5b3e6}.badge.bg-purple,.toast.bg-purple,.toast-header.bg-purple,.progress-bar.bg-purple{color:#fff}.bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink{color:#d63384}.btn.btn-ghost-pink:hover{background-color:#d633841f}.alert.alert-pink a:not(.btn),.table-pink a:not(.btn){font-weight:700;color:#801f4f}.alert.alert-pink .btn:not([class*=btn-outline]),.table-pink .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink a:not(.btn){font-weight:700;color:#efadce}.badge.bg-pink,.toast.bg-pink,.toast-header.bg-pink,.progress-bar.bg-pink{color:#fff}.bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101314'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-darker{color:#1b1f22}.btn.btn-ghost-darker:hover{background-color:#1b1f221f}.alert.alert-darker a:not(.btn),.table-darker a:not(.btn){font-weight:700;color:#101314}.alert.alert-darker .btn:not([class*=btn-outline]),.table-darker .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-darker a:not(.btn){font-weight:700;color:#a4a5a7}.badge.bg-darker,.toast.bg-darker,.toast-header.bg-darker,.progress-bar.bg-darker{color:#fff}.bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1011'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-darkest{color:#171b1d}.btn.btn-ghost-darkest:hover{background-color:#171b1d1f}.alert.alert-darkest a:not(.btn),.table-darkest a:not(.btn){font-weight:700;color:#0e1011}.alert.alert-darkest .btn:not([class*=btn-outline]),.table-darkest .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-darkest a:not(.btn){font-weight:700;color:#a2a4a5}.badge.bg-darkest,.toast.bg-darkest,.toast-header.bg-darkest,.progress-bar.bg-darkest{color:#fff}.bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray{color:#ced4da}.btn.btn-ghost-gray:hover{background-color:#ced4da1f}.alert.alert-gray a:not(.btn),.table-gray a:not(.btn){font-weight:700;color:#525557}.alert.alert-gray .btn:not([class*=btn-outline]),.table-gray .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray a:not(.btn){font-weight:700;color:#525557}.badge.bg-gray,.toast.bg-gray,.toast-header.bg-gray,.progress-bar.bg-gray{color:#000}.bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-100{color:#f8f9fa}.btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}.alert.alert-gray-100 a:not(.btn),.table-gray-100 a:not(.btn){font-weight:700;color:#636464}.alert.alert-gray-100 .btn:not([class*=btn-outline]),.table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-100 a:not(.btn){font-weight:700;color:#636464}.badge.bg-gray-100,.toast.bg-gray-100,.toast-header.bg-gray-100,.progress-bar.bg-gray-100{color:#000}.bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d5e60'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-200{color:#e9ecef}.btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}.alert.alert-gray-200 a:not(.btn),.table-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}.alert.alert-gray-200 .btn:not([class*=btn-outline]),.table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}.badge.bg-gray-200,.toast.bg-gray-200,.toast-header.bg-gray-200,.progress-bar.bg-gray-200{color:#000}.bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23595a5c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-300{color:#dee2e6}.btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}.alert.alert-gray-300 a:not(.btn),.table-gray-300 a:not(.btn){font-weight:700;color:#595a5c}.alert.alert-gray-300 .btn:not([class*=btn-outline]),.table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-300 a:not(.btn){font-weight:700;color:#595a5c}.badge.bg-gray-300,.toast.bg-gray-300,.toast-header.bg-gray-300,.progress-bar.bg-gray-300{color:#000}.bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-400{color:#ced4da}.btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}.alert.alert-gray-400 a:not(.btn),.table-gray-400 a:not(.btn){font-weight:700;color:#525557}.alert.alert-gray-400 .btn:not([class*=btn-outline]),.table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-400 a:not(.btn){font-weight:700;color:#525557}.badge.bg-gray-400,.toast.bg-gray-400,.toast-header.bg-gray-400,.progress-bar.bg-gray-400{color:#000}.bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23686d71'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-500{color:#adb5bd}.btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}.alert.alert-gray-500 a:not(.btn),.table-gray-500 a:not(.btn){font-weight:700;color:#686d71}.alert.alert-gray-500 .btn:not([class*=btn-outline]),.table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-500 a:not(.btn){font-weight:700;color:#45484c}.badge.bg-gray-500,.toast.bg-gray-500,.toast-header.bg-gray-500,.progress-bar.bg-gray-500{color:#000}.bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-600{color:#6c757d}.btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}.alert.alert-gray-600 a:not(.btn),.table-gray-600 a:not(.btn){font-weight:700;color:#41464b}.alert.alert-gray-600 .btn:not([class*=btn-outline]),.table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-600 a:not(.btn){font-weight:700;color:#c4c8cb}.badge.bg-gray-600,.toast.bg-gray-600,.toast-header.bg-gray-600,.progress-bar.bg-gray-600{color:#fff}.bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3034'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-700{color:#495057}.btn.btn-ghost-gray-700:hover{background-color:#4950571f}.alert.alert-gray-700 a:not(.btn),.table-gray-700 a:not(.btn){font-weight:700;color:#2c3034}.alert.alert-gray-700 .btn:not([class*=btn-outline]),.table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-700 a:not(.btn){font-weight:700;color:#b6b9bc}.badge.bg-gray-700,.toast.bg-gray-700,.toast-header.bg-gray-700,.progress-bar.bg-gray-700{color:#fff}.bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2326'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-800{color:#343a40}.btn.btn-ghost-gray-800:hover{background-color:#343a401f}.alert.alert-gray-800 a:not(.btn),.table-gray-800 a:not(.btn){font-weight:700;color:#1f2326}.alert.alert-gray-800 .btn:not([class*=btn-outline]),.table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-800 a:not(.btn){font-weight:700;color:#aeb0b3}.badge.bg-gray-800,.toast.bg-gray-800,.toast-header.bg-gray-800,.progress-bar.bg-gray-800{color:#fff}.bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-900{color:#212529}.btn.btn-ghost-gray-900:hover{background-color:#2125291f}.alert.alert-gray-900 a:not(.btn),.table-gray-900 a:not(.btn){font-weight:700;color:#141619}.alert.alert-gray-900 .btn:not([class*=btn-outline]),.table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-900 a:not(.btn){font-weight:700;color:#a6a8a9}.badge.bg-gray-900,.toast.bg-gray-900,.toast-header.bg-gray-900,.progress-bar.bg-gray-900{color:#fff}.bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23635657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-100{color:#f8d7da}.btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}.alert.alert-red-100 a:not(.btn),.table-red-100 a:not(.btn){font-weight:700;color:#635657}.alert.alert-red-100 .btn:not([class*=btn-outline]),.table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-100 a:not(.btn){font-weight:700;color:#635657}.badge.bg-red-100,.toast.bg-red-100,.toast-header.bg-red-100,.progress-bar.bg-red-100{color:#000}.bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604648'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-200{color:#f1aeb5}.btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}.alert.alert-red-200 a:not(.btn),.table-red-200 a:not(.btn){font-weight:700;color:#604648}.alert.alert-red-200 .btn:not([class*=btn-outline]),.table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-200 a:not(.btn){font-weight:700;color:#604648}.badge.bg-red-200,.toast.bg-red-200,.toast-header.bg-red-200,.progress-bar.bg-red-200{color:#000}.bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238c5056'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-300{color:#ea868f}.btn.btn-ghost-red-300:hover{background-color:#ea868f1f}.alert.alert-red-300 a:not(.btn),.table-red-300 a:not(.btn){font-weight:700;color:#8c5056}.alert.alert-red-300 .btn:not([class*=btn-outline]),.table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-300 a:not(.btn){font-weight:700;color:#5e3639}.badge.bg-red-300,.toast.bg-red-300,.toast-header.bg-red-300,.progress-bar.bg-red-300{color:#000}.bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23883840'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-400{color:#e35d6a}.btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}.alert.alert-red-400 a:not(.btn),.table-red-400 a:not(.btn){font-weight:700;color:#883840}.alert.alert-red-400 .btn:not([class*=btn-outline]),.table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-400 a:not(.btn){font-weight:700;color:#5b252a}.badge.bg-red-400,.toast.bg-red-400,.toast-header.bg-red-400,.progress-bar.bg-red-400{color:#000}.bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-500{color:#dc3545}.btn.btn-ghost-red-500:hover{background-color:#dc35451f}.alert.alert-red-500 a:not(.btn),.table-red-500 a:not(.btn){font-weight:700;color:#842029}.alert.alert-red-500 .btn:not([class*=btn-outline]),.table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-500 a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-red-500,.toast.bg-red-500,.toast-header.bg-red-500,.progress-bar.bg-red-500{color:#fff}.bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a1921'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-600{color:#b02a37}.btn.btn-ghost-red-600:hover{background-color:#b02a371f}.alert.alert-red-600 a:not(.btn),.table-red-600 a:not(.btn){font-weight:700;color:#6a1921}.alert.alert-red-600 .btn:not([class*=btn-outline]),.table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-600 a:not(.btn){font-weight:700;color:#dfaaaf}.badge.bg-red-600,.toast.bg-red-600,.toast-header.bg-red-600,.progress-bar.bg-red-600{color:#fff}.bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f1319'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-700{color:#842029}.btn.btn-ghost-red-700:hover{background-color:#8420291f}.alert.alert-red-700 a:not(.btn),.table-red-700 a:not(.btn){font-weight:700;color:#4f1319}.alert.alert-red-700 .btn:not([class*=btn-outline]),.table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-700 a:not(.btn){font-weight:700;color:#cea6a9}.badge.bg-red-700,.toast.bg-red-700,.toast-header.bg-red-700,.progress-bar.bg-red-700{color:#fff}.bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23350d11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-800{color:#58151c}.btn.btn-ghost-red-800:hover{background-color:#58151c1f}.alert.alert-red-800 a:not(.btn),.table-red-800 a:not(.btn){font-weight:700;color:#350d11}.alert.alert-red-800 .btn:not([class*=btn-outline]),.table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-800 a:not(.btn){font-weight:700;color:#bca1a4}.badge.bg-red-800,.toast.bg-red-800,.toast-header.bg-red-800,.progress-bar.bg-red-800{color:#fff}.bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0708'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-900{color:#2c0b0e}.btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}.alert.alert-red-900 a:not(.btn),.table-red-900 a:not(.btn){font-weight:700;color:#1a0708}.alert.alert-red-900 .btn:not([class*=btn-outline]),.table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-900 a:not(.btn){font-weight:700;color:#ab9d9f}.badge.bg-red-900,.toast.bg-red-900,.toast-header.bg-red-900,.progress-bar.bg-red-900{color:#fff}.bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666152'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-100{color:#fff3cd}.btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}.alert.alert-yellow-100 a:not(.btn),.table-yellow-100 a:not(.btn){font-weight:700;color:#666152}.alert.alert-yellow-100 .btn:not([class*=btn-outline]),.table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#666152}.badge.bg-yellow-100,.toast.bg-yellow-100,.toast-header.bg-yellow-100,.progress-bar.bg-yellow-100{color:#000}.bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665c3e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-200{color:#ffe69c}.btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}.alert.alert-yellow-200 a:not(.btn),.table-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}.alert.alert-yellow-200 .btn:not([class*=btn-outline]),.table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}.badge.bg-yellow-200,.toast.bg-yellow-200,.toast-header.bg-yellow-200,.progress-bar.bg-yellow-200{color:#000}.bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366572a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-300{color:#ffda6a}.btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}.alert.alert-yellow-300 a:not(.btn),.table-yellow-300 a:not(.btn){font-weight:700;color:#66572a}.alert.alert-yellow-300 .btn:not([class*=btn-outline]),.table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#66572a}.badge.bg-yellow-300,.toast.bg-yellow-300,.toast-header.bg-yellow-300,.progress-bar.bg-yellow-300{color:#000}.bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665217'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-400{color:#ffcd39}.btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}.alert.alert-yellow-400 a:not(.btn),.table-yellow-400 a:not(.btn){font-weight:700;color:#665217}.alert.alert-yellow-400 .btn:not([class*=btn-outline]),.table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#665217}.badge.bg-yellow-400,.toast.bg-yellow-400,.toast-header.bg-yellow-400,.progress-bar.bg-yellow-400{color:#000}.bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-500{color:#ffc107}.btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}.alert.alert-yellow-500 a:not(.btn),.table-yellow-500 a:not(.btn){font-weight:700;color:#664d03}.alert.alert-yellow-500 .btn:not([class*=btn-outline]),.table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#664d03}.badge.bg-yellow-500,.toast.bg-yellow-500,.toast-header.bg-yellow-500,.progress-bar.bg-yellow-500{color:#000}.bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a5c04'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-600{color:#cc9a06}.btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}.alert.alert-yellow-600 a:not(.btn),.table-yellow-600 a:not(.btn){font-weight:700;color:#7a5c04}.alert.alert-yellow-600 .btn:not([class*=btn-outline]),.table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#523e02}.badge.bg-yellow-600,.toast.bg-yellow-600,.toast-header.bg-yellow-600,.progress-bar.bg-yellow-600{color:#000}.bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c4602'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-700{color:#997404}.btn.btn-ghost-yellow-700:hover{background-color:#9974041f}.alert.alert-yellow-700 a:not(.btn),.table-yellow-700 a:not(.btn){font-weight:700;color:#5c4602}.alert.alert-yellow-700 .btn:not([class*=btn-outline]),.table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#3d2e02}.badge.bg-yellow-700,.toast.bg-yellow-700,.toast-header.bg-yellow-700,.progress-bar.bg-yellow-700{color:#000}.bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d2e02'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-800{color:#664d03}.btn.btn-ghost-yellow-800:hover{background-color:#664d031f}.alert.alert-yellow-800 a:not(.btn),.table-yellow-800 a:not(.btn){font-weight:700;color:#3d2e02}.alert.alert-yellow-800 .btn:not([class*=btn-outline]),.table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#c2b89a}.badge.bg-yellow-800,.toast.bg-yellow-800,.toast-header.bg-yellow-800,.progress-bar.bg-yellow-800{color:#fff}.bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-900{color:#332701}.btn.btn-ghost-yellow-900:hover{background-color:#3327011f}.alert.alert-yellow-900 a:not(.btn),.table-yellow-900 a:not(.btn){font-weight:700;color:#1f1701}.alert.alert-yellow-900 .btn:not([class*=btn-outline]),.table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#ada999}.badge.bg-yellow-900,.toast.bg-yellow-900,.toast-header.bg-yellow-900,.progress-bar.bg-yellow-900{color:#fff}.bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23545c58'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-100{color:#d1e7dd}.btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}.alert.alert-green-100 a:not(.btn),.table-green-100 a:not(.btn){font-weight:700;color:#545c58}.alert.alert-green-100 .btn:not([class*=btn-outline]),.table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-100 a:not(.btn){font-weight:700;color:#545c58}.badge.bg-green-100,.toast.bg-green-100,.toast-header.bg-green-100,.progress-bar.bg-green-100{color:#000}.bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341534b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-200{color:#a3cfbb}.btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}.alert.alert-green-200 a:not(.btn),.table-green-200 a:not(.btn){font-weight:700;color:#41534b}.alert.alert-green-200 .btn:not([class*=btn-outline]),.table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-200 a:not(.btn){font-weight:700;color:#41534b}.badge.bg-green-200,.toast.bg-green-200,.toast-header.bg-green-200,.progress-bar.bg-green-200{color:#000}.bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23466e5b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-300{color:#75b798}.btn.btn-ghost-green-300:hover{background-color:#75b7981f}.alert.alert-green-300 a:not(.btn),.table-green-300 a:not(.btn){font-weight:700;color:#466e5b}.alert.alert-green-300 .btn:not([class*=btn-outline]),.table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-300 a:not(.btn){font-weight:700;color:#2f493d}.badge.bg-green-300,.toast.bg-green-300,.toast-header.bg-green-300,.progress-bar.bg-green-300{color:#000}.bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b5f47'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-400{color:#479f76}.btn.btn-ghost-green-400:hover{background-color:#479f761f}.alert.alert-green-400 a:not(.btn),.table-green-400 a:not(.btn){font-weight:700;color:#2b5f47}.alert.alert-green-400 .btn:not([class*=btn-outline]),.table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-400 a:not(.btn){font-weight:700;color:#1c402f}.badge.bg-green-400,.toast.bg-green-400,.toast-header.bg-green-400,.progress-bar.bg-green-400{color:#000}.bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-500{color:#198754}.btn.btn-ghost-green-500:hover{background-color:#1987541f}.alert.alert-green-500 a:not(.btn),.table-green-500 a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-green-500 .btn:not([class*=btn-outline]),.table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-500 a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-green-500,.toast.bg-green-500,.toast-header.bg-green-500,.progress-bar.bg-green-500{color:#fff}.bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c4128'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-600{color:#146c43}.btn.btn-ghost-green-600:hover{background-color:#146c431f}.alert.alert-green-600 a:not(.btn),.table-green-600 a:not(.btn){font-weight:700;color:#0c4128}.alert.alert-green-600 .btn:not([class*=btn-outline]),.table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-600 a:not(.btn){font-weight:700;color:#a1c4b4}.badge.bg-green-600,.toast.bg-green-600,.toast-header.bg-green-600,.progress-bar.bg-green-600{color:#fff}.bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2309311e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-700{color:#0f5132}.btn.btn-ghost-green-700:hover{background-color:#0f51321f}.alert.alert-green-700 a:not(.btn),.table-green-700 a:not(.btn){font-weight:700;color:#09311e}.alert.alert-green-700 .btn:not([class*=btn-outline]),.table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-700 a:not(.btn){font-weight:700;color:#9fb9ad}.badge.bg-green-700,.toast.bg-green-700,.toast-header.bg-green-700,.progress-bar.bg-green-700{color:#fff}.bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23062014'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-800{color:#0a3622}.btn.btn-ghost-green-800:hover{background-color:#0a36221f}.alert.alert-green-800 a:not(.btn),.table-green-800 a:not(.btn){font-weight:700;color:#062014}.alert.alert-green-800 .btn:not([class*=btn-outline]),.table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-800 a:not(.btn){font-weight:700;color:#9dafa7}.badge.bg-green-800,.toast.bg-green-800,.toast-header.bg-green-800,.progress-bar.bg-green-800{color:#fff}.bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303100a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-900{color:#051b11}.btn.btn-ghost-green-900:hover{background-color:#051b111f}.alert.alert-green-900 a:not(.btn),.table-green-900 a:not(.btn){font-weight:700;color:#03100a}.alert.alert-green-900 .btn:not([class*=btn-outline]),.table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-900 a:not(.btn){font-weight:700;color:#9ba4a0}.badge.bg-green-900,.toast.bg-green-900,.toast-header.bg-green-900,.progress-bar.bg-green-900{color:#fff}.bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23535a66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-100{color:#cfe2ff}.btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}.alert.alert-blue-100 a:not(.btn),.table-blue-100 a:not(.btn){font-weight:700;color:#535a66}.alert.alert-blue-100 .btn:not([class*=btn-outline]),.table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-100 a:not(.btn){font-weight:700;color:#535a66}.badge.bg-blue-100,.toast.bg-blue-100,.toast-header.bg-blue-100,.progress-bar.bg-blue-100{color:#000}.bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f4f66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-200{color:#9ec5fe}.btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}.alert.alert-blue-200 a:not(.btn),.table-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}.alert.alert-blue-200 .btn:not([class*=btn-outline]),.table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}.badge.bg-blue-200,.toast.bg-blue-200,.toast-header.bg-blue-200,.progress-bar.bg-blue-200{color:#000}.bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23426598'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-300{color:#6ea8fe}.btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}.alert.alert-blue-300 a:not(.btn),.table-blue-300 a:not(.btn){font-weight:700;color:#426598}.alert.alert-blue-300 .btn:not([class*=btn-outline]),.table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-300 a:not(.btn){font-weight:700;color:#2c4366}.badge.bg-blue-300,.toast.bg-blue-300,.toast-header.bg-blue-300,.progress-bar.bg-blue-300{color:#000}.bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23255398'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-400{color:#3d8bfd}.btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}.alert.alert-blue-400 a:not(.btn),.table-blue-400 a:not(.btn){font-weight:700;color:#255398}.alert.alert-blue-400 .btn:not([class*=btn-outline]),.table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-400 a:not(.btn){font-weight:700;color:#183865}.badge.bg-blue-400,.toast.bg-blue-400,.toast-header.bg-blue-400,.progress-bar.bg-blue-400{color:#000}.bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-500{color:#0d6efd}.btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}.alert.alert-blue-500 a:not(.btn),.table-blue-500 a:not(.btn){font-weight:700;color:#084298}.alert.alert-blue-500 .btn:not([class*=btn-outline]),.table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-500 a:not(.btn){font-weight:700;color:#9ec5fe}.badge.bg-blue-500,.toast.bg-blue-500,.toast-header.bg-blue-500,.progress-bar.bg-blue-500{color:#fff}.bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063579'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-600{color:#0a58ca}.btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}.alert.alert-blue-600 a:not(.btn),.table-blue-600 a:not(.btn){font-weight:700;color:#063579}.alert.alert-blue-600 .btn:not([class*=btn-outline]),.table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-600 a:not(.btn){font-weight:700;color:#9dbcea}.badge.bg-blue-600,.toast.bg-blue-600,.toast-header.bg-blue-600,.progress-bar.bg-blue-600{color:#fff}.bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2305285b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-700{color:#084298}.btn.btn-ghost-blue-700:hover{background-color:#0842981f}.alert.alert-blue-700 a:not(.btn),.table-blue-700 a:not(.btn){font-weight:700;color:#05285b}.alert.alert-blue-700 .btn:not([class*=btn-outline]),.table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-700 a:not(.btn){font-weight:700;color:#9cb3d6}.badge.bg-blue-700,.toast.bg-blue-700,.toast-header.bg-blue-700,.progress-bar.bg-blue-700{color:#fff}.bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031a3d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-800{color:#052c65}.btn.btn-ghost-blue-800:hover{background-color:#052c651f}.alert.alert-blue-800 a:not(.btn),.table-blue-800 a:not(.btn){font-weight:700;color:#031a3d}.alert.alert-blue-800 .btn:not([class*=btn-outline]),.table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-800 a:not(.btn){font-weight:700;color:#9babc1}.badge.bg-blue-800,.toast.bg-blue-800,.toast-header.bg-blue-800,.progress-bar.bg-blue-800{color:#fff}.bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23020d1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-900{color:#031633}.btn.btn-ghost-blue-900:hover{background-color:#0316331f}.alert.alert-blue-900 a:not(.btn),.table-blue-900 a:not(.btn){font-weight:700;color:#020d1f}.alert.alert-blue-900 .btn:not([class*=btn-outline]),.table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-900 a:not(.btn){font-weight:700;color:#9aa2ad}.badge.bg-blue-900,.toast.bg-blue-900,.toast-header.bg-blue-900,.progress-bar.bg-blue-900{color:#fff}.bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23536265'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-100{color:#cff4fc}.btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}.alert.alert-cyan-100 a:not(.btn),.table-cyan-100 a:not(.btn){font-weight:700;color:#536265}.alert.alert-cyan-100 .btn:not([class*=btn-outline]),.table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#536265}.badge.bg-cyan-100,.toast.bg-cyan-100,.toast-header.bg-cyan-100,.progress-bar.bg-cyan-100{color:#000}.bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5e64'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-200{color:#9eeaf9}.btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}.alert.alert-cyan-200 a:not(.btn),.table-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}.alert.alert-cyan-200 .btn:not([class*=btn-outline]),.table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}.badge.bg-cyan-200,.toast.bg-cyan-200,.toast-header.bg-cyan-200,.progress-bar.bg-cyan-200{color:#000}.bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c5962'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-300{color:#6edff6}.btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}.alert.alert-cyan-300 a:not(.btn),.table-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}.alert.alert-cyan-300 .btn:not([class*=btn-outline]),.table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}.badge.bg-cyan-300,.toast.bg-cyan-300,.toast-header.bg-cyan-300,.progress-bar.bg-cyan-300{color:#000}.bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23185561'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-400{color:#3dd5f3}.btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}.alert.alert-cyan-400 a:not(.btn),.table-cyan-400 a:not(.btn){font-weight:700;color:#185561}.alert.alert-cyan-400 .btn:not([class*=btn-outline]),.table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#185561}.badge.bg-cyan-400,.toast.bg-cyan-400,.toast-header.bg-cyan-400,.progress-bar.bg-cyan-400{color:#000}.bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-500{color:#0dcaf0}.btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}.alert.alert-cyan-500 a:not(.btn),.table-cyan-500 a:not(.btn){font-weight:700;color:#055160}.alert.alert-cyan-500 .btn:not([class*=btn-outline]),.table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#055160}.badge.bg-cyan-500,.toast.bg-cyan-500,.toast-header.bg-cyan-500,.progress-bar.bg-cyan-500{color:#000}.bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23066173'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-600{color:#0aa2c0}.btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}.alert.alert-cyan-600 a:not(.btn),.table-cyan-600 a:not(.btn){font-weight:700;color:#066173}.alert.alert-cyan-600 .btn:not([class*=btn-outline]),.table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#04414d}.badge.bg-cyan-600,.toast.bg-cyan-600,.toast-header.bg-cyan-600,.progress-bar.bg-cyan-600{color:#000}.bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23054956'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-700{color:#087990}.btn.btn-ghost-cyan-700:hover{background-color:#0879901f}.alert.alert-cyan-700 a:not(.btn),.table-cyan-700 a:not(.btn){font-weight:700;color:#054956}.alert.alert-cyan-700 .btn:not([class*=btn-outline]),.table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#9cc9d3}.badge.bg-cyan-700,.toast.bg-cyan-700,.toast-header.bg-cyan-700,.progress-bar.bg-cyan-700{color:#fff}.bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303313a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-800{color:#055160}.btn.btn-ghost-cyan-800:hover{background-color:#0551601f}.alert.alert-cyan-800 a:not(.btn),.table-cyan-800 a:not(.btn){font-weight:700;color:#03313a}.alert.alert-cyan-800 .btn:not([class*=btn-outline]),.table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#9bb9bf}.badge.bg-cyan-800,.toast.bg-cyan-800,.toast-header.bg-cyan-800,.progress-bar.bg-cyan-800{color:#fff}.bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2302181d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-900{color:#032830}.btn.btn-ghost-cyan-900:hover{background-color:#0328301f}.alert.alert-cyan-900 a:not(.btn),.table-cyan-900 a:not(.btn){font-weight:700;color:#02181d}.alert.alert-cyan-900 .btn:not([class*=btn-outline]),.table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#9aa9ac}.badge.bg-cyan-900,.toast.bg-cyan-900,.toast-header.bg-cyan-900,.progress-bar.bg-cyan-900{color:#fff}.bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5365'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-100{color:#e0cffc}.btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}.alert.alert-indigo-100 a:not(.btn),.table-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}.alert.alert-indigo-100 .btn:not([class*=btn-outline]),.table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}.badge.bg-indigo-100,.toast.bg-indigo-100,.toast-header.bg-indigo-100,.progress-bar.bg-indigo-100{color:#000}.bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23745f96'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-200{color:#c29ffa}.btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}.alert.alert-indigo-200 a:not(.btn),.table-indigo-200 a:not(.btn){font-weight:700;color:#745f96}.alert.alert-indigo-200 .btn:not([class*=btn-outline]),.table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#4e4064}.badge.bg-indigo-200,.toast.bg-indigo-200,.toast-header.bg-indigo-200,.progress-bar.bg-indigo-200{color:#000}.bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23624394'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-300{color:#a370f7}.btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}.alert.alert-indigo-300 a:not(.btn),.table-indigo-300 a:not(.btn){font-weight:700;color:#624394}.alert.alert-indigo-300 .btn:not([class*=btn-outline]),.table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#412d63}.badge.bg-indigo-300,.toast.bg-indigo-300,.toast-header.bg-indigo-300,.progress-bar.bg-indigo-300{color:#000}.bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23502693'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-400{color:#8540f5}.btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}.alert.alert-indigo-400 a:not(.btn),.table-indigo-400 a:not(.btn){font-weight:700;color:#502693}.alert.alert-indigo-400 .btn:not([class*=btn-outline]),.table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#ceb3fb}.badge.bg-indigo-400,.toast.bg-indigo-400,.toast-header.bg-indigo-400,.progress-bar.bg-indigo-400{color:#fff}.bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-500{color:#6610f2}.btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}.alert.alert-indigo-500 a:not(.btn),.table-indigo-500 a:not(.btn){font-weight:700;color:#3d0a91}.alert.alert-indigo-500 .btn:not([class*=btn-outline]),.table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#c29ffa}.badge.bg-indigo-500,.toast.bg-indigo-500,.toast-header.bg-indigo-500,.progress-bar.bg-indigo-500{color:#fff}.bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23310874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-600{color:#520dc2}.btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}.alert.alert-indigo-600 a:not(.btn),.table-indigo-600 a:not(.btn){font-weight:700;color:#310874}.alert.alert-indigo-600 .btn:not([class*=btn-outline]),.table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#ba9ee7}.badge.bg-indigo-600,.toast.bg-indigo-600,.toast-header.bg-indigo-600,.progress-bar.bg-indigo-600{color:#fff}.bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23250657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-700{color:#3d0a91}.btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}.alert.alert-indigo-700 a:not(.btn),.table-indigo-700 a:not(.btn){font-weight:700;color:#250657}.alert.alert-indigo-700 .btn:not([class*=btn-outline]),.table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#b19dd3}.badge.bg-indigo-700,.toast.bg-indigo-700,.toast-header.bg-indigo-700,.progress-bar.bg-indigo-700{color:#fff}.bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2319043a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-800{color:#290661}.btn.btn-ghost-indigo-800:hover{background-color:#2906611f}.alert.alert-indigo-800 a:not(.btn),.table-indigo-800 a:not(.btn){font-weight:700;color:#19043a}.alert.alert-indigo-800 .btn:not([class*=btn-outline]),.table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#a99bc0}.badge.bg-indigo-800,.toast.bg-indigo-800,.toast-header.bg-indigo-800,.progress-bar.bg-indigo-800{color:#fff}.bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c021d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-900{color:#140330}.btn.btn-ghost-indigo-900:hover{background-color:#1403301f}.alert.alert-indigo-900 a:not(.btn),.table-indigo-900 a:not(.btn){font-weight:700;color:#0c021d}.alert.alert-indigo-900 .btn:not([class*=btn-outline]),.table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#a19aac}.badge.bg-indigo-900,.toast.bg-indigo-900,.toast-header.bg-indigo-900,.progress-bar.bg-indigo-900{color:#fff}.bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5761'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-100{color:#e2d9f3}.btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}.alert.alert-purple-100 a:not(.btn),.table-purple-100 a:not(.btn){font-weight:700;color:#5a5761}.alert.alert-purple-100 .btn:not([class*=btn-outline]),.table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-100 a:not(.btn){font-weight:700;color:#5a5761}.badge.bg-purple-100,.toast.bg-purple-100,.toast-header.bg-purple-100,.progress-bar.bg-purple-100{color:#000}.bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f485c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-200{color:#c5b3e6}.btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}.alert.alert-purple-200 a:not(.btn),.table-purple-200 a:not(.btn){font-weight:700;color:#4f485c}.alert.alert-purple-200 .btn:not([class*=btn-outline]),.table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-200 a:not(.btn){font-weight:700;color:#4f485c}.badge.bg-purple-200,.toast.bg-purple-200,.toast-header.bg-purple-200,.progress-bar.bg-purple-200{color:#000}.bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23655583'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-300{color:#a98eda}.btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}.alert.alert-purple-300 a:not(.btn),.table-purple-300 a:not(.btn){font-weight:700;color:#655583}.alert.alert-purple-300 .btn:not([class*=btn-outline]),.table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-300 a:not(.btn){font-weight:700;color:#443957}.badge.bg-purple-300,.toast.bg-purple-300,.toast-header.bg-purple-300,.progress-bar.bg-purple-300{color:#000}.bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23543e7b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-400{color:#8c68cd}.btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}.alert.alert-purple-400 a:not(.btn),.table-purple-400 a:not(.btn){font-weight:700;color:#543e7b}.alert.alert-purple-400 .btn:not([class*=btn-outline]),.table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-400 a:not(.btn){font-weight:700;color:#382a52}.badge.bg-purple-400,.toast.bg-purple-400,.toast-header.bg-purple-400,.progress-bar.bg-purple-400{color:#000}.bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-500{color:#6f42c1}.btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}.alert.alert-purple-500 a:not(.btn),.table-purple-500 a:not(.btn){font-weight:700;color:#432874}.alert.alert-purple-500 .btn:not([class*=btn-outline]),.table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-500 a:not(.btn){font-weight:700;color:#c5b3e6}.badge.bg-purple-500,.toast.bg-purple-500,.toast-header.bg-purple-500,.progress-bar.bg-purple-500{color:#fff}.bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2335205c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-600{color:#59359a}.btn.btn-ghost-purple-600:hover{background-color:#59359a1f}.alert.alert-purple-600 a:not(.btn),.table-purple-600 a:not(.btn){font-weight:700;color:#35205c}.alert.alert-purple-600 .btn:not([class*=btn-outline]),.table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-600 a:not(.btn){font-weight:700;color:#bdaed7}.badge.bg-purple-600,.toast.bg-purple-600,.toast-header.bg-purple-600,.progress-bar.bg-purple-600{color:#fff}.bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23281846'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-700{color:#432874}.btn.btn-ghost-purple-700:hover{background-color:#4328741f}.alert.alert-purple-700 a:not(.btn),.table-purple-700 a:not(.btn){font-weight:700;color:#281846}.alert.alert-purple-700 .btn:not([class*=btn-outline]),.table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-700 a:not(.btn){font-weight:700;color:#b4a9c7}.badge.bg-purple-700,.toast.bg-purple-700,.toast-header.bg-purple-700,.progress-bar.bg-purple-700{color:#fff}.bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a102e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-800{color:#2c1a4d}.btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}.alert.alert-purple-800 a:not(.btn),.table-purple-800 a:not(.btn){font-weight:700;color:#1a102e}.alert.alert-purple-800 .btn:not([class*=btn-outline]),.table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-800 a:not(.btn){font-weight:700;color:#aba3b8}.badge.bg-purple-800,.toast.bg-purple-800,.toast-header.bg-purple-800,.progress-bar.bg-purple-800{color:#fff}.bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0817'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-900{color:#160d27}.btn.btn-ghost-purple-900:hover{background-color:#160d271f}.alert.alert-purple-900 a:not(.btn),.table-purple-900 a:not(.btn){font-weight:700;color:#0d0817}.alert.alert-purple-900 .btn:not([class*=btn-outline]),.table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-900 a:not(.btn){font-weight:700;color:#a29ea9}.badge.bg-purple-900,.toast.bg-purple-900,.toast-header.bg-purple-900,.progress-bar.bg-purple-900{color:#fff}.bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2363565c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-100{color:#f7d6e6}.btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}.alert.alert-pink-100 a:not(.btn),.table-pink-100 a:not(.btn){font-weight:700;color:#63565c}.alert.alert-pink-100 .btn:not([class*=btn-outline]),.table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-100 a:not(.btn){font-weight:700;color:#63565c}.badge.bg-pink-100,.toast.bg-pink-100,.toast-header.bg-pink-100,.progress-bar.bg-pink-100{color:#000}.bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604552'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-200{color:#efadce}.btn.btn-ghost-pink-200:hover{background-color:#efadce1f}.alert.alert-pink-200 a:not(.btn),.table-pink-200 a:not(.btn){font-weight:700;color:#604552}.alert.alert-pink-200 .btn:not([class*=btn-outline]),.table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-200 a:not(.btn){font-weight:700;color:#604552}.badge.bg-pink-200,.toast.bg-pink-200,.toast-header.bg-pink-200,.progress-bar.bg-pink-200{color:#000}.bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a506d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-300{color:#e685b5}.btn.btn-ghost-pink-300:hover{background-color:#e685b51f}.alert.alert-pink-300 a:not(.btn),.table-pink-300 a:not(.btn){font-weight:700;color:#8a506d}.alert.alert-pink-300 .btn:not([class*=btn-outline]),.table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-300 a:not(.btn){font-weight:700;color:#5c3548}.badge.bg-pink-300,.toast.bg-pink-300,.toast-header.bg-pink-300,.progress-bar.bg-pink-300{color:#000}.bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2385375e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-400{color:#de5c9d}.btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}.alert.alert-pink-400 a:not(.btn),.table-pink-400 a:not(.btn){font-weight:700;color:#85375e}.alert.alert-pink-400 .btn:not([class*=btn-outline]),.table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-400 a:not(.btn){font-weight:700;color:#59253f}.badge.bg-pink-400,.toast.bg-pink-400,.toast-header.bg-pink-400,.progress-bar.bg-pink-400{color:#000}.bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-500{color:#d63384}.btn.btn-ghost-pink-500:hover{background-color:#d633841f}.alert.alert-pink-500 a:not(.btn),.table-pink-500 a:not(.btn){font-weight:700;color:#801f4f}.alert.alert-pink-500 .btn:not([class*=btn-outline]),.table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-500 a:not(.btn){font-weight:700;color:#efadce}.badge.bg-pink-500,.toast.bg-pink-500,.toast-header.bg-pink-500,.progress-bar.bg-pink-500{color:#fff}.bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23671940'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-600{color:#ab296a}.btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}.alert.alert-pink-600 a:not(.btn),.table-pink-600 a:not(.btn){font-weight:700;color:#671940}.alert.alert-pink-600 .btn:not([class*=btn-outline]),.table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-600 a:not(.btn){font-weight:700;color:#dda9c3}.badge.bg-pink-600,.toast.bg-pink-600,.toast-header.bg-pink-600,.progress-bar.bg-pink-600{color:#fff}.bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d132f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-700{color:#801f4f}.btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}.alert.alert-pink-700 a:not(.btn),.table-pink-700 a:not(.btn){font-weight:700;color:#4d132f}.alert.alert-pink-700 .btn:not([class*=btn-outline]),.table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-700 a:not(.btn){font-weight:700;color:#cca5b9}.badge.bg-pink-700,.toast.bg-pink-700,.toast-header.bg-pink-700,.progress-bar.bg-pink-700{color:#fff}.bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23340c20'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-800{color:#561435}.btn.btn-ghost-pink-800:hover{background-color:#5614351f}.alert.alert-pink-800 a:not(.btn),.table-pink-800 a:not(.btn){font-weight:700;color:#340c20}.alert.alert-pink-800 .btn:not([class*=btn-outline]),.table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-800 a:not(.btn){font-weight:700;color:#bba1ae}.badge.bg-pink-800,.toast.bg-pink-800,.toast-header.bg-pink-800,.progress-bar.bg-pink-800{color:#fff}.bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0610'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-900{color:#2b0a1a}.btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}.alert.alert-pink-900 a:not(.btn),.table-pink-900 a:not(.btn){font-weight:700;color:#1a0610}.alert.alert-pink-900 .btn:not([class*=btn-outline]),.table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-900 a:not(.btn){font-weight:700;color:#aa9da3}.badge.bg-pink-900,.toast.bg-pink-900,.toast-header.bg-pink-900,.progress-bar.bg-pink-900{color:#fff}table td>.progress{min-width:6rem}.small .form-control{font-size:.875rem}:not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}.nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}@media (max-width: 991.98px){.nav-mobile{display:flex}}.nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}.card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#f8f9fa;border-top:1px solid rgba(0,0,0,.125);border-bottom-color:#00000020}.card>.table.table-flush th,.card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}.card>.table.table-flush tr[class]{border-color:#00000020!important}.card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}.header-alert-container .alert{width:100%}@media (min-width: 768px){.header-alert-container .alert{max-width:75%}}@media (min-width: 992px){.header-alert-container .alert{max-width:50%}}span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}table td a{text-decoration:none}table td a:hover{text-decoration:underline}table th a,table th a:hover{color:#212529;text-decoration:none}table td,table th{font-size:.875rem;line-height:1.25;vertical-align:middle}table td.min-width,table th.min-width{width:1%}table td .form-check-input,table th .form-check-input{margin-top:.125em;font-size:1rem}table td .btn-sm,table td .btn-group-sm>.btn,table th .btn-sm,table th .btn-group-sm>.btn{line-height:1}table td p,table th p{margin-bottom:0}table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}table.attr-table th{font-weight:normal;width:25%}div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}@media (min-width: 992px){div.title-container{flex-direction:row}}div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}.controls{margin-bottom:.5rem}@media print{.controls{display:none!important}}.controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}@media (min-width: 992px){.controls .control-group{justify-content:flex-end}}.controls .control-group>*{margin:.25rem}.controls .control-group>*:first-child{margin-left:0}.controls .control-group>*:last-child{margin-right:0}.object-subtitle{display:block;font-size:.875rem;color:#6c757d}@media (min-width: 768px){.object-subtitle{display:inline-block}}.object-subtitle>span{display:block}.object-subtitle>span.separator{display:none}@media (min-width: 768px){.object-subtitle>span,.object-subtitle>span.separator{display:inline-block}}nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}nav.search .search-container{display:flex;width:100%}@media (max-width: 991.98px){nav.search .search-container{display:none}}nav.search .input-group .search-obj-selected{border-color:#e9ecef}nav.search .input-group .dropdown-toggle{color:#000;border-color:#e9ecef;margin-left:0;font-weight:400;line-height:1.5;color:#212529;background-color:#e9ecef;border:1px solid #e9ecef;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}nav.search .input-group .dropdown-toggle:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+nav.search .input-group .dropdown-toggle,nav.search .input-group .dropdown-toggle:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+nav.search .input-group .dropdown-toggle,.btn-check:active+nav.search .input-group .dropdown-toggle,nav.search .input-group .dropdown-toggle:active,nav.search .input-group .dropdown-toggle.active,.show>nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+nav.search .input-group .dropdown-toggle:focus,.btn-check:active+nav.search .input-group .dropdown-toggle:focus,nav.search .input-group .dropdown-toggle:active:focus,nav.search .input-group .dropdown-toggle.active:focus,.show>nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}nav.search .input-group .dropdown-toggle:disabled,nav.search .input-group .dropdown-toggle.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}nav.search .input-group .dropdown-toggle:after{display:none}nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}nav.search .input-group .search-obj-selector .dropdown-item,nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}@media print{main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}.footer{padding:0}.footer .nav-link{padding:.5rem}@media (max-width: 767.98px){.footer{margin-bottom:8rem}}footer.login-footer{height:4rem;margin-top:auto}footer.login-footer .container-fluid,footer.login-footer .container-sm,footer.login-footer .container-md,footer.login-footer .container-lg,footer.login-footer .container-xl,footer.login-footer .container-xxl{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}h1.accordion-item-title,.accordion-item-title.h1,h2.accordion-item-title,.accordion-item-title.h2,h3.accordion-item-title,.accordion-item-title.h3,h4.accordion-item-title,.accordion-item-title.h4,h5.accordion-item-title,.accordion-item-title.h5,h6.accordion-item-title,.accordion-item-title.h6{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}.form-login{width:100%;max-width:330px;padding:15px}.form-login input:focus{z-index:1}.form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}.form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}.navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}nav.nav.nav-pills .nav-item.nav-link:hover{color:#343a40;background-color:#cfe2ff}div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}div.content-container:focus,div.content-container:focus-visible{outline:0}div.content-container div.content{flex:1}@media (max-width: 991.98px){div.content-container{width:100%}}@media print{div.content-container{width:100%!important;margin-left:0!important}}@media (max-width: 768px){.sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}.tooltip{pointer-events:none}span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}.btn{white-space:nowrap}.card{box-shadow:0 .125rem .25rem #00000013}.card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}.card .card-header+.card-body{padding-top:0}.card .card-body.small .form-control,.card .card-body.small .form-select{font-size:.875rem}.card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(0,0,0,.125);opacity:.25}@media print{.card{box-shadow:unset!important}}.form-floating{position:relative}.form-floating>.input-group>.form-control,.form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>.input-group>label{transition:none}}.form-floating>.input-group>.form-control::placeholder{color:transparent}.form-floating>.input-group>.form-control:focus,.form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-select,.form-floating>.choices>.choices__inner,.form-floating>.ss-main span.placeholder,.form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-control:focus~label,.form-floating>.input-group>.form-control:not(:placeholder-shown)~label,.form-floating>.input-group>.form-select~label,.form-floating>.choices~label,.form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}.form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.form-object-edit{margin:0 auto;max-width:800px}textarea.form-control[rows="10"]{height:18rem}textarea#id_local_context_data,textarea.markdown,textarea#id_public_key,textarea.form-control[name=csv],textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.card:not(:only-of-type){margin-bottom:1rem}.stat-btn{min-width:3rem}nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}div.paginator>form>div.input-group{width:fit-content}label.required{font-weight:700}label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}table tbody tr.primary{background-color:#337ab726;border-color:#adb5bd}table tbody tr.secondary{background-color:#6c757d26;border-color:#adb5bd}table tbody tr.success{background-color:#19875426;border-color:#adb5bd}table tbody tr.info{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.warning{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.danger{background-color:#dc354526;border-color:#adb5bd}table tbody tr.light{background-color:#f8f9fa26;border-color:#adb5bd}table tbody tr.dark{background-color:#21252926;border-color:#adb5bd}table tbody tr.red{background-color:#dc354526;border-color:#adb5bd}table tbody tr.yellow{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.green{background-color:#19875426;border-color:#adb5bd}table tbody tr.blue{background-color:#0d6efd26;border-color:#adb5bd}table tbody tr.cyan{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.indigo{background-color:#6610f226;border-color:#adb5bd}table tbody tr.purple{background-color:#6f42c126;border-color:#adb5bd}table tbody tr.pink{background-color:#d6338426;border-color:#adb5bd}table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}table .table-badge-group .table-badge:not(.badge){padding:0 .65em}table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}pre.change-data{padding-right:0;padding-left:0}pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}pre.change-data>span.added{background-color:var(--nbx-change-added)}pre.change-data>span.removed{background-color:var(--nbx-change-removed)}pre.change-diff{border-color:transparent}pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}pre.change-diff.change-added{background-color:var(--nbx-change-added)}div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#6c757d}.table-controls{display:flex}@media (min-width: 768px){.table-controls{margin-top:0!important;margin-bottom:0!important}}.table-controls .table-configure{justify-content:flex-start}@media (min-width: 768px){.table-controls .table-configure{justify-content:flex-end}}.table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}.paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}.nav-tabs .nav-link:hover{border-bottom-color:transparent}.nav-tabs .nav-link.active{background-color:#f8f9fa;border-bottom-color:#f8f9fa;transform:translateY(1px)}.tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#f8f9fa;border-bottom:1px solid #dee2e6}@media print{.tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{.masonry{position:static!important;display:block!important;height:unset!important}}@media print{.masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}.record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}.record-depth span:only-of-type,.record-depth span:last-of-type{margin-right:.25rem}.popover.image-preview-popover{max-width:unset}#django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}html[data-netbox-url-name=home] .content-container,html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}html[data-netbox-url-name=login] #django-messages{display:none} +:root{--bs-orange: #fd7e14;--bs-teal: #20c997;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #337ab7;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-red: #dc3545;--bs-yellow: #ffc107;--bs-green: #198754;--bs-blue: #0d6efd;--bs-cyan: #0dcaf0;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:800}small,.small{font-size:.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#212529;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.375rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer:before{content:"\2014\a0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){.container-sm,.container{max-width:540px}}@media (min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media (min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media (min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media (min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: .25rem}.g-1,.gy-1{--bs-gutter-y: .25rem}.g-2,.gx-2{--bs-gutter-x: .5rem}.g-2,.gy-2{--bs-gutter-y: .5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: .25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: .25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: .5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: .5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: .25rem}.g-md-1,.gy-md-1{--bs-gutter-y: .25rem}.g-md-2,.gx-md-2{--bs-gutter-x: .5rem}.g-md-2,.gy-md-2{--bs-gutter-y: .5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: .25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: .25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: .5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: .5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: .25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: .25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: .5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: .5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: .25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: .25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: .5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: .5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, .05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, .1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, .075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #e9ecef;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#adb5bd;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{color:#6c757d;background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-primary:hover{color:#fff;background-color:#2b689c;border-color:#296292}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#2b689c;border-color:#296292;box-shadow:0 0 0 .25rem #528ec280}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#296292;border-color:#265c89}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #528ec280}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-red{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-red,.btn-red:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-red,.btn-check:active+.btn-red,.btn-red:active,.btn-red.active,.show>.btn-red.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-red:focus,.btn-check:active+.btn-red:focus,.btn-red:active:focus,.btn-red.active:focus,.show>.btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-red:disabled,.btn-red.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-yellow{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-yellow,.btn-yellow:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-yellow,.btn-check:active+.btn-yellow,.btn-yellow:active,.btn-yellow.active,.show>.btn-yellow.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-yellow:focus,.btn-check:active+.btn-yellow:focus,.btn-yellow:active:focus,.btn-yellow.active:focus,.show>.btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-yellow:disabled,.btn-yellow.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-green{color:#fff;background-color:#198754;border-color:#198754}.btn-green:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-green,.btn-green:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-green,.btn-check:active+.btn-green,.btn-green:active,.btn-green.active,.show>.btn-green.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-green:focus,.btn-check:active+.btn-green:focus,.btn-green:active:focus,.btn-green.active:focus,.show>.btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-green:disabled,.btn-green.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-blue{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-blue,.btn-blue:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+.btn-blue,.btn-check:active+.btn-blue,.btn-blue:active,.btn-blue.active,.show>.btn-blue.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-blue:focus,.btn-check:active+.btn-blue:focus,.btn-blue:active:focus,.btn-blue.active:focus,.show>.btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}.btn-blue:disabled,.btn-blue.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-cyan{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-cyan,.btn-cyan:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-cyan,.btn-check:active+.btn-cyan,.btn-cyan:active,.btn-cyan.active,.show>.btn-cyan.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-cyan:focus,.btn-check:active+.btn-cyan:focus,.btn-cyan:active:focus,.btn-cyan.active:focus,.show>.btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-cyan:disabled,.btn-cyan.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-indigo{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+.btn-indigo,.btn-indigo:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+.btn-indigo,.btn-check:active+.btn-indigo,.btn-indigo:active,.btn-indigo.active,.show>.btn-indigo.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+.btn-indigo:focus,.btn-check:active+.btn-indigo:focus,.btn-indigo:active:focus,.btn-indigo.active:focus,.show>.btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}.btn-indigo:disabled,.btn-indigo.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-purple{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+.btn-purple,.btn-purple:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+.btn-purple,.btn-check:active+.btn-purple,.btn-purple:active,.btn-purple.active,.show>.btn-purple.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+.btn-purple:focus,.btn-check:active+.btn-purple:focus,.btn-purple:active:focus,.btn-purple.active:focus,.show>.btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}.btn-purple:disabled,.btn-purple.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-pink{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+.btn-pink,.btn-pink:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+.btn-pink,.btn-check:active+.btn-pink,.btn-pink:active,.btn-pink.active,.show>.btn-pink.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+.btn-pink:focus,.btn-check:active+.btn-pink:focus,.btn-pink:active:focus,.btn-pink.active:focus,.show>.btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}.btn-pink:disabled,.btn-pink.disabled{color:#fff;background-color:#d63384;border-color:#d63384}.btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+.btn-darker,.btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+.btn-darker,.btn-check:active+.btn-darker,.btn-darker:active,.btn-darker.active,.show>.btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+.btn-darker:focus,.btn-check:active+.btn-darker:focus,.btn-darker:active:focus,.btn-darker.active:focus,.show>.btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}.btn-darker:disabled,.btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+.btn-darkest,.btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+.btn-darkest,.btn-check:active+.btn-darkest,.btn-darkest:active,.btn-darkest.active,.show>.btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+.btn-darkest:focus,.btn-check:active+.btn-darkest:focus,.btn-darkest:active:focus,.btn-darkest.active:focus,.show>.btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}.btn-darkest:disabled,.btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+.btn-gray,.btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+.btn-gray,.btn-check:active+.btn-gray,.btn-gray:active,.btn-gray.active,.show>.btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+.btn-gray:focus,.btn-check:active+.btn-gray:focus,.btn-gray:active:focus,.btn-gray.active:focus,.show>.btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}.btn-gray:disabled,.btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-gray-100,.btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+.btn-gray-100,.btn-check:active+.btn-gray-100,.btn-gray-100:active,.btn-gray-100.active,.show>.btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-gray-100:focus,.btn-check:active+.btn-gray-100:focus,.btn-gray-100:active:focus,.btn-gray-100.active:focus,.show>.btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}.btn-gray-100:disabled,.btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+.btn-gray-200,.btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+.btn-gray-200,.btn-check:active+.btn-gray-200,.btn-gray-200:active,.btn-gray-200.active,.show>.btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+.btn-gray-200:focus,.btn-check:active+.btn-gray-200:focus,.btn-gray-200:active:focus,.btn-gray-200.active:focus,.show>.btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}.btn-gray-200:disabled,.btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+.btn-gray-300,.btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+.btn-gray-300,.btn-check:active+.btn-gray-300,.btn-gray-300:active,.btn-gray-300.active,.show>.btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+.btn-gray-300:focus,.btn-check:active+.btn-gray-300:focus,.btn-gray-300:active:focus,.btn-gray-300.active:focus,.show>.btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}.btn-gray-300:disabled,.btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+.btn-gray-400,.btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+.btn-gray-400,.btn-check:active+.btn-gray-400,.btn-gray-400:active,.btn-gray-400.active,.show>.btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+.btn-gray-400:focus,.btn-check:active+.btn-gray-400:focus,.btn-gray-400:active:focus,.btn-gray-400.active:focus,.show>.btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}.btn-gray-400:disabled,.btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+.btn-gray-500,.btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+.btn-gray-500,.btn-check:active+.btn-gray-500,.btn-gray-500:active,.btn-gray-500.active,.show>.btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+.btn-gray-500:focus,.btn-check:active+.btn-gray-500:focus,.btn-gray-500:active:focus,.btn-gray-500.active:focus,.show>.btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}.btn-gray-500:disabled,.btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-gray-600,.btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+.btn-gray-600,.btn-check:active+.btn-gray-600,.btn-gray-600:active,.btn-gray-600.active,.show>.btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-gray-600:focus,.btn-check:active+.btn-gray-600:focus,.btn-gray-600:active:focus,.btn-gray-600.active:focus,.show>.btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}.btn-gray-600:disabled,.btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}.btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+.btn-gray-700,.btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+.btn-gray-700,.btn-check:active+.btn-gray-700,.btn-gray-700:active,.btn-gray-700.active,.show>.btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+.btn-gray-700:focus,.btn-check:active+.btn-gray-700:focus,.btn-gray-700:active:focus,.btn-gray-700.active:focus,.show>.btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}.btn-gray-700:disabled,.btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}.btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+.btn-gray-800,.btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+.btn-gray-800,.btn-check:active+.btn-gray-800,.btn-gray-800:active,.btn-gray-800.active,.show>.btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+.btn-gray-800:focus,.btn-check:active+.btn-gray-800:focus,.btn-gray-800:active:focus,.btn-gray-800.active:focus,.show>.btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}.btn-gray-800:disabled,.btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}.btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-gray-900,.btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+.btn-gray-900,.btn-check:active+.btn-gray-900,.btn-gray-900:active,.btn-gray-900.active,.show>.btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-gray-900:focus,.btn-check:active+.btn-gray-900:focus,.btn-gray-900:active:focus,.btn-gray-900.active:focus,.show>.btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}.btn-gray-900:disabled,.btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+.btn-red-100,.btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+.btn-red-100,.btn-check:active+.btn-red-100,.btn-red-100:active,.btn-red-100.active,.show>.btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+.btn-red-100:focus,.btn-check:active+.btn-red-100:focus,.btn-red-100:active:focus,.btn-red-100.active:focus,.show>.btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}.btn-red-100:disabled,.btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+.btn-red-200,.btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+.btn-red-200,.btn-check:active+.btn-red-200,.btn-red-200:active,.btn-red-200.active,.show>.btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+.btn-red-200:focus,.btn-check:active+.btn-red-200:focus,.btn-red-200:active:focus,.btn-red-200.active:focus,.show>.btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}.btn-red-200:disabled,.btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+.btn-red-300,.btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+.btn-red-300,.btn-check:active+.btn-red-300,.btn-red-300:active,.btn-red-300.active,.show>.btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+.btn-red-300:focus,.btn-check:active+.btn-red-300:focus,.btn-red-300:active:focus,.btn-red-300.active:focus,.show>.btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}.btn-red-300:disabled,.btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+.btn-red-400,.btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+.btn-red-400,.btn-check:active+.btn-red-400,.btn-red-400:active,.btn-red-400.active,.show>.btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+.btn-red-400:focus,.btn-check:active+.btn-red-400:focus,.btn-red-400:active:focus,.btn-red-400.active:focus,.show>.btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}.btn-red-400:disabled,.btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-red-500,.btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+.btn-red-500,.btn-check:active+.btn-red-500,.btn-red-500:active,.btn-red-500.active,.show>.btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-red-500:focus,.btn-check:active+.btn-red-500:focus,.btn-red-500:active:focus,.btn-red-500.active:focus,.show>.btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}.btn-red-500:disabled,.btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+.btn-red-600,.btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+.btn-red-600,.btn-check:active+.btn-red-600,.btn-red-600:active,.btn-red-600.active,.show>.btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+.btn-red-600:focus,.btn-check:active+.btn-red-600:focus,.btn-red-600:active:focus,.btn-red-600.active:focus,.show>.btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}.btn-red-600:disabled,.btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-red-700{color:#fff;background-color:#842029;border-color:#842029}.btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+.btn-red-700,.btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+.btn-red-700,.btn-check:active+.btn-red-700,.btn-red-700:active,.btn-red-700.active,.show>.btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+.btn-red-700:focus,.btn-check:active+.btn-red-700:focus,.btn-red-700:active:focus,.btn-red-700.active:focus,.show>.btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}.btn-red-700:disabled,.btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}.btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}.btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+.btn-red-800,.btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+.btn-red-800,.btn-check:active+.btn-red-800,.btn-red-800:active,.btn-red-800.active,.show>.btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+.btn-red-800:focus,.btn-check:active+.btn-red-800:focus,.btn-red-800:active:focus,.btn-red-800.active:focus,.show>.btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}.btn-red-800:disabled,.btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}.btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+.btn-red-900,.btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+.btn-red-900,.btn-check:active+.btn-red-900,.btn-red-900:active,.btn-red-900.active,.show>.btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+.btn-red-900:focus,.btn-check:active+.btn-red-900:focus,.btn-red-900:active:focus,.btn-red-900.active:focus,.show>.btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}.btn-red-900:disabled,.btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+.btn-yellow-100,.btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+.btn-yellow-100,.btn-check:active+.btn-yellow-100,.btn-yellow-100:active,.btn-yellow-100.active,.show>.btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+.btn-yellow-100:focus,.btn-check:active+.btn-yellow-100:focus,.btn-yellow-100:active:focus,.btn-yellow-100.active:focus,.show>.btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}.btn-yellow-100:disabled,.btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+.btn-yellow-200,.btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+.btn-yellow-200,.btn-check:active+.btn-yellow-200,.btn-yellow-200:active,.btn-yellow-200.active,.show>.btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+.btn-yellow-200:focus,.btn-check:active+.btn-yellow-200:focus,.btn-yellow-200:active:focus,.btn-yellow-200.active:focus,.show>.btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}.btn-yellow-200:disabled,.btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+.btn-yellow-300,.btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+.btn-yellow-300,.btn-check:active+.btn-yellow-300,.btn-yellow-300:active,.btn-yellow-300.active,.show>.btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+.btn-yellow-300:focus,.btn-check:active+.btn-yellow-300:focus,.btn-yellow-300:active:focus,.btn-yellow-300.active:focus,.show>.btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}.btn-yellow-300:disabled,.btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+.btn-yellow-400,.btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+.btn-yellow-400,.btn-check:active+.btn-yellow-400,.btn-yellow-400:active,.btn-yellow-400.active,.show>.btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+.btn-yellow-400:focus,.btn-check:active+.btn-yellow-400:focus,.btn-yellow-400:active:focus,.btn-yellow-400.active:focus,.show>.btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}.btn-yellow-400:disabled,.btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-yellow-500,.btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+.btn-yellow-500,.btn-check:active+.btn-yellow-500,.btn-yellow-500:active,.btn-yellow-500.active,.show>.btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-yellow-500:focus,.btn-check:active+.btn-yellow-500:focus,.btn-yellow-500:active:focus,.btn-yellow-500.active:focus,.show>.btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}.btn-yellow-500:disabled,.btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+.btn-yellow-600,.btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+.btn-yellow-600,.btn-check:active+.btn-yellow-600,.btn-yellow-600:active,.btn-yellow-600.active,.show>.btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+.btn-yellow-600:focus,.btn-check:active+.btn-yellow-600:focus,.btn-yellow-600:active:focus,.btn-yellow-600.active:focus,.show>.btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}.btn-yellow-600:disabled,.btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}.btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+.btn-yellow-700,.btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+.btn-yellow-700,.btn-check:active+.btn-yellow-700,.btn-yellow-700:active,.btn-yellow-700.active,.show>.btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+.btn-yellow-700:focus,.btn-check:active+.btn-yellow-700:focus,.btn-yellow-700:active:focus,.btn-yellow-700.active:focus,.show>.btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}.btn-yellow-700:disabled,.btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}.btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}.btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+.btn-yellow-800,.btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+.btn-yellow-800,.btn-check:active+.btn-yellow-800,.btn-yellow-800:active,.btn-yellow-800.active,.show>.btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+.btn-yellow-800:focus,.btn-check:active+.btn-yellow-800:focus,.btn-yellow-800:active:focus,.btn-yellow-800.active:focus,.show>.btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}.btn-yellow-800:disabled,.btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}.btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}.btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+.btn-yellow-900,.btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+.btn-yellow-900,.btn-check:active+.btn-yellow-900,.btn-yellow-900:active,.btn-yellow-900.active,.show>.btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+.btn-yellow-900:focus,.btn-check:active+.btn-yellow-900:focus,.btn-yellow-900:active:focus,.btn-yellow-900.active:focus,.show>.btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}.btn-yellow-900:disabled,.btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}.btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+.btn-green-100,.btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+.btn-green-100,.btn-check:active+.btn-green-100,.btn-green-100:active,.btn-green-100.active,.show>.btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+.btn-green-100:focus,.btn-check:active+.btn-green-100:focus,.btn-green-100:active:focus,.btn-green-100.active:focus,.show>.btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}.btn-green-100:disabled,.btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+.btn-green-200,.btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+.btn-green-200,.btn-check:active+.btn-green-200,.btn-green-200:active,.btn-green-200.active,.show>.btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+.btn-green-200:focus,.btn-check:active+.btn-green-200:focus,.btn-green-200:active:focus,.btn-green-200.active:focus,.show>.btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}.btn-green-200:disabled,.btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}.btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+.btn-green-300,.btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+.btn-green-300,.btn-check:active+.btn-green-300,.btn-green-300:active,.btn-green-300.active,.show>.btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+.btn-green-300:focus,.btn-check:active+.btn-green-300:focus,.btn-green-300:active:focus,.btn-green-300.active:focus,.show>.btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}.btn-green-300:disabled,.btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}.btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}.btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+.btn-green-400,.btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+.btn-green-400,.btn-check:active+.btn-green-400,.btn-green-400:active,.btn-green-400.active,.show>.btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+.btn-green-400:focus,.btn-check:active+.btn-green-400:focus,.btn-green-400:active:focus,.btn-green-400.active:focus,.show>.btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}.btn-green-400:disabled,.btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}.btn-green-500{color:#fff;background-color:#198754;border-color:#198754}.btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-green-500,.btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+.btn-green-500,.btn-check:active+.btn-green-500,.btn-green-500:active,.btn-green-500.active,.show>.btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-green-500:focus,.btn-check:active+.btn-green-500:focus,.btn-green-500:active:focus,.btn-green-500.active:focus,.show>.btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}.btn-green-500:disabled,.btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}.btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+.btn-green-600,.btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+.btn-green-600,.btn-check:active+.btn-green-600,.btn-green-600:active,.btn-green-600.active,.show>.btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+.btn-green-600:focus,.btn-check:active+.btn-green-600:focus,.btn-green-600:active:focus,.btn-green-600.active:focus,.show>.btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}.btn-green-600:disabled,.btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}.btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+.btn-green-700,.btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+.btn-green-700,.btn-check:active+.btn-green-700,.btn-green-700:active,.btn-green-700.active,.show>.btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+.btn-green-700:focus,.btn-check:active+.btn-green-700:focus,.btn-green-700:active:focus,.btn-green-700.active:focus,.show>.btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}.btn-green-700:disabled,.btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+.btn-green-800,.btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+.btn-green-800,.btn-check:active+.btn-green-800,.btn-green-800:active,.btn-green-800.active,.show>.btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+.btn-green-800:focus,.btn-check:active+.btn-green-800:focus,.btn-green-800:active:focus,.btn-green-800.active:focus,.show>.btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}.btn-green-800:disabled,.btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}.btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+.btn-green-900,.btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+.btn-green-900,.btn-check:active+.btn-green-900,.btn-green-900:active,.btn-green-900.active,.show>.btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+.btn-green-900:focus,.btn-check:active+.btn-green-900:focus,.btn-green-900:active:focus,.btn-green-900.active:focus,.show>.btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}.btn-green-900:disabled,.btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}.btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+.btn-blue-100,.btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+.btn-blue-100,.btn-check:active+.btn-blue-100,.btn-blue-100:active,.btn-blue-100.active,.show>.btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+.btn-blue-100:focus,.btn-check:active+.btn-blue-100:focus,.btn-blue-100:active:focus,.btn-blue-100.active:focus,.show>.btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}.btn-blue-100:disabled,.btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+.btn-blue-200,.btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+.btn-blue-200,.btn-check:active+.btn-blue-200,.btn-blue-200:active,.btn-blue-200.active,.show>.btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+.btn-blue-200:focus,.btn-check:active+.btn-blue-200:focus,.btn-blue-200:active:focus,.btn-blue-200.active:focus,.show>.btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}.btn-blue-200:disabled,.btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+.btn-blue-300,.btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+.btn-blue-300,.btn-check:active+.btn-blue-300,.btn-blue-300:active,.btn-blue-300.active,.show>.btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+.btn-blue-300:focus,.btn-check:active+.btn-blue-300:focus,.btn-blue-300:active:focus,.btn-blue-300.active:focus,.show>.btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}.btn-blue-300:disabled,.btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+.btn-blue-400,.btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+.btn-blue-400,.btn-check:active+.btn-blue-400,.btn-blue-400:active,.btn-blue-400.active,.show>.btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+.btn-blue-400:focus,.btn-check:active+.btn-blue-400:focus,.btn-blue-400:active:focus,.btn-blue-400.active:focus,.show>.btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}.btn-blue-400:disabled,.btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-blue-500,.btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+.btn-blue-500,.btn-check:active+.btn-blue-500,.btn-blue-500:active,.btn-blue-500.active,.show>.btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-blue-500:focus,.btn-check:active+.btn-blue-500:focus,.btn-blue-500:active:focus,.btn-blue-500.active:focus,.show>.btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}.btn-blue-500:disabled,.btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+.btn-blue-600,.btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+.btn-blue-600,.btn-check:active+.btn-blue-600,.btn-blue-600:active,.btn-blue-600.active,.show>.btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+.btn-blue-600:focus,.btn-check:active+.btn-blue-600:focus,.btn-blue-600:active:focus,.btn-blue-600.active:focus,.show>.btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}.btn-blue-600:disabled,.btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}.btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+.btn-blue-700,.btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+.btn-blue-700,.btn-check:active+.btn-blue-700,.btn-blue-700:active,.btn-blue-700.active,.show>.btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+.btn-blue-700:focus,.btn-check:active+.btn-blue-700:focus,.btn-blue-700:active:focus,.btn-blue-700.active:focus,.show>.btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}.btn-blue-700:disabled,.btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}.btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}.btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+.btn-blue-800,.btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+.btn-blue-800,.btn-check:active+.btn-blue-800,.btn-blue-800:active,.btn-blue-800.active,.show>.btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+.btn-blue-800:focus,.btn-check:active+.btn-blue-800:focus,.btn-blue-800:active:focus,.btn-blue-800.active:focus,.show>.btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}.btn-blue-800:disabled,.btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}.btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}.btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+.btn-blue-900,.btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+.btn-blue-900,.btn-check:active+.btn-blue-900,.btn-blue-900:active,.btn-blue-900.active,.show>.btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+.btn-blue-900:focus,.btn-check:active+.btn-blue-900:focus,.btn-blue-900:active:focus,.btn-blue-900.active:focus,.show>.btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}.btn-blue-900:disabled,.btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}.btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+.btn-cyan-100,.btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+.btn-cyan-100,.btn-check:active+.btn-cyan-100,.btn-cyan-100:active,.btn-cyan-100.active,.show>.btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+.btn-cyan-100:focus,.btn-check:active+.btn-cyan-100:focus,.btn-cyan-100:active:focus,.btn-cyan-100.active:focus,.show>.btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}.btn-cyan-100:disabled,.btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+.btn-cyan-200,.btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+.btn-cyan-200,.btn-check:active+.btn-cyan-200,.btn-cyan-200:active,.btn-cyan-200.active,.show>.btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+.btn-cyan-200:focus,.btn-check:active+.btn-cyan-200:focus,.btn-cyan-200:active:focus,.btn-cyan-200.active:focus,.show>.btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}.btn-cyan-200:disabled,.btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+.btn-cyan-300,.btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+.btn-cyan-300,.btn-check:active+.btn-cyan-300,.btn-cyan-300:active,.btn-cyan-300.active,.show>.btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+.btn-cyan-300:focus,.btn-check:active+.btn-cyan-300:focus,.btn-cyan-300:active:focus,.btn-cyan-300.active:focus,.show>.btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}.btn-cyan-300:disabled,.btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+.btn-cyan-400,.btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+.btn-cyan-400,.btn-check:active+.btn-cyan-400,.btn-cyan-400:active,.btn-cyan-400.active,.show>.btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+.btn-cyan-400:focus,.btn-check:active+.btn-cyan-400:focus,.btn-cyan-400:active:focus,.btn-cyan-400.active:focus,.show>.btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}.btn-cyan-400:disabled,.btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-cyan-500,.btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+.btn-cyan-500,.btn-check:active+.btn-cyan-500,.btn-cyan-500:active,.btn-cyan-500.active,.show>.btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-cyan-500:focus,.btn-check:active+.btn-cyan-500:focus,.btn-cyan-500:active:focus,.btn-cyan-500.active:focus,.show>.btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}.btn-cyan-500:disabled,.btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+.btn-cyan-600,.btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+.btn-cyan-600,.btn-check:active+.btn-cyan-600,.btn-cyan-600:active,.btn-cyan-600.active,.show>.btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+.btn-cyan-600:focus,.btn-check:active+.btn-cyan-600:focus,.btn-cyan-600:active:focus,.btn-cyan-600.active:focus,.show>.btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}.btn-cyan-600:disabled,.btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}.btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+.btn-cyan-700,.btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+.btn-cyan-700,.btn-check:active+.btn-cyan-700,.btn-cyan-700:active,.btn-cyan-700.active,.show>.btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+.btn-cyan-700:focus,.btn-check:active+.btn-cyan-700:focus,.btn-cyan-700:active:focus,.btn-cyan-700.active:focus,.show>.btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}.btn-cyan-700:disabled,.btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}.btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}.btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+.btn-cyan-800,.btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+.btn-cyan-800,.btn-check:active+.btn-cyan-800,.btn-cyan-800:active,.btn-cyan-800.active,.show>.btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+.btn-cyan-800:focus,.btn-check:active+.btn-cyan-800:focus,.btn-cyan-800:active:focus,.btn-cyan-800.active:focus,.show>.btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}.btn-cyan-800:disabled,.btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}.btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}.btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+.btn-cyan-900,.btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+.btn-cyan-900,.btn-check:active+.btn-cyan-900,.btn-cyan-900:active,.btn-cyan-900.active,.show>.btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+.btn-cyan-900:focus,.btn-check:active+.btn-cyan-900:focus,.btn-cyan-900:active:focus,.btn-cyan-900.active:focus,.show>.btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}.btn-cyan-900:disabled,.btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}.btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+.btn-indigo-100,.btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+.btn-indigo-100,.btn-check:active+.btn-indigo-100,.btn-indigo-100:active,.btn-indigo-100.active,.show>.btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+.btn-indigo-100:focus,.btn-check:active+.btn-indigo-100:focus,.btn-indigo-100:active:focus,.btn-indigo-100.active:focus,.show>.btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}.btn-indigo-100:disabled,.btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+.btn-indigo-200,.btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+.btn-indigo-200,.btn-check:active+.btn-indigo-200,.btn-indigo-200:active,.btn-indigo-200.active,.show>.btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+.btn-indigo-200:focus,.btn-check:active+.btn-indigo-200:focus,.btn-indigo-200:active:focus,.btn-indigo-200.active:focus,.show>.btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}.btn-indigo-200:disabled,.btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+.btn-indigo-300,.btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+.btn-indigo-300,.btn-check:active+.btn-indigo-300,.btn-indigo-300:active,.btn-indigo-300.active,.show>.btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+.btn-indigo-300:focus,.btn-check:active+.btn-indigo-300:focus,.btn-indigo-300:active:focus,.btn-indigo-300.active:focus,.show>.btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}.btn-indigo-300:disabled,.btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+.btn-indigo-400,.btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+.btn-indigo-400,.btn-check:active+.btn-indigo-400,.btn-indigo-400:active,.btn-indigo-400.active,.show>.btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+.btn-indigo-400:focus,.btn-check:active+.btn-indigo-400:focus,.btn-indigo-400:active:focus,.btn-indigo-400.active:focus,.show>.btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}.btn-indigo-400:disabled,.btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+.btn-indigo-500,.btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+.btn-indigo-500,.btn-check:active+.btn-indigo-500,.btn-indigo-500:active,.btn-indigo-500.active,.show>.btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+.btn-indigo-500:focus,.btn-check:active+.btn-indigo-500:focus,.btn-indigo-500:active:focus,.btn-indigo-500.active:focus,.show>.btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}.btn-indigo-500:disabled,.btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+.btn-indigo-600,.btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+.btn-indigo-600,.btn-check:active+.btn-indigo-600,.btn-indigo-600:active,.btn-indigo-600.active,.show>.btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+.btn-indigo-600:focus,.btn-check:active+.btn-indigo-600:focus,.btn-indigo-600:active:focus,.btn-indigo-600.active:focus,.show>.btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}.btn-indigo-600:disabled,.btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+.btn-indigo-700,.btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+.btn-indigo-700,.btn-check:active+.btn-indigo-700,.btn-indigo-700:active,.btn-indigo-700.active,.show>.btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+.btn-indigo-700:focus,.btn-check:active+.btn-indigo-700:focus,.btn-indigo-700:active:focus,.btn-indigo-700.active:focus,.show>.btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}.btn-indigo-700:disabled,.btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}.btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+.btn-indigo-800,.btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+.btn-indigo-800,.btn-check:active+.btn-indigo-800,.btn-indigo-800:active,.btn-indigo-800.active,.show>.btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+.btn-indigo-800:focus,.btn-check:active+.btn-indigo-800:focus,.btn-indigo-800:active:focus,.btn-indigo-800.active:focus,.show>.btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}.btn-indigo-800:disabled,.btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}.btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}.btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+.btn-indigo-900,.btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+.btn-indigo-900,.btn-check:active+.btn-indigo-900,.btn-indigo-900:active,.btn-indigo-900.active,.show>.btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+.btn-indigo-900:focus,.btn-check:active+.btn-indigo-900:focus,.btn-indigo-900:active:focus,.btn-indigo-900.active:focus,.show>.btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}.btn-indigo-900:disabled,.btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}.btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+.btn-purple-100,.btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+.btn-purple-100,.btn-check:active+.btn-purple-100,.btn-purple-100:active,.btn-purple-100.active,.show>.btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+.btn-purple-100:focus,.btn-check:active+.btn-purple-100:focus,.btn-purple-100:active:focus,.btn-purple-100.active:focus,.show>.btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}.btn-purple-100:disabled,.btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+.btn-purple-200,.btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+.btn-purple-200,.btn-check:active+.btn-purple-200,.btn-purple-200:active,.btn-purple-200.active,.show>.btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+.btn-purple-200:focus,.btn-check:active+.btn-purple-200:focus,.btn-purple-200:active:focus,.btn-purple-200.active:focus,.show>.btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}.btn-purple-200:disabled,.btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+.btn-purple-300,.btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+.btn-purple-300,.btn-check:active+.btn-purple-300,.btn-purple-300:active,.btn-purple-300.active,.show>.btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+.btn-purple-300:focus,.btn-check:active+.btn-purple-300:focus,.btn-purple-300:active:focus,.btn-purple-300.active:focus,.show>.btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}.btn-purple-300:disabled,.btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+.btn-purple-400,.btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+.btn-purple-400,.btn-check:active+.btn-purple-400,.btn-purple-400:active,.btn-purple-400.active,.show>.btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+.btn-purple-400:focus,.btn-check:active+.btn-purple-400:focus,.btn-purple-400:active:focus,.btn-purple-400.active:focus,.show>.btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}.btn-purple-400:disabled,.btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+.btn-purple-500,.btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+.btn-purple-500,.btn-check:active+.btn-purple-500,.btn-purple-500:active,.btn-purple-500.active,.show>.btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+.btn-purple-500:focus,.btn-check:active+.btn-purple-500:focus,.btn-purple-500:active:focus,.btn-purple-500.active:focus,.show>.btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}.btn-purple-500:disabled,.btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}.btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+.btn-purple-600,.btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+.btn-purple-600,.btn-check:active+.btn-purple-600,.btn-purple-600:active,.btn-purple-600.active,.show>.btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+.btn-purple-600:focus,.btn-check:active+.btn-purple-600:focus,.btn-purple-600:active:focus,.btn-purple-600.active:focus,.show>.btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}.btn-purple-600:disabled,.btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}.btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}.btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+.btn-purple-700,.btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+.btn-purple-700,.btn-check:active+.btn-purple-700,.btn-purple-700:active,.btn-purple-700.active,.show>.btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+.btn-purple-700:focus,.btn-check:active+.btn-purple-700:focus,.btn-purple-700:active:focus,.btn-purple-700.active:focus,.show>.btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}.btn-purple-700:disabled,.btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}.btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+.btn-purple-800,.btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+.btn-purple-800,.btn-check:active+.btn-purple-800,.btn-purple-800:active,.btn-purple-800.active,.show>.btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+.btn-purple-800:focus,.btn-check:active+.btn-purple-800:focus,.btn-purple-800:active:focus,.btn-purple-800.active:focus,.show>.btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}.btn-purple-800:disabled,.btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}.btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+.btn-purple-900,.btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+.btn-purple-900,.btn-check:active+.btn-purple-900,.btn-purple-900:active,.btn-purple-900.active,.show>.btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+.btn-purple-900:focus,.btn-check:active+.btn-purple-900:focus,.btn-purple-900:active:focus,.btn-purple-900.active:focus,.show>.btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}.btn-purple-900:disabled,.btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}.btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+.btn-pink-100,.btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+.btn-pink-100,.btn-check:active+.btn-pink-100,.btn-pink-100:active,.btn-pink-100.active,.show>.btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+.btn-pink-100:focus,.btn-check:active+.btn-pink-100:focus,.btn-pink-100:active:focus,.btn-pink-100.active:focus,.show>.btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}.btn-pink-100:disabled,.btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}.btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+.btn-pink-200,.btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+.btn-pink-200,.btn-check:active+.btn-pink-200,.btn-pink-200:active,.btn-pink-200.active,.show>.btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+.btn-pink-200:focus,.btn-check:active+.btn-pink-200:focus,.btn-pink-200:active:focus,.btn-pink-200.active:focus,.show>.btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}.btn-pink-200:disabled,.btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}.btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+.btn-pink-300,.btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+.btn-pink-300,.btn-check:active+.btn-pink-300,.btn-pink-300:active,.btn-pink-300.active,.show>.btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+.btn-pink-300:focus,.btn-check:active+.btn-pink-300:focus,.btn-pink-300:active:focus,.btn-pink-300.active:focus,.show>.btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}.btn-pink-300:disabled,.btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+.btn-pink-400,.btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+.btn-pink-400,.btn-check:active+.btn-pink-400,.btn-pink-400:active,.btn-pink-400.active,.show>.btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+.btn-pink-400:focus,.btn-check:active+.btn-pink-400:focus,.btn-pink-400:active:focus,.btn-pink-400.active:focus,.show>.btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}.btn-pink-400:disabled,.btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+.btn-pink-500,.btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+.btn-pink-500,.btn-check:active+.btn-pink-500,.btn-pink-500:active,.btn-pink-500.active,.show>.btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+.btn-pink-500:focus,.btn-check:active+.btn-pink-500:focus,.btn-pink-500:active:focus,.btn-pink-500.active:focus,.show>.btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}.btn-pink-500:disabled,.btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}.btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+.btn-pink-600,.btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+.btn-pink-600,.btn-check:active+.btn-pink-600,.btn-pink-600:active,.btn-pink-600.active,.show>.btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+.btn-pink-600:focus,.btn-check:active+.btn-pink-600:focus,.btn-pink-600:active:focus,.btn-pink-600.active:focus,.show>.btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}.btn-pink-600:disabled,.btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+.btn-pink-700,.btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+.btn-pink-700,.btn-check:active+.btn-pink-700,.btn-pink-700:active,.btn-pink-700.active,.show>.btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+.btn-pink-700:focus,.btn-check:active+.btn-pink-700:focus,.btn-pink-700:active:focus,.btn-pink-700.active:focus,.show>.btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}.btn-pink-700:disabled,.btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}.btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+.btn-pink-800,.btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+.btn-pink-800,.btn-check:active+.btn-pink-800,.btn-pink-800:active,.btn-pink-800.active,.show>.btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+.btn-pink-800:focus,.btn-check:active+.btn-pink-800:focus,.btn-pink-800:active:focus,.btn-pink-800.active:focus,.show>.btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}.btn-pink-800:disabled,.btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}.btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+.btn-pink-900,.btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+.btn-pink-900,.btn-check:active+.btn-pink-900,.btn-pink-900:active,.btn-pink-900.active,.show>.btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+.btn-pink-900:focus,.btn-check:active+.btn-pink-900:focus,.btn-pink-900:active:focus,.btn-pink-900.active:focus,.show>.btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}.btn-pink-900:disabled,.btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-outline-primary{color:#337ab7;border-color:#337ab7}.btn-outline-primary:hover{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#337ab7;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#212529;background-color:transparent}.btn-outline-red{color:#dc3545;border-color:#dc3545}.btn-outline-red:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-red,.btn-outline-red:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-red,.btn-check:active+.btn-outline-red,.btn-outline-red:active,.btn-outline-red.active,.btn-outline-red.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-red:focus,.btn-check:active+.btn-outline-red:focus,.btn-outline-red:active:focus,.btn-outline-red.active:focus,.btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-red:disabled,.btn-outline-red.disabled{color:#dc3545;background-color:transparent}.btn-outline-yellow{color:#ffc107;border-color:#ffc107}.btn-outline-yellow:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-yellow,.btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-yellow,.btn-check:active+.btn-outline-yellow,.btn-outline-yellow:active,.btn-outline-yellow.active,.btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-yellow:focus,.btn-check:active+.btn-outline-yellow:focus,.btn-outline-yellow:active:focus,.btn-outline-yellow.active:focus,.btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-yellow:disabled,.btn-outline-yellow.disabled{color:#ffc107;background-color:transparent}.btn-outline-green{color:#198754;border-color:#198754}.btn-outline-green:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-green,.btn-outline-green:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-green,.btn-check:active+.btn-outline-green,.btn-outline-green:active,.btn-outline-green.active,.btn-outline-green.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-green:focus,.btn-check:active+.btn-outline-green:focus,.btn-outline-green:active:focus,.btn-outline-green.active:focus,.btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-green:disabled,.btn-outline-green.disabled{color:#198754;background-color:transparent}.btn-outline-blue{color:#0d6efd;border-color:#0d6efd}.btn-outline-blue:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-blue,.btn-outline-blue:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+.btn-outline-blue,.btn-check:active+.btn-outline-blue,.btn-outline-blue:active,.btn-outline-blue.active,.btn-outline-blue.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-blue:focus,.btn-check:active+.btn-outline-blue:focus,.btn-outline-blue:active:focus,.btn-outline-blue.active:focus,.btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-outline-blue:disabled,.btn-outline-blue.disabled{color:#0d6efd;background-color:transparent}.btn-outline-cyan{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-cyan:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-cyan,.btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-cyan,.btn-check:active+.btn-outline-cyan,.btn-outline-cyan:active,.btn-outline-cyan.active,.btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-cyan:focus,.btn-check:active+.btn-outline-cyan:focus,.btn-outline-cyan:active:focus,.btn-outline-cyan.active:focus,.btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-cyan:disabled,.btn-outline-cyan.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-indigo{color:#6610f2;border-color:#6610f2}.btn-outline-indigo:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+.btn-outline-indigo,.btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+.btn-outline-indigo,.btn-check:active+.btn-outline-indigo,.btn-outline-indigo:active,.btn-outline-indigo.active,.btn-outline-indigo.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+.btn-outline-indigo:focus,.btn-check:active+.btn-outline-indigo:focus,.btn-outline-indigo:active:focus,.btn-outline-indigo.active:focus,.btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-outline-indigo:disabled,.btn-outline-indigo.disabled{color:#6610f2;background-color:transparent}.btn-outline-purple{color:#6f42c1;border-color:#6f42c1}.btn-outline-purple:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+.btn-outline-purple,.btn-outline-purple:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+.btn-outline-purple,.btn-check:active+.btn-outline-purple,.btn-outline-purple:active,.btn-outline-purple.active,.btn-outline-purple.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+.btn-outline-purple:focus,.btn-check:active+.btn-outline-purple:focus,.btn-outline-purple:active:focus,.btn-outline-purple.active:focus,.btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-outline-purple:disabled,.btn-outline-purple.disabled{color:#6f42c1;background-color:transparent}.btn-outline-pink{color:#d63384;border-color:#d63384}.btn-outline-pink:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+.btn-outline-pink,.btn-outline-pink:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+.btn-outline-pink,.btn-check:active+.btn-outline-pink,.btn-outline-pink:active,.btn-outline-pink.active,.btn-outline-pink.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+.btn-outline-pink:focus,.btn-check:active+.btn-outline-pink:focus,.btn-outline-pink:active:focus,.btn-outline-pink.active:focus,.btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-outline-pink:disabled,.btn-outline-pink.disabled{color:#d63384;background-color:transparent}.btn-outline-darker{color:#1b1f22;border-color:#1b1f22}.btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+.btn-outline-darker,.btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+.btn-outline-darker,.btn-check:active+.btn-outline-darker,.btn-outline-darker:active,.btn-outline-darker.active,.btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+.btn-outline-darker:focus,.btn-check:active+.btn-outline-darker:focus,.btn-outline-darker:active:focus,.btn-outline-darker.active:focus,.btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-outline-darker:disabled,.btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}.btn-outline-darkest{color:#171b1d;border-color:#171b1d}.btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+.btn-outline-darkest,.btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+.btn-outline-darkest,.btn-check:active+.btn-outline-darkest,.btn-outline-darkest:active,.btn-outline-darkest.active,.btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+.btn-outline-darkest:focus,.btn-check:active+.btn-outline-darkest:focus,.btn-outline-darkest:active:focus,.btn-outline-darkest.active:focus,.btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-outline-darkest:disabled,.btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}.btn-outline-gray{color:#ced4da;border-color:#ced4da}.btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+.btn-outline-gray,.btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+.btn-outline-gray,.btn-check:active+.btn-outline-gray,.btn-outline-gray:active,.btn-outline-gray.active,.btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+.btn-outline-gray:focus,.btn-check:active+.btn-outline-gray:focus,.btn-outline-gray:active:focus,.btn-outline-gray.active:focus,.btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-outline-gray:disabled,.btn-outline-gray.disabled{color:#ced4da;background-color:transparent}.btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-gray-100,.btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+.btn-outline-gray-100,.btn-check:active+.btn-outline-gray-100,.btn-outline-gray-100:active,.btn-outline-gray-100.active,.btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-gray-100:focus,.btn-check:active+.btn-outline-gray-100:focus,.btn-outline-gray-100:active:focus,.btn-outline-gray-100.active:focus,.btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-outline-gray-100:disabled,.btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}.btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+.btn-outline-gray-200,.btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+.btn-outline-gray-200,.btn-check:active+.btn-outline-gray-200,.btn-outline-gray-200:active,.btn-outline-gray-200.active,.btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+.btn-outline-gray-200:focus,.btn-check:active+.btn-outline-gray-200:focus,.btn-outline-gray-200:active:focus,.btn-outline-gray-200.active:focus,.btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-outline-gray-200:disabled,.btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}.btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}.btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+.btn-outline-gray-300,.btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+.btn-outline-gray-300,.btn-check:active+.btn-outline-gray-300,.btn-outline-gray-300:active,.btn-outline-gray-300.active,.btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+.btn-outline-gray-300:focus,.btn-check:active+.btn-outline-gray-300:focus,.btn-outline-gray-300:active:focus,.btn-outline-gray-300.active:focus,.btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-outline-gray-300:disabled,.btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}.btn-outline-gray-400{color:#ced4da;border-color:#ced4da}.btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+.btn-outline-gray-400,.btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+.btn-outline-gray-400,.btn-check:active+.btn-outline-gray-400,.btn-outline-gray-400:active,.btn-outline-gray-400.active,.btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+.btn-outline-gray-400:focus,.btn-check:active+.btn-outline-gray-400:focus,.btn-outline-gray-400:active:focus,.btn-outline-gray-400.active:focus,.btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-outline-gray-400:disabled,.btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}.btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}.btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+.btn-outline-gray-500,.btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+.btn-outline-gray-500,.btn-check:active+.btn-outline-gray-500,.btn-outline-gray-500:active,.btn-outline-gray-500.active,.btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+.btn-outline-gray-500:focus,.btn-check:active+.btn-outline-gray-500:focus,.btn-outline-gray-500:active:focus,.btn-outline-gray-500.active:focus,.btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-outline-gray-500:disabled,.btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}.btn-outline-gray-600{color:#6c757d;border-color:#6c757d}.btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-gray-600,.btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+.btn-outline-gray-600,.btn-check:active+.btn-outline-gray-600,.btn-outline-gray-600:active,.btn-outline-gray-600.active,.btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-gray-600:focus,.btn-check:active+.btn-outline-gray-600:focus,.btn-outline-gray-600:active:focus,.btn-outline-gray-600.active:focus,.btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-gray-600:disabled,.btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}.btn-outline-gray-700{color:#495057;border-color:#495057}.btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-gray-700,.btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+.btn-outline-gray-700,.btn-check:active+.btn-outline-gray-700,.btn-outline-gray-700:active,.btn-outline-gray-700.active,.btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+.btn-outline-gray-700:focus,.btn-check:active+.btn-outline-gray-700:focus,.btn-outline-gray-700:active:focus,.btn-outline-gray-700.active:focus,.btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}.btn-outline-gray-700:disabled,.btn-outline-gray-700.disabled{color:#495057;background-color:transparent}.btn-outline-gray-800{color:#343a40;border-color:#343a40}.btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+.btn-outline-gray-800,.btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+.btn-outline-gray-800,.btn-check:active+.btn-outline-gray-800,.btn-outline-gray-800:active,.btn-outline-gray-800.active,.btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+.btn-outline-gray-800:focus,.btn-check:active+.btn-outline-gray-800:focus,.btn-outline-gray-800:active:focus,.btn-outline-gray-800.active:focus,.btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-outline-gray-800:disabled,.btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}.btn-outline-gray-900{color:#212529;border-color:#212529}.btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-gray-900,.btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+.btn-outline-gray-900,.btn-check:active+.btn-outline-gray-900,.btn-outline-gray-900:active,.btn-outline-gray-900.active,.btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-gray-900:focus,.btn-check:active+.btn-outline-gray-900:focus,.btn-outline-gray-900:active:focus,.btn-outline-gray-900.active:focus,.btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-gray-900:disabled,.btn-outline-gray-900.disabled{color:#212529;background-color:transparent}.btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}.btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+.btn-outline-red-100,.btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+.btn-outline-red-100,.btn-check:active+.btn-outline-red-100,.btn-outline-red-100:active,.btn-outline-red-100.active,.btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+.btn-outline-red-100:focus,.btn-check:active+.btn-outline-red-100:focus,.btn-outline-red-100:active:focus,.btn-outline-red-100.active:focus,.btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-outline-red-100:disabled,.btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}.btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}.btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+.btn-outline-red-200,.btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+.btn-outline-red-200,.btn-check:active+.btn-outline-red-200,.btn-outline-red-200:active,.btn-outline-red-200.active,.btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+.btn-outline-red-200:focus,.btn-check:active+.btn-outline-red-200:focus,.btn-outline-red-200:active:focus,.btn-outline-red-200.active:focus,.btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-outline-red-200:disabled,.btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}.btn-outline-red-300{color:#ea868f;border-color:#ea868f}.btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+.btn-outline-red-300,.btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+.btn-outline-red-300,.btn-check:active+.btn-outline-red-300,.btn-outline-red-300:active,.btn-outline-red-300.active,.btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+.btn-outline-red-300:focus,.btn-check:active+.btn-outline-red-300:focus,.btn-outline-red-300:active:focus,.btn-outline-red-300.active:focus,.btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-outline-red-300:disabled,.btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}.btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}.btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+.btn-outline-red-400,.btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+.btn-outline-red-400,.btn-check:active+.btn-outline-red-400,.btn-outline-red-400:active,.btn-outline-red-400.active,.btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+.btn-outline-red-400:focus,.btn-check:active+.btn-outline-red-400:focus,.btn-outline-red-400:active:focus,.btn-outline-red-400.active:focus,.btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-outline-red-400:disabled,.btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}.btn-outline-red-500{color:#dc3545;border-color:#dc3545}.btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-red-500,.btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+.btn-outline-red-500,.btn-check:active+.btn-outline-red-500,.btn-outline-red-500:active,.btn-outline-red-500.active,.btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-red-500:focus,.btn-check:active+.btn-outline-red-500:focus,.btn-outline-red-500:active:focus,.btn-outline-red-500.active:focus,.btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-outline-red-500:disabled,.btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}.btn-outline-red-600{color:#b02a37;border-color:#b02a37}.btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+.btn-outline-red-600,.btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+.btn-outline-red-600,.btn-check:active+.btn-outline-red-600,.btn-outline-red-600:active,.btn-outline-red-600.active,.btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+.btn-outline-red-600:focus,.btn-check:active+.btn-outline-red-600:focus,.btn-outline-red-600:active:focus,.btn-outline-red-600.active:focus,.btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-outline-red-600:disabled,.btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}.btn-outline-red-700{color:#842029;border-color:#842029}.btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+.btn-outline-red-700,.btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+.btn-outline-red-700,.btn-check:active+.btn-outline-red-700,.btn-outline-red-700:active,.btn-outline-red-700.active,.btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+.btn-outline-red-700:focus,.btn-check:active+.btn-outline-red-700:focus,.btn-outline-red-700:active:focus,.btn-outline-red-700.active:focus,.btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}.btn-outline-red-700:disabled,.btn-outline-red-700.disabled{color:#842029;background-color:transparent}.btn-outline-red-800{color:#58151c;border-color:#58151c}.btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+.btn-outline-red-800,.btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+.btn-outline-red-800,.btn-check:active+.btn-outline-red-800,.btn-outline-red-800:active,.btn-outline-red-800.active,.btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+.btn-outline-red-800:focus,.btn-check:active+.btn-outline-red-800:focus,.btn-outline-red-800:active:focus,.btn-outline-red-800.active:focus,.btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-outline-red-800:disabled,.btn-outline-red-800.disabled{color:#58151c;background-color:transparent}.btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}.btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+.btn-outline-red-900,.btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+.btn-outline-red-900,.btn-check:active+.btn-outline-red-900,.btn-outline-red-900:active,.btn-outline-red-900.active,.btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+.btn-outline-red-900:focus,.btn-check:active+.btn-outline-red-900:focus,.btn-outline-red-900:active:focus,.btn-outline-red-900.active:focus,.btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-outline-red-900:disabled,.btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}.btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}.btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+.btn-outline-yellow-100,.btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+.btn-outline-yellow-100,.btn-check:active+.btn-outline-yellow-100,.btn-outline-yellow-100:active,.btn-outline-yellow-100.active,.btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+.btn-outline-yellow-100:focus,.btn-check:active+.btn-outline-yellow-100:focus,.btn-outline-yellow-100:active:focus,.btn-outline-yellow-100.active:focus,.btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-outline-yellow-100:disabled,.btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}.btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}.btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+.btn-outline-yellow-200,.btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+.btn-outline-yellow-200,.btn-check:active+.btn-outline-yellow-200,.btn-outline-yellow-200:active,.btn-outline-yellow-200.active,.btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+.btn-outline-yellow-200:focus,.btn-check:active+.btn-outline-yellow-200:focus,.btn-outline-yellow-200:active:focus,.btn-outline-yellow-200.active:focus,.btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-outline-yellow-200:disabled,.btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}.btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}.btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+.btn-outline-yellow-300,.btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+.btn-outline-yellow-300,.btn-check:active+.btn-outline-yellow-300,.btn-outline-yellow-300:active,.btn-outline-yellow-300.active,.btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+.btn-outline-yellow-300:focus,.btn-check:active+.btn-outline-yellow-300:focus,.btn-outline-yellow-300:active:focus,.btn-outline-yellow-300.active:focus,.btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-outline-yellow-300:disabled,.btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}.btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}.btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+.btn-outline-yellow-400,.btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+.btn-outline-yellow-400,.btn-check:active+.btn-outline-yellow-400,.btn-outline-yellow-400:active,.btn-outline-yellow-400.active,.btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+.btn-outline-yellow-400:focus,.btn-check:active+.btn-outline-yellow-400:focus,.btn-outline-yellow-400:active:focus,.btn-outline-yellow-400.active:focus,.btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-outline-yellow-400:disabled,.btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}.btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}.btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-yellow-500,.btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+.btn-outline-yellow-500,.btn-check:active+.btn-outline-yellow-500,.btn-outline-yellow-500:active,.btn-outline-yellow-500.active,.btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-yellow-500:focus,.btn-check:active+.btn-outline-yellow-500:focus,.btn-outline-yellow-500:active:focus,.btn-outline-yellow-500.active:focus,.btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-outline-yellow-500:disabled,.btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}.btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}.btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+.btn-outline-yellow-600,.btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+.btn-outline-yellow-600,.btn-check:active+.btn-outline-yellow-600,.btn-outline-yellow-600:active,.btn-outline-yellow-600.active,.btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+.btn-outline-yellow-600:focus,.btn-check:active+.btn-outline-yellow-600:focus,.btn-outline-yellow-600:active:focus,.btn-outline-yellow-600.active:focus,.btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-outline-yellow-600:disabled,.btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}.btn-outline-yellow-700{color:#997404;border-color:#997404}.btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+.btn-outline-yellow-700,.btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+.btn-outline-yellow-700,.btn-check:active+.btn-outline-yellow-700,.btn-outline-yellow-700:active,.btn-outline-yellow-700.active,.btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+.btn-outline-yellow-700:focus,.btn-check:active+.btn-outline-yellow-700:focus,.btn-outline-yellow-700:active:focus,.btn-outline-yellow-700.active:focus,.btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}.btn-outline-yellow-700:disabled,.btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}.btn-outline-yellow-800{color:#664d03;border-color:#664d03}.btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+.btn-outline-yellow-800,.btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+.btn-outline-yellow-800,.btn-check:active+.btn-outline-yellow-800,.btn-outline-yellow-800:active,.btn-outline-yellow-800.active,.btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+.btn-outline-yellow-800:focus,.btn-check:active+.btn-outline-yellow-800:focus,.btn-outline-yellow-800:active:focus,.btn-outline-yellow-800.active:focus,.btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-outline-yellow-800:disabled,.btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}.btn-outline-yellow-900{color:#332701;border-color:#332701}.btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+.btn-outline-yellow-900,.btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+.btn-outline-yellow-900,.btn-check:active+.btn-outline-yellow-900,.btn-outline-yellow-900:active,.btn-outline-yellow-900.active,.btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+.btn-outline-yellow-900:focus,.btn-check:active+.btn-outline-yellow-900:focus,.btn-outline-yellow-900:active:focus,.btn-outline-yellow-900.active:focus,.btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}.btn-outline-yellow-900:disabled,.btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}.btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}.btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+.btn-outline-green-100,.btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+.btn-outline-green-100,.btn-check:active+.btn-outline-green-100,.btn-outline-green-100:active,.btn-outline-green-100.active,.btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+.btn-outline-green-100:focus,.btn-check:active+.btn-outline-green-100:focus,.btn-outline-green-100:active:focus,.btn-outline-green-100.active:focus,.btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-outline-green-100:disabled,.btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}.btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}.btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+.btn-outline-green-200,.btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+.btn-outline-green-200,.btn-check:active+.btn-outline-green-200,.btn-outline-green-200:active,.btn-outline-green-200.active,.btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+.btn-outline-green-200:focus,.btn-check:active+.btn-outline-green-200:focus,.btn-outline-green-200:active:focus,.btn-outline-green-200.active:focus,.btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-outline-green-200:disabled,.btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}.btn-outline-green-300{color:#75b798;border-color:#75b798}.btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+.btn-outline-green-300,.btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+.btn-outline-green-300,.btn-check:active+.btn-outline-green-300,.btn-outline-green-300:active,.btn-outline-green-300.active,.btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+.btn-outline-green-300:focus,.btn-check:active+.btn-outline-green-300:focus,.btn-outline-green-300:active:focus,.btn-outline-green-300.active:focus,.btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-outline-green-300:disabled,.btn-outline-green-300.disabled{color:#75b798;background-color:transparent}.btn-outline-green-400{color:#479f76;border-color:#479f76}.btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+.btn-outline-green-400,.btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+.btn-outline-green-400,.btn-check:active+.btn-outline-green-400,.btn-outline-green-400:active,.btn-outline-green-400.active,.btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+.btn-outline-green-400:focus,.btn-check:active+.btn-outline-green-400:focus,.btn-outline-green-400:active:focus,.btn-outline-green-400.active:focus,.btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-outline-green-400:disabled,.btn-outline-green-400.disabled{color:#479f76;background-color:transparent}.btn-outline-green-500{color:#198754;border-color:#198754}.btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-green-500,.btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+.btn-outline-green-500,.btn-check:active+.btn-outline-green-500,.btn-outline-green-500:active,.btn-outline-green-500.active,.btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-green-500:focus,.btn-check:active+.btn-outline-green-500:focus,.btn-outline-green-500:active:focus,.btn-outline-green-500.active:focus,.btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}.btn-outline-green-500:disabled,.btn-outline-green-500.disabled{color:#198754;background-color:transparent}.btn-outline-green-600{color:#146c43;border-color:#146c43}.btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+.btn-outline-green-600,.btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+.btn-outline-green-600,.btn-check:active+.btn-outline-green-600,.btn-outline-green-600:active,.btn-outline-green-600.active,.btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+.btn-outline-green-600:focus,.btn-check:active+.btn-outline-green-600:focus,.btn-outline-green-600:active:focus,.btn-outline-green-600.active:focus,.btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-outline-green-600:disabled,.btn-outline-green-600.disabled{color:#146c43;background-color:transparent}.btn-outline-green-700{color:#0f5132;border-color:#0f5132}.btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+.btn-outline-green-700,.btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+.btn-outline-green-700,.btn-check:active+.btn-outline-green-700,.btn-outline-green-700:active,.btn-outline-green-700.active,.btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+.btn-outline-green-700:focus,.btn-check:active+.btn-outline-green-700:focus,.btn-outline-green-700:active:focus,.btn-outline-green-700.active:focus,.btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-outline-green-700:disabled,.btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}.btn-outline-green-800{color:#0a3622;border-color:#0a3622}.btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+.btn-outline-green-800,.btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+.btn-outline-green-800,.btn-check:active+.btn-outline-green-800,.btn-outline-green-800:active,.btn-outline-green-800.active,.btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+.btn-outline-green-800:focus,.btn-check:active+.btn-outline-green-800:focus,.btn-outline-green-800:active:focus,.btn-outline-green-800.active:focus,.btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-outline-green-800:disabled,.btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}.btn-outline-green-900{color:#051b11;border-color:#051b11}.btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+.btn-outline-green-900,.btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+.btn-outline-green-900,.btn-check:active+.btn-outline-green-900,.btn-outline-green-900:active,.btn-outline-green-900.active,.btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+.btn-outline-green-900:focus,.btn-check:active+.btn-outline-green-900:focus,.btn-outline-green-900:active:focus,.btn-outline-green-900.active:focus,.btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-outline-green-900:disabled,.btn-outline-green-900.disabled{color:#051b11;background-color:transparent}.btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}.btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+.btn-outline-blue-100,.btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+.btn-outline-blue-100,.btn-check:active+.btn-outline-blue-100,.btn-outline-blue-100:active,.btn-outline-blue-100.active,.btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+.btn-outline-blue-100:focus,.btn-check:active+.btn-outline-blue-100:focus,.btn-outline-blue-100:active:focus,.btn-outline-blue-100.active:focus,.btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-outline-blue-100:disabled,.btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}.btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}.btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+.btn-outline-blue-200,.btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+.btn-outline-blue-200,.btn-check:active+.btn-outline-blue-200,.btn-outline-blue-200:active,.btn-outline-blue-200.active,.btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+.btn-outline-blue-200:focus,.btn-check:active+.btn-outline-blue-200:focus,.btn-outline-blue-200:active:focus,.btn-outline-blue-200.active:focus,.btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-outline-blue-200:disabled,.btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}.btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}.btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+.btn-outline-blue-300,.btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+.btn-outline-blue-300,.btn-check:active+.btn-outline-blue-300,.btn-outline-blue-300:active,.btn-outline-blue-300.active,.btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+.btn-outline-blue-300:focus,.btn-check:active+.btn-outline-blue-300:focus,.btn-outline-blue-300:active:focus,.btn-outline-blue-300.active:focus,.btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-outline-blue-300:disabled,.btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}.btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}.btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+.btn-outline-blue-400,.btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+.btn-outline-blue-400,.btn-check:active+.btn-outline-blue-400,.btn-outline-blue-400:active,.btn-outline-blue-400.active,.btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+.btn-outline-blue-400:focus,.btn-check:active+.btn-outline-blue-400:focus,.btn-outline-blue-400:active:focus,.btn-outline-blue-400.active:focus,.btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-outline-blue-400:disabled,.btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}.btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}.btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-blue-500,.btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+.btn-outline-blue-500,.btn-check:active+.btn-outline-blue-500,.btn-outline-blue-500:active,.btn-outline-blue-500.active,.btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-blue-500:focus,.btn-check:active+.btn-outline-blue-500:focus,.btn-outline-blue-500:active:focus,.btn-outline-blue-500.active:focus,.btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-outline-blue-500:disabled,.btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}.btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}.btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+.btn-outline-blue-600,.btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+.btn-outline-blue-600,.btn-check:active+.btn-outline-blue-600,.btn-outline-blue-600:active,.btn-outline-blue-600.active,.btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+.btn-outline-blue-600:focus,.btn-check:active+.btn-outline-blue-600:focus,.btn-outline-blue-600:active:focus,.btn-outline-blue-600.active:focus,.btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-outline-blue-600:disabled,.btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}.btn-outline-blue-700{color:#084298;border-color:#084298}.btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+.btn-outline-blue-700,.btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+.btn-outline-blue-700,.btn-check:active+.btn-outline-blue-700,.btn-outline-blue-700:active,.btn-outline-blue-700.active,.btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+.btn-outline-blue-700:focus,.btn-check:active+.btn-outline-blue-700:focus,.btn-outline-blue-700:active:focus,.btn-outline-blue-700.active:focus,.btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}.btn-outline-blue-700:disabled,.btn-outline-blue-700.disabled{color:#084298;background-color:transparent}.btn-outline-blue-800{color:#052c65;border-color:#052c65}.btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+.btn-outline-blue-800,.btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+.btn-outline-blue-800,.btn-check:active+.btn-outline-blue-800,.btn-outline-blue-800:active,.btn-outline-blue-800.active,.btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+.btn-outline-blue-800:focus,.btn-check:active+.btn-outline-blue-800:focus,.btn-outline-blue-800:active:focus,.btn-outline-blue-800.active:focus,.btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-outline-blue-800:disabled,.btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}.btn-outline-blue-900{color:#031633;border-color:#031633}.btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+.btn-outline-blue-900,.btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+.btn-outline-blue-900,.btn-check:active+.btn-outline-blue-900,.btn-outline-blue-900:active,.btn-outline-blue-900.active,.btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+.btn-outline-blue-900:focus,.btn-check:active+.btn-outline-blue-900:focus,.btn-outline-blue-900:active:focus,.btn-outline-blue-900.active:focus,.btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}.btn-outline-blue-900:disabled,.btn-outline-blue-900.disabled{color:#031633;background-color:transparent}.btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}.btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+.btn-outline-cyan-100,.btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+.btn-outline-cyan-100,.btn-check:active+.btn-outline-cyan-100,.btn-outline-cyan-100:active,.btn-outline-cyan-100.active,.btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+.btn-outline-cyan-100:focus,.btn-check:active+.btn-outline-cyan-100:focus,.btn-outline-cyan-100:active:focus,.btn-outline-cyan-100.active:focus,.btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-outline-cyan-100:disabled,.btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}.btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}.btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+.btn-outline-cyan-200,.btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+.btn-outline-cyan-200,.btn-check:active+.btn-outline-cyan-200,.btn-outline-cyan-200:active,.btn-outline-cyan-200.active,.btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+.btn-outline-cyan-200:focus,.btn-check:active+.btn-outline-cyan-200:focus,.btn-outline-cyan-200:active:focus,.btn-outline-cyan-200.active:focus,.btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-outline-cyan-200:disabled,.btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}.btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}.btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+.btn-outline-cyan-300,.btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+.btn-outline-cyan-300,.btn-check:active+.btn-outline-cyan-300,.btn-outline-cyan-300:active,.btn-outline-cyan-300.active,.btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+.btn-outline-cyan-300:focus,.btn-check:active+.btn-outline-cyan-300:focus,.btn-outline-cyan-300:active:focus,.btn-outline-cyan-300.active:focus,.btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-outline-cyan-300:disabled,.btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}.btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}.btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+.btn-outline-cyan-400,.btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+.btn-outline-cyan-400,.btn-check:active+.btn-outline-cyan-400,.btn-outline-cyan-400:active,.btn-outline-cyan-400.active,.btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+.btn-outline-cyan-400:focus,.btn-check:active+.btn-outline-cyan-400:focus,.btn-outline-cyan-400:active:focus,.btn-outline-cyan-400.active:focus,.btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-outline-cyan-400:disabled,.btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}.btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-cyan-500,.btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+.btn-outline-cyan-500,.btn-check:active+.btn-outline-cyan-500,.btn-outline-cyan-500:active,.btn-outline-cyan-500.active,.btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-cyan-500:focus,.btn-check:active+.btn-outline-cyan-500:focus,.btn-outline-cyan-500:active:focus,.btn-outline-cyan-500.active:focus,.btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-outline-cyan-500:disabled,.btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}.btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+.btn-outline-cyan-600,.btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+.btn-outline-cyan-600,.btn-check:active+.btn-outline-cyan-600,.btn-outline-cyan-600:active,.btn-outline-cyan-600.active,.btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+.btn-outline-cyan-600:focus,.btn-check:active+.btn-outline-cyan-600:focus,.btn-outline-cyan-600:active:focus,.btn-outline-cyan-600.active:focus,.btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-outline-cyan-600:disabled,.btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}.btn-outline-cyan-700{color:#087990;border-color:#087990}.btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+.btn-outline-cyan-700,.btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+.btn-outline-cyan-700,.btn-check:active+.btn-outline-cyan-700,.btn-outline-cyan-700:active,.btn-outline-cyan-700.active,.btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+.btn-outline-cyan-700:focus,.btn-check:active+.btn-outline-cyan-700:focus,.btn-outline-cyan-700:active:focus,.btn-outline-cyan-700.active:focus,.btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}.btn-outline-cyan-700:disabled,.btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}.btn-outline-cyan-800{color:#055160;border-color:#055160}.btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+.btn-outline-cyan-800,.btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+.btn-outline-cyan-800,.btn-check:active+.btn-outline-cyan-800,.btn-outline-cyan-800:active,.btn-outline-cyan-800.active,.btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+.btn-outline-cyan-800:focus,.btn-check:active+.btn-outline-cyan-800:focus,.btn-outline-cyan-800:active:focus,.btn-outline-cyan-800.active:focus,.btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}.btn-outline-cyan-800:disabled,.btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}.btn-outline-cyan-900{color:#032830;border-color:#032830}.btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+.btn-outline-cyan-900,.btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+.btn-outline-cyan-900,.btn-check:active+.btn-outline-cyan-900,.btn-outline-cyan-900:active,.btn-outline-cyan-900.active,.btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+.btn-outline-cyan-900:focus,.btn-check:active+.btn-outline-cyan-900:focus,.btn-outline-cyan-900:active:focus,.btn-outline-cyan-900.active:focus,.btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}.btn-outline-cyan-900:disabled,.btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}.btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}.btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+.btn-outline-indigo-100,.btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+.btn-outline-indigo-100,.btn-check:active+.btn-outline-indigo-100,.btn-outline-indigo-100:active,.btn-outline-indigo-100.active,.btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+.btn-outline-indigo-100:focus,.btn-check:active+.btn-outline-indigo-100:focus,.btn-outline-indigo-100:active:focus,.btn-outline-indigo-100.active:focus,.btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-outline-indigo-100:disabled,.btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}.btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}.btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+.btn-outline-indigo-200,.btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+.btn-outline-indigo-200,.btn-check:active+.btn-outline-indigo-200,.btn-outline-indigo-200:active,.btn-outline-indigo-200.active,.btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+.btn-outline-indigo-200:focus,.btn-check:active+.btn-outline-indigo-200:focus,.btn-outline-indigo-200:active:focus,.btn-outline-indigo-200.active:focus,.btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-outline-indigo-200:disabled,.btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}.btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}.btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+.btn-outline-indigo-300,.btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+.btn-outline-indigo-300,.btn-check:active+.btn-outline-indigo-300,.btn-outline-indigo-300:active,.btn-outline-indigo-300.active,.btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+.btn-outline-indigo-300:focus,.btn-check:active+.btn-outline-indigo-300:focus,.btn-outline-indigo-300:active:focus,.btn-outline-indigo-300.active:focus,.btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-outline-indigo-300:disabled,.btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}.btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}.btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+.btn-outline-indigo-400,.btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+.btn-outline-indigo-400,.btn-check:active+.btn-outline-indigo-400,.btn-outline-indigo-400:active,.btn-outline-indigo-400.active,.btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+.btn-outline-indigo-400:focus,.btn-check:active+.btn-outline-indigo-400:focus,.btn-outline-indigo-400:active:focus,.btn-outline-indigo-400.active:focus,.btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-outline-indigo-400:disabled,.btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}.btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}.btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+.btn-outline-indigo-500,.btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+.btn-outline-indigo-500,.btn-check:active+.btn-outline-indigo-500,.btn-outline-indigo-500:active,.btn-outline-indigo-500.active,.btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+.btn-outline-indigo-500:focus,.btn-check:active+.btn-outline-indigo-500:focus,.btn-outline-indigo-500:active:focus,.btn-outline-indigo-500.active:focus,.btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-outline-indigo-500:disabled,.btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}.btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}.btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+.btn-outline-indigo-600,.btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+.btn-outline-indigo-600,.btn-check:active+.btn-outline-indigo-600,.btn-outline-indigo-600:active,.btn-outline-indigo-600.active,.btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+.btn-outline-indigo-600:focus,.btn-check:active+.btn-outline-indigo-600:focus,.btn-outline-indigo-600:active:focus,.btn-outline-indigo-600.active:focus,.btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-outline-indigo-600:disabled,.btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}.btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}.btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+.btn-outline-indigo-700,.btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+.btn-outline-indigo-700,.btn-check:active+.btn-outline-indigo-700,.btn-outline-indigo-700:active,.btn-outline-indigo-700.active,.btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+.btn-outline-indigo-700:focus,.btn-check:active+.btn-outline-indigo-700:focus,.btn-outline-indigo-700:active:focus,.btn-outline-indigo-700.active:focus,.btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-outline-indigo-700:disabled,.btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}.btn-outline-indigo-800{color:#290661;border-color:#290661}.btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+.btn-outline-indigo-800,.btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+.btn-outline-indigo-800,.btn-check:active+.btn-outline-indigo-800,.btn-outline-indigo-800:active,.btn-outline-indigo-800.active,.btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+.btn-outline-indigo-800:focus,.btn-check:active+.btn-outline-indigo-800:focus,.btn-outline-indigo-800:active:focus,.btn-outline-indigo-800.active:focus,.btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}.btn-outline-indigo-800:disabled,.btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}.btn-outline-indigo-900{color:#140330;border-color:#140330}.btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+.btn-outline-indigo-900,.btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+.btn-outline-indigo-900,.btn-check:active+.btn-outline-indigo-900,.btn-outline-indigo-900:active,.btn-outline-indigo-900.active,.btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+.btn-outline-indigo-900:focus,.btn-check:active+.btn-outline-indigo-900:focus,.btn-outline-indigo-900:active:focus,.btn-outline-indigo-900.active:focus,.btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}.btn-outline-indigo-900:disabled,.btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}.btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}.btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+.btn-outline-purple-100,.btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+.btn-outline-purple-100,.btn-check:active+.btn-outline-purple-100,.btn-outline-purple-100:active,.btn-outline-purple-100.active,.btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+.btn-outline-purple-100:focus,.btn-check:active+.btn-outline-purple-100:focus,.btn-outline-purple-100:active:focus,.btn-outline-purple-100.active:focus,.btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-outline-purple-100:disabled,.btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}.btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}.btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+.btn-outline-purple-200,.btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+.btn-outline-purple-200,.btn-check:active+.btn-outline-purple-200,.btn-outline-purple-200:active,.btn-outline-purple-200.active,.btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+.btn-outline-purple-200:focus,.btn-check:active+.btn-outline-purple-200:focus,.btn-outline-purple-200:active:focus,.btn-outline-purple-200.active:focus,.btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-outline-purple-200:disabled,.btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}.btn-outline-purple-300{color:#a98eda;border-color:#a98eda}.btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+.btn-outline-purple-300,.btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+.btn-outline-purple-300,.btn-check:active+.btn-outline-purple-300,.btn-outline-purple-300:active,.btn-outline-purple-300.active,.btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+.btn-outline-purple-300:focus,.btn-check:active+.btn-outline-purple-300:focus,.btn-outline-purple-300:active:focus,.btn-outline-purple-300.active:focus,.btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-outline-purple-300:disabled,.btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}.btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}.btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+.btn-outline-purple-400,.btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+.btn-outline-purple-400,.btn-check:active+.btn-outline-purple-400,.btn-outline-purple-400:active,.btn-outline-purple-400.active,.btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+.btn-outline-purple-400:focus,.btn-check:active+.btn-outline-purple-400:focus,.btn-outline-purple-400:active:focus,.btn-outline-purple-400.active:focus,.btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-outline-purple-400:disabled,.btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}.btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}.btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+.btn-outline-purple-500,.btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+.btn-outline-purple-500,.btn-check:active+.btn-outline-purple-500,.btn-outline-purple-500:active,.btn-outline-purple-500.active,.btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+.btn-outline-purple-500:focus,.btn-check:active+.btn-outline-purple-500:focus,.btn-outline-purple-500:active:focus,.btn-outline-purple-500.active:focus,.btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-outline-purple-500:disabled,.btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}.btn-outline-purple-600{color:#59359a;border-color:#59359a}.btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+.btn-outline-purple-600,.btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+.btn-outline-purple-600,.btn-check:active+.btn-outline-purple-600,.btn-outline-purple-600:active,.btn-outline-purple-600.active,.btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+.btn-outline-purple-600:focus,.btn-check:active+.btn-outline-purple-600:focus,.btn-outline-purple-600:active:focus,.btn-outline-purple-600.active:focus,.btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-outline-purple-600:disabled,.btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}.btn-outline-purple-700{color:#432874;border-color:#432874}.btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+.btn-outline-purple-700,.btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+.btn-outline-purple-700,.btn-check:active+.btn-outline-purple-700,.btn-outline-purple-700:active,.btn-outline-purple-700.active,.btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+.btn-outline-purple-700:focus,.btn-check:active+.btn-outline-purple-700:focus,.btn-outline-purple-700:active:focus,.btn-outline-purple-700.active:focus,.btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}.btn-outline-purple-700:disabled,.btn-outline-purple-700.disabled{color:#432874;background-color:transparent}.btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}.btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+.btn-outline-purple-800,.btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+.btn-outline-purple-800,.btn-check:active+.btn-outline-purple-800,.btn-outline-purple-800:active,.btn-outline-purple-800.active,.btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+.btn-outline-purple-800:focus,.btn-check:active+.btn-outline-purple-800:focus,.btn-outline-purple-800:active:focus,.btn-outline-purple-800.active:focus,.btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-outline-purple-800:disabled,.btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}.btn-outline-purple-900{color:#160d27;border-color:#160d27}.btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+.btn-outline-purple-900,.btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+.btn-outline-purple-900,.btn-check:active+.btn-outline-purple-900,.btn-outline-purple-900:active,.btn-outline-purple-900.active,.btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+.btn-outline-purple-900:focus,.btn-check:active+.btn-outline-purple-900:focus,.btn-outline-purple-900:active:focus,.btn-outline-purple-900.active:focus,.btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-outline-purple-900:disabled,.btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}.btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}.btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+.btn-outline-pink-100,.btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+.btn-outline-pink-100,.btn-check:active+.btn-outline-pink-100,.btn-outline-pink-100:active,.btn-outline-pink-100.active,.btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+.btn-outline-pink-100:focus,.btn-check:active+.btn-outline-pink-100:focus,.btn-outline-pink-100:active:focus,.btn-outline-pink-100.active:focus,.btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-outline-pink-100:disabled,.btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}.btn-outline-pink-200{color:#efadce;border-color:#efadce}.btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+.btn-outline-pink-200,.btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+.btn-outline-pink-200,.btn-check:active+.btn-outline-pink-200,.btn-outline-pink-200:active,.btn-outline-pink-200.active,.btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+.btn-outline-pink-200:focus,.btn-check:active+.btn-outline-pink-200:focus,.btn-outline-pink-200:active:focus,.btn-outline-pink-200.active:focus,.btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-outline-pink-200:disabled,.btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}.btn-outline-pink-300{color:#e685b5;border-color:#e685b5}.btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+.btn-outline-pink-300,.btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+.btn-outline-pink-300,.btn-check:active+.btn-outline-pink-300,.btn-outline-pink-300:active,.btn-outline-pink-300.active,.btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+.btn-outline-pink-300:focus,.btn-check:active+.btn-outline-pink-300:focus,.btn-outline-pink-300:active:focus,.btn-outline-pink-300.active:focus,.btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-outline-pink-300:disabled,.btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}.btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}.btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+.btn-outline-pink-400,.btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+.btn-outline-pink-400,.btn-check:active+.btn-outline-pink-400,.btn-outline-pink-400:active,.btn-outline-pink-400.active,.btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+.btn-outline-pink-400:focus,.btn-check:active+.btn-outline-pink-400:focus,.btn-outline-pink-400:active:focus,.btn-outline-pink-400.active:focus,.btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-outline-pink-400:disabled,.btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}.btn-outline-pink-500{color:#d63384;border-color:#d63384}.btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+.btn-outline-pink-500,.btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+.btn-outline-pink-500,.btn-check:active+.btn-outline-pink-500,.btn-outline-pink-500:active,.btn-outline-pink-500.active,.btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+.btn-outline-pink-500:focus,.btn-check:active+.btn-outline-pink-500:focus,.btn-outline-pink-500:active:focus,.btn-outline-pink-500.active:focus,.btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-outline-pink-500:disabled,.btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}.btn-outline-pink-600{color:#ab296a;border-color:#ab296a}.btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+.btn-outline-pink-600,.btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+.btn-outline-pink-600,.btn-check:active+.btn-outline-pink-600,.btn-outline-pink-600:active,.btn-outline-pink-600.active,.btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+.btn-outline-pink-600:focus,.btn-check:active+.btn-outline-pink-600:focus,.btn-outline-pink-600:active:focus,.btn-outline-pink-600.active:focus,.btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-outline-pink-600:disabled,.btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}.btn-outline-pink-700{color:#801f4f;border-color:#801f4f}.btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+.btn-outline-pink-700,.btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+.btn-outline-pink-700,.btn-check:active+.btn-outline-pink-700,.btn-outline-pink-700:active,.btn-outline-pink-700.active,.btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+.btn-outline-pink-700:focus,.btn-check:active+.btn-outline-pink-700:focus,.btn-outline-pink-700:active:focus,.btn-outline-pink-700.active:focus,.btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-outline-pink-700:disabled,.btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}.btn-outline-pink-800{color:#561435;border-color:#561435}.btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+.btn-outline-pink-800,.btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+.btn-outline-pink-800,.btn-check:active+.btn-outline-pink-800,.btn-outline-pink-800:active,.btn-outline-pink-800.active,.btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+.btn-outline-pink-800:focus,.btn-check:active+.btn-outline-pink-800:focus,.btn-outline-pink-800:active:focus,.btn-outline-pink-800.active:focus,.btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}.btn-outline-pink-800:disabled,.btn-outline-pink-800.disabled{color:#561435;background-color:transparent}.btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}.btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+.btn-outline-pink-900,.btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+.btn-outline-pink-900,.btn-check:active+.btn-outline-pink-900,.btn-outline-pink-900:active,.btn-outline-pink-900.active,.btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+.btn-outline-pink-900:focus,.btn-check:active+.btn-outline-pink-900:focus,.btn-outline-pink-900:active:focus,.btn-outline-pink-900.active:focus,.btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-outline-pink-900:disabled,.btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.375rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle:after{display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:#00000026}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.375rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media (min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:#000000e6}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#000000e6}.navbar-light .navbar-nav .nav-link{color:#0000008c}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:#000000b3}.navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:#000000e6}.navbar-light .navbar-toggler{color:#0000008c;border-color:#0000001a}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#0000008c}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#000000e6}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#ffffff8c}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}.navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#ffffff8c}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.375rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;color:#343a40;background-color:"unset";border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;color:#343a40;background-color:"unset";border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#343a40;background-color:#cfe2ff;box-shadow:inset 0 -1px #dee2e6}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion: reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.accordion-header{margin-bottom:0}.accordion-item{background-color:transparent;border:1px solid #dee2e6}.accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E"))}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#1f496e;background-color:#d6e4f1;border-color:#c2d7e9}.alert-primary .alert-link{color:#193a58}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}.alert-red{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-red .alert-link{color:#6a1a21}.alert-yellow{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-yellow .alert-link{color:#523e02}.alert-green{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-green .alert-link{color:#0c4128}.alert-blue{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-blue .alert-link{color:#06357a}.alert-cyan{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-cyan .alert-link{color:#04414d}.alert-indigo{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}.alert-indigo .alert-link{color:#310874}.alert-purple{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}.alert-purple .alert-link{color:#36205d}.alert-pink{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}.alert-pink .alert-link{color:#66193f}.alert-darker{color:#101314;background-color:#d1d2d3;border-color:#bbbcbd}.alert-darker .alert-link{color:#0d0f10}.alert-darkest{color:#0e1011;background-color:#d1d1d2;border-color:#b9bbbb}.alert-darkest .alert-link{color:#0b0d0e}.alert-gray{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}.alert-gray .alert-link{color:#424446}.alert-gray-100{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-gray-100 .alert-link{color:#4f5050}.alert-gray-200{color:#5d5e60;background-color:#fbfbfc;border-color:#f8f9fa}.alert-gray-200 .alert-link{color:#4a4b4d}.alert-gray-300{color:#595a5c;background-color:#f8f9fa;border-color:#f5f6f8}.alert-gray-300 .alert-link{color:#47484a}.alert-gray-400{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}.alert-gray-400 .alert-link{color:#424446}.alert-gray-500{color:#686d71;background-color:#eff0f2;border-color:#e6e9eb}.alert-gray-500 .alert-link{color:#53575a}.alert-gray-600{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-gray-600 .alert-link{color:#34383c}.alert-gray-700{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-gray-700 .alert-link{color:#23262a}.alert-gray-800{color:#1f2326;background-color:#d6d8d9;border-color:#c2c4c6}.alert-gray-800 .alert-link{color:#191c1e}.alert-gray-900{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-gray-900 .alert-link{color:#101214}.alert-red-100{color:#635657;background-color:#fef7f8;border-color:#fdf3f4}.alert-red-100 .alert-link{color:#4f4546}.alert-red-200{color:#604648;background-color:#fceff0;border-color:#fbe7e9}.alert-red-200 .alert-link{color:#4d383a}.alert-red-300{color:#8c5056;background-color:#fbe7e9;border-color:#f9dbdd}.alert-red-300 .alert-link{color:#704045}.alert-red-400{color:#883840;background-color:#f9dfe1;border-color:#f7ced2}.alert-red-400 .alert-link{color:#6d2d33}.alert-red-500{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-red-500 .alert-link{color:#6a1a21}.alert-red-600{color:#6a1921;background-color:#efd4d7;border-color:#e7bfc3}.alert-red-600 .alert-link{color:#55141a}.alert-red-700{color:#4f1319;background-color:#e6d2d4;border-color:#dabcbf}.alert-red-700 .alert-link{color:#3f0f14}.alert-red-800{color:#350d11;background-color:#ded0d2;border-color:#cdb9bb}.alert-red-800 .alert-link{color:#2a0a0e}.alert-red-900{color:#1a0708;background-color:#d5cecf;border-color:#c0b6b7}.alert-red-900 .alert-link{color:#150606}.alert-yellow-100{color:#666152;background-color:#fffdf5;border-color:#fffbf0}.alert-yellow-100 .alert-link{color:#524e42}.alert-yellow-200{color:#665c3e;background-color:#fffaeb;border-color:#fff8e1}.alert-yellow-200 .alert-link{color:#524a32}.alert-yellow-300{color:#66572a;background-color:#fff8e1;border-color:#fff4d2}.alert-yellow-300 .alert-link{color:#524622}.alert-yellow-400{color:#665217;background-color:#fff5d7;border-color:#fff0c4}.alert-yellow-400 .alert-link{color:#524212}.alert-yellow-500{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-yellow-500 .alert-link{color:#523e02}.alert-yellow-600{color:#7a5c04;background-color:#f5ebcd;border-color:#f0e1b4}.alert-yellow-600 .alert-link{color:#624a03}.alert-yellow-700{color:#5c4602;background-color:#ebe3cd;border-color:#e0d5b4}.alert-yellow-700 .alert-link{color:#4a3802}.alert-yellow-800{color:#3d2e02;background-color:#e0dbcd;border-color:#d1cab3}.alert-yellow-800 .alert-link{color:#312502}.alert-yellow-900{color:#1f1701;background-color:#d6d4cc;border-color:#c2beb3}.alert-yellow-900 .alert-link{color:#191201}.alert-green-100{color:#545c58;background-color:#f6faf8;border-color:#f1f8f5}.alert-green-100 .alert-link{color:#434a46}.alert-green-200{color:#41534b;background-color:#edf5f1;border-color:#e3f1eb}.alert-green-200 .alert-link{color:#34423c}.alert-green-300{color:#466e5b;background-color:#e3f1ea;border-color:#d6e9e0}.alert-green-300 .alert-link{color:#385849}.alert-green-400{color:#2b5f47;background-color:#daece4;border-color:#c8e2d6}.alert-green-400 .alert-link{color:#224c39}.alert-green-500{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-green-500 .alert-link{color:#0c4128}.alert-green-600{color:#0c4128;background-color:#d0e2d9;border-color:#b9d3c7}.alert-green-600 .alert-link{color:#0a3420}.alert-green-700{color:#09311e;background-color:#cfdcd6;border-color:#b7cbc2}.alert-green-700 .alert-link{color:#072718}.alert-green-800{color:#062014;background-color:#ced7d3;border-color:#b6c3bd}.alert-green-800 .alert-link{color:#051a10}.alert-green-900{color:#03100a;background-color:#cdd1cf;border-color:#b4bbb8}.alert-green-900 .alert-link{color:#020d08}.alert-blue-100{color:#535a66;background-color:#f5f9ff;border-color:#f1f6ff}.alert-blue-100 .alert-link{color:#424852}.alert-blue-200{color:#3f4f66;background-color:#ecf3ff;border-color:#e2eeff}.alert-blue-200 .alert-link{color:#323f52}.alert-blue-300{color:#426598;background-color:#e2eeff;border-color:#d4e5ff}.alert-blue-300 .alert-link{color:#35517a}.alert-blue-400{color:#255398;background-color:#d8e8ff;border-color:#c5dcfe}.alert-blue-400 .alert-link{color:#1e427a}.alert-blue-500{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-blue-500 .alert-link{color:#06357a}.alert-blue-600{color:#063579;background-color:#cedef4;border-color:#b6cdef}.alert-blue-600 .alert-link{color:#052a61}.alert-blue-700{color:#05285b;background-color:#ced9ea;border-color:#b5c6e0}.alert-blue-700 .alert-link{color:#042049}.alert-blue-800{color:#031a3d;background-color:#cdd5e0;border-color:#b4c0d1}.alert-blue-800 .alert-link{color:#021531}.alert-blue-900{color:#020d1f;background-color:#cdd0d6;border-color:#b3b9c2}.alert-blue-900 .alert-link{color:#020a19}.alert-cyan-100{color:#536265;background-color:#f5fdfe;border-color:#f1fcfe}.alert-cyan-100 .alert-link{color:#424e51}.alert-cyan-200{color:#3f5e64;background-color:#ecfbfe;border-color:#e2f9fd}.alert-cyan-200 .alert-link{color:#324b50}.alert-cyan-300{color:#2c5962;background-color:#e2f9fd;border-color:#d4f5fc}.alert-cyan-300 .alert-link{color:#23474e}.alert-cyan-400{color:#185561;background-color:#d8f7fd;border-color:#c5f2fb}.alert-cyan-400 .alert-link{color:#13444e}.alert-cyan-500{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-cyan-500 .alert-link{color:#04414d}.alert-cyan-600{color:#066173;background-color:#ceecf2;border-color:#b6e3ec}.alert-cyan-600 .alert-link{color:#054e5c}.alert-cyan-700{color:#054956;background-color:#cee4e9;border-color:#b5d7de}.alert-cyan-700 .alert-link{color:#043a45}.alert-cyan-800{color:#03313a;background-color:#cddcdf;border-color:#b4cbcf}.alert-cyan-800 .alert-link{color:#02272e}.alert-cyan-900{color:#02181d;background-color:#cdd4d6;border-color:#b3bfc1}.alert-cyan-900 .alert-link{color:#021317}.alert-indigo-100{color:#5a5365;background-color:#f9f5fe;border-color:#f6f1fe}.alert-indigo-100 .alert-link{color:#484251}.alert-indigo-200{color:#745f96;background-color:#f3ecfe;border-color:#ede2fe}.alert-indigo-200 .alert-link{color:#5d4c78}.alert-indigo-300{color:#624394;background-color:#ede2fd;border-color:#e3d4fd}.alert-indigo-300 .alert-link{color:#4e3676}.alert-indigo-400{color:#502693;background-color:#e7d9fd;border-color:#dac6fc}.alert-indigo-400 .alert-link{color:#401e76}.alert-indigo-500{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}.alert-indigo-500 .alert-link{color:#310874}.alert-indigo-600{color:#310874;background-color:#dccff3;border-color:#cbb6ed}.alert-indigo-600 .alert-link{color:#27065d}.alert-indigo-700{color:#250657;background-color:#d8cee9;border-color:#c5b6de}.alert-indigo-700 .alert-link{color:#1e0546}.alert-indigo-800{color:#19043a;background-color:#d4cddf;border-color:#bfb4d0}.alert-indigo-800 .alert-link{color:#14032e}.alert-indigo-900{color:#0c021d;background-color:#d0cdd6;border-color:#b9b3c1}.alert-indigo-900 .alert-link{color:#0a0217}.alert-purple-100{color:#5a5761;background-color:#f9f7fd;border-color:#f6f4fb}.alert-purple-100 .alert-link{color:#48464e}.alert-purple-200{color:#4f485c;background-color:#f3f0fa;border-color:#eee8f8}.alert-purple-200 .alert-link{color:#3f3a4a}.alert-purple-300{color:#655583;background-color:#eee8f8;border-color:#e5ddf4}.alert-purple-300 .alert-link{color:#514469}.alert-purple-400{color:#543e7b;background-color:#e8e1f5;border-color:#ddd2f0}.alert-purple-400 .alert-link{color:#433262}.alert-purple-500{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}.alert-purple-500 .alert-link{color:#36205d}.alert-purple-600{color:#35205c;background-color:#ded7eb;border-color:#cdc2e1}.alert-purple-600 .alert-link{color:#2a1a4a}.alert-purple-700{color:#281846;background-color:#d9d4e3;border-color:#c7bfd5}.alert-purple-700 .alert-link{color:#201338}.alert-purple-800{color:#1a102e;background-color:#d5d1db;border-color:#c0baca}.alert-purple-800 .alert-link{color:#150d25}.alert-purple-900{color:#0d0817;background-color:#d0cfd4;border-color:#b9b6be}.alert-purple-900 .alert-link{color:#0a0612}.alert-pink-100{color:#63565c;background-color:#fdf7fa;border-color:#fdf3f8}.alert-pink-100 .alert-link{color:#4f454a}.alert-pink-200{color:#604552;background-color:#fceff5;border-color:#fae6f0}.alert-pink-200 .alert-link{color:#4d3742}.alert-pink-300{color:#8a506d;background-color:#fae7f0;border-color:#f8dae9}.alert-pink-300 .alert-link{color:#6e4057}.alert-pink-400{color:#85375e;background-color:#f8deeb;border-color:#f5cee2}.alert-pink-400 .alert-link{color:#6a2c4b}.alert-pink-500{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}.alert-pink-500 .alert-link{color:#66193f}.alert-pink-600{color:#671940;background-color:#eed4e1;border-color:#e6bfd2}.alert-pink-600 .alert-link{color:#521433}.alert-pink-700{color:#4d132f;background-color:#e6d2dc;border-color:#d9bcca}.alert-pink-700 .alert-link{color:#3e0f26}.alert-pink-800{color:#340c20;background-color:#ddd0d7;border-color:#ccb9c2}.alert-pink-800 .alert-link{color:#2a0a1a}.alert-pink-900{color:#1a0610;background-color:#d5ced1;border-color:#bfb6ba}.alert-pink-900 .alert-link{color:#15050d}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.375rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#495057;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#adb5bd;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#1f496e;background-color:#d6e4f1}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1f496e;background-color:#c1cdd9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1f496e;border-color:#1f496e}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-red{color:#842029;background-color:#f8d7da}.list-group-item-red.list-group-item-action:hover,.list-group-item-red.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-red.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-yellow{color:#664d03;background-color:#fff3cd}.list-group-item-yellow.list-group-item-action:hover,.list-group-item-yellow.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-green{color:#0f5132;background-color:#d1e7dd}.list-group-item-green.list-group-item-action:hover,.list-group-item-green.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-green.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-blue{color:#084298;background-color:#cfe2ff}.list-group-item-blue.list-group-item-action:hover,.list-group-item-blue.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-cyan{color:#055160;background-color:#cff4fc}.list-group-item-cyan.list-group-item-action:hover,.list-group-item-cyan.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-indigo{color:#3d0a91;background-color:#e0cffc}.list-group-item-indigo.list-group-item-action:hover,.list-group-item-indigo.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}.list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.list-group-item-purple{color:#432874;background-color:#e2d9f3}.list-group-item-purple.list-group-item-action:hover,.list-group-item-purple.list-group-item-action:focus{color:#432874;background-color:#cbc3db}.list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}.list-group-item-pink{color:#801f4f;background-color:#f7d6e6}.list-group-item-pink.list-group-item-action:hover,.list-group-item-pink.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}.list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}.list-group-item-darker{color:#101314;background-color:#d1d2d3}.list-group-item-darker.list-group-item-action:hover,.list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}.list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}.list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}.list-group-item-darkest.list-group-item-action:hover,.list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}.list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}.list-group-item-gray{color:#525557;background-color:#f5f6f8}.list-group-item-gray.list-group-item-action:hover,.list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}.list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}.list-group-item-gray-100{color:#636464;background-color:#fefefe}.list-group-item-gray-100.list-group-item-action:hover,.list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}.list-group-item-gray-200.list-group-item-action:hover,.list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}.list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}.list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}.list-group-item-gray-300.list-group-item-action:hover,.list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}.list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}.list-group-item-gray-400{color:#525557;background-color:#f5f6f8}.list-group-item-gray-400.list-group-item-action:hover,.list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}.list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}.list-group-item-gray-500{color:#686d71;background-color:#eff0f2}.list-group-item-gray-500.list-group-item-action:hover,.list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}.list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}.list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}.list-group-item-gray-600.list-group-item-action:hover,.list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}.list-group-item-gray-700.list-group-item-action:hover,.list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}.list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}.list-group-item-gray-800.list-group-item-action:hover,.list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}.list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}.list-group-item-gray-900{color:#141619;background-color:#d3d3d4}.list-group-item-gray-900.list-group-item-action:hover,.list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-red-100{color:#635657;background-color:#fef7f8}.list-group-item-red-100.list-group-item-action:hover,.list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}.list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}.list-group-item-red-200{color:#604648;background-color:#fceff0}.list-group-item-red-200.list-group-item-action:hover,.list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}.list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}.list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}.list-group-item-red-300.list-group-item-action:hover,.list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}.list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}.list-group-item-red-400{color:#883840;background-color:#f9dfe1}.list-group-item-red-400.list-group-item-action:hover,.list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}.list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}.list-group-item-red-500{color:#842029;background-color:#f8d7da}.list-group-item-red-500.list-group-item-action:hover,.list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-red-600{color:#6a1921;background-color:#efd4d7}.list-group-item-red-600.list-group-item-action:hover,.list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}.list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}.list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}.list-group-item-red-700.list-group-item-action:hover,.list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}.list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}.list-group-item-red-800{color:#350d11;background-color:#ded0d2}.list-group-item-red-800.list-group-item-action:hover,.list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}.list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}.list-group-item-red-900{color:#1a0708;background-color:#d5cecf}.list-group-item-red-900.list-group-item-action:hover,.list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}.list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}.list-group-item-yellow-100{color:#666152;background-color:#fffdf5}.list-group-item-yellow-100.list-group-item-action:hover,.list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}.list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}.list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}.list-group-item-yellow-200.list-group-item-action:hover,.list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}.list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}.list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}.list-group-item-yellow-300.list-group-item-action:hover,.list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}.list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}.list-group-item-yellow-400{color:#665217;background-color:#fff5d7}.list-group-item-yellow-400.list-group-item-action:hover,.list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}.list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}.list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}.list-group-item-yellow-500.list-group-item-action:hover,.list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}.list-group-item-yellow-600.list-group-item-action:hover,.list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}.list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}.list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}.list-group-item-yellow-700.list-group-item-action:hover,.list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}.list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}.list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}.list-group-item-yellow-800.list-group-item-action:hover,.list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}.list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}.list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}.list-group-item-yellow-900.list-group-item-action:hover,.list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}.list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}.list-group-item-green-100{color:#545c58;background-color:#f6faf8}.list-group-item-green-100.list-group-item-action:hover,.list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}.list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}.list-group-item-green-200{color:#41534b;background-color:#edf5f1}.list-group-item-green-200.list-group-item-action:hover,.list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}.list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}.list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}.list-group-item-green-300.list-group-item-action:hover,.list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}.list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}.list-group-item-green-400{color:#2b5f47;background-color:#daece4}.list-group-item-green-400.list-group-item-action:hover,.list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}.list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}.list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}.list-group-item-green-500.list-group-item-action:hover,.list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}.list-group-item-green-600.list-group-item-action:hover,.list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}.list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}.list-group-item-green-700{color:#09311e;background-color:#cfdcd6}.list-group-item-green-700.list-group-item-action:hover,.list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}.list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}.list-group-item-green-800{color:#062014;background-color:#ced7d3}.list-group-item-green-800.list-group-item-action:hover,.list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}.list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}.list-group-item-green-900{color:#03100a;background-color:#cdd1cf}.list-group-item-green-900.list-group-item-action:hover,.list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}.list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}.list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}.list-group-item-blue-100.list-group-item-action:hover,.list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}.list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}.list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}.list-group-item-blue-200.list-group-item-action:hover,.list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}.list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}.list-group-item-blue-300{color:#426598;background-color:#e2eeff}.list-group-item-blue-300.list-group-item-action:hover,.list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}.list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}.list-group-item-blue-400{color:#255398;background-color:#d8e8ff}.list-group-item-blue-400.list-group-item-action:hover,.list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}.list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}.list-group-item-blue-500{color:#084298;background-color:#cfe2ff}.list-group-item-blue-500.list-group-item-action:hover,.list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-blue-600{color:#063579;background-color:#cedef4}.list-group-item-blue-600.list-group-item-action:hover,.list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}.list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}.list-group-item-blue-700{color:#05285b;background-color:#ced9ea}.list-group-item-blue-700.list-group-item-action:hover,.list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}.list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}.list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}.list-group-item-blue-800.list-group-item-action:hover,.list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}.list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}.list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}.list-group-item-blue-900.list-group-item-action:hover,.list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}.list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}.list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}.list-group-item-cyan-100.list-group-item-action:hover,.list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}.list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}.list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}.list-group-item-cyan-200.list-group-item-action:hover,.list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}.list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}.list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}.list-group-item-cyan-300.list-group-item-action:hover,.list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}.list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}.list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}.list-group-item-cyan-400.list-group-item-action:hover,.list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}.list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}.list-group-item-cyan-500{color:#055160;background-color:#cff4fc}.list-group-item-cyan-500.list-group-item-action:hover,.list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-cyan-600{color:#066173;background-color:#ceecf2}.list-group-item-cyan-600.list-group-item-action:hover,.list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}.list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}.list-group-item-cyan-700{color:#054956;background-color:#cee4e9}.list-group-item-cyan-700.list-group-item-action:hover,.list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}.list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}.list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}.list-group-item-cyan-800.list-group-item-action:hover,.list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}.list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}.list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}.list-group-item-cyan-900.list-group-item-action:hover,.list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}.list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}.list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}.list-group-item-indigo-100.list-group-item-action:hover,.list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}.list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}.list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}.list-group-item-indigo-200.list-group-item-action:hover,.list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}.list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}.list-group-item-indigo-300{color:#624394;background-color:#ede2fd}.list-group-item-indigo-300.list-group-item-action:hover,.list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}.list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}.list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}.list-group-item-indigo-400.list-group-item-action:hover,.list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}.list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}.list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}.list-group-item-indigo-500.list-group-item-action:hover,.list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}.list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.list-group-item-indigo-600{color:#310874;background-color:#dccff3}.list-group-item-indigo-600.list-group-item-action:hover,.list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}.list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}.list-group-item-indigo-700{color:#250657;background-color:#d8cee9}.list-group-item-indigo-700.list-group-item-action:hover,.list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}.list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}.list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}.list-group-item-indigo-800.list-group-item-action:hover,.list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}.list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}.list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}.list-group-item-indigo-900.list-group-item-action:hover,.list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}.list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}.list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}.list-group-item-purple-100.list-group-item-action:hover,.list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}.list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}.list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}.list-group-item-purple-200.list-group-item-action:hover,.list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}.list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}.list-group-item-purple-300{color:#655583;background-color:#eee8f8}.list-group-item-purple-300.list-group-item-action:hover,.list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}.list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}.list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}.list-group-item-purple-400.list-group-item-action:hover,.list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}.list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}.list-group-item-purple-500{color:#432874;background-color:#e2d9f3}.list-group-item-purple-500.list-group-item-action:hover,.list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}.list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}.list-group-item-purple-600{color:#35205c;background-color:#ded7eb}.list-group-item-purple-600.list-group-item-action:hover,.list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}.list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}.list-group-item-purple-700{color:#281846;background-color:#d9d4e3}.list-group-item-purple-700.list-group-item-action:hover,.list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}.list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}.list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}.list-group-item-purple-800.list-group-item-action:hover,.list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}.list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}.list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}.list-group-item-purple-900.list-group-item-action:hover,.list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}.list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}.list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}.list-group-item-pink-100.list-group-item-action:hover,.list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}.list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}.list-group-item-pink-200{color:#604552;background-color:#fceff5}.list-group-item-pink-200.list-group-item-action:hover,.list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}.list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}.list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}.list-group-item-pink-300.list-group-item-action:hover,.list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}.list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}.list-group-item-pink-400{color:#85375e;background-color:#f8deeb}.list-group-item-pink-400.list-group-item-action:hover,.list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}.list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}.list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}.list-group-item-pink-500.list-group-item-action:hover,.list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}.list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}.list-group-item-pink-600{color:#671940;background-color:#eed4e1}.list-group-item-pink-600.list-group-item-action:hover,.list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}.list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}.list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}.list-group-item-pink-700.list-group-item-action:hover,.list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}.list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}.list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}.list-group-item-pink-800.list-group-item-action:hover,.list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}.list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}.list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}.list-group-item-pink-900.list-group-item-action:hover,.list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}.list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow:before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.375rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:before,.popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00000040}.bs-popover-top>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00000040}.bs-popover-end>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00000040}.bs-popover-bottom>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header:before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow:before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00000040}.bs-popover-start>.popover-arrow:after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translate(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translate(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#337ab7}.link-primary:hover,.link-primary:focus{color:#296292}.link-secondary{color:#6c757d}.link-secondary:hover,.link-secondary:focus{color:#565e64}.link-success{color:#198754}.link-success:hover,.link-success:focus{color:#146c43}.link-info{color:#0dcaf0}.link-info:hover,.link-info:focus{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:hover,.link-warning:focus{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:hover,.link-danger:focus{color:#b02a37}.link-light{color:#f8f9fa}.link-light:hover,.link-light:focus{color:#f9fafb}.link-dark{color:#212529}.link-dark:hover,.link-dark:focus{color:#1a1e21}.link-red{color:#dc3545}.link-red:hover,.link-red:focus{color:#b02a37}.link-yellow{color:#ffc107}.link-yellow:hover,.link-yellow:focus{color:#ffcd39}.link-green{color:#198754}.link-green:hover,.link-green:focus{color:#146c43}.link-blue{color:#0d6efd}.link-blue:hover,.link-blue:focus{color:#0a58ca}.link-cyan{color:#0dcaf0}.link-cyan:hover,.link-cyan:focus{color:#3dd5f3}.link-indigo{color:#6610f2}.link-indigo:hover,.link-indigo:focus{color:#520dc2}.link-purple{color:#6f42c1}.link-purple:hover,.link-purple:focus{color:#59359a}.link-pink{color:#d63384}.link-pink:hover,.link-pink:focus{color:#ab296a}.link-darker{color:#1b1f22}.link-darker:hover,.link-darker:focus{color:#16191b}.link-darkest{color:#171b1d}.link-darkest:hover,.link-darkest:focus{color:#121617}.link-gray{color:#ced4da}.link-gray:hover,.link-gray:focus{color:#d8dde1}.link-gray-100{color:#f8f9fa}.link-gray-100:hover,.link-gray-100:focus{color:#f9fafb}.link-gray-200{color:#e9ecef}.link-gray-200:hover,.link-gray-200:focus{color:#edf0f2}.link-gray-300{color:#dee2e6}.link-gray-300:hover,.link-gray-300:focus{color:#e5e8eb}.link-gray-400{color:#ced4da}.link-gray-400:hover,.link-gray-400:focus{color:#d8dde1}.link-gray-500{color:#adb5bd}.link-gray-500:hover,.link-gray-500:focus{color:#bdc4ca}.link-gray-600{color:#6c757d}.link-gray-600:hover,.link-gray-600:focus{color:#565e64}.link-gray-700{color:#495057}.link-gray-700:hover,.link-gray-700:focus{color:#3a4046}.link-gray-800{color:#343a40}.link-gray-800:hover,.link-gray-800:focus{color:#2a2e33}.link-gray-900{color:#212529}.link-gray-900:hover,.link-gray-900:focus{color:#1a1e21}.link-red-100{color:#f8d7da}.link-red-100:hover,.link-red-100:focus{color:#f9dfe1}.link-red-200{color:#f1aeb5}.link-red-200:hover,.link-red-200:focus{color:#f4bec4}.link-red-300{color:#ea868f}.link-red-300:hover,.link-red-300:focus{color:#ee9ea5}.link-red-400{color:#e35d6a}.link-red-400:hover,.link-red-400:focus{color:#e97d88}.link-red-500{color:#dc3545}.link-red-500:hover,.link-red-500:focus{color:#b02a37}.link-red-600{color:#b02a37}.link-red-600:hover,.link-red-600:focus{color:#8d222c}.link-red-700{color:#842029}.link-red-700:hover,.link-red-700:focus{color:#6a1a21}.link-red-800{color:#58151c}.link-red-800:hover,.link-red-800:focus{color:#461116}.link-red-900{color:#2c0b0e}.link-red-900:hover,.link-red-900:focus{color:#23090b}.link-yellow-100{color:#fff3cd}.link-yellow-100:hover,.link-yellow-100:focus{color:#fff5d7}.link-yellow-200{color:#ffe69c}.link-yellow-200:hover,.link-yellow-200:focus{color:#ffebb0}.link-yellow-300{color:#ffda6a}.link-yellow-300:hover,.link-yellow-300:focus{color:#ffe188}.link-yellow-400{color:#ffcd39}.link-yellow-400:hover,.link-yellow-400:focus{color:#ffd761}.link-yellow-500{color:#ffc107}.link-yellow-500:hover,.link-yellow-500:focus{color:#ffcd39}.link-yellow-600{color:#cc9a06}.link-yellow-600:hover,.link-yellow-600:focus{color:#d6ae38}.link-yellow-700{color:#997404}.link-yellow-700:hover,.link-yellow-700:focus{color:#ad9036}.link-yellow-800{color:#664d03}.link-yellow-800:hover,.link-yellow-800:focus{color:#523e02}.link-yellow-900{color:#332701}.link-yellow-900:hover,.link-yellow-900:focus{color:#291f01}.link-green-100{color:#d1e7dd}.link-green-100:hover,.link-green-100:focus{color:#daece4}.link-green-200{color:#a3cfbb}.link-green-200:hover,.link-green-200:focus{color:#b5d9c9}.link-green-300{color:#75b798}.link-green-300:hover,.link-green-300:focus{color:#91c5ad}.link-green-400{color:#479f76}.link-green-400:hover,.link-green-400:focus{color:#6cb291}.link-green-500{color:#198754}.link-green-500:hover,.link-green-500:focus{color:#146c43}.link-green-600{color:#146c43}.link-green-600:hover,.link-green-600:focus{color:#105636}.link-green-700{color:#0f5132}.link-green-700:hover,.link-green-700:focus{color:#0c4128}.link-green-800{color:#0a3622}.link-green-800:hover,.link-green-800:focus{color:#082b1b}.link-green-900{color:#051b11}.link-green-900:hover,.link-green-900:focus{color:#04160e}.link-blue-100{color:#cfe2ff}.link-blue-100:hover,.link-blue-100:focus{color:#d9e8ff}.link-blue-200{color:#9ec5fe}.link-blue-200:hover,.link-blue-200:focus{color:#b1d1fe}.link-blue-300{color:#6ea8fe}.link-blue-300:hover,.link-blue-300:focus{color:#8bb9fe}.link-blue-400{color:#3d8bfd}.link-blue-400:hover,.link-blue-400:focus{color:#64a2fd}.link-blue-500{color:#0d6efd}.link-blue-500:hover,.link-blue-500:focus{color:#0a58ca}.link-blue-600{color:#0a58ca}.link-blue-600:hover,.link-blue-600:focus{color:#0846a2}.link-blue-700{color:#084298}.link-blue-700:hover,.link-blue-700:focus{color:#06357a}.link-blue-800{color:#052c65}.link-blue-800:hover,.link-blue-800:focus{color:#042351}.link-blue-900{color:#031633}.link-blue-900:hover,.link-blue-900:focus{color:#021229}.link-cyan-100{color:#cff4fc}.link-cyan-100:hover,.link-cyan-100:focus{color:#d9f6fd}.link-cyan-200{color:#9eeaf9}.link-cyan-200:hover,.link-cyan-200:focus{color:#b1eefa}.link-cyan-300{color:#6edff6}.link-cyan-300:hover,.link-cyan-300:focus{color:#8be5f8}.link-cyan-400{color:#3dd5f3}.link-cyan-400:hover,.link-cyan-400:focus{color:#64ddf5}.link-cyan-500{color:#0dcaf0}.link-cyan-500:hover,.link-cyan-500:focus{color:#3dd5f3}.link-cyan-600{color:#0aa2c0}.link-cyan-600:hover,.link-cyan-600:focus{color:#3bb5cd}.link-cyan-700{color:#087990}.link-cyan-700:hover,.link-cyan-700:focus{color:#066173}.link-cyan-800{color:#055160}.link-cyan-800:hover,.link-cyan-800:focus{color:#04414d}.link-cyan-900{color:#032830}.link-cyan-900:hover,.link-cyan-900:focus{color:#022026}.link-indigo-100{color:#e0cffc}.link-indigo-100:hover,.link-indigo-100:focus{color:#e6d9fd}.link-indigo-200{color:#c29ffa}.link-indigo-200:hover,.link-indigo-200:focus{color:#ceb2fb}.link-indigo-300{color:#a370f7}.link-indigo-300:hover,.link-indigo-300:focus{color:#b58df9}.link-indigo-400{color:#8540f5}.link-indigo-400:hover,.link-indigo-400:focus{color:#6a33c4}.link-indigo-500{color:#6610f2}.link-indigo-500:hover,.link-indigo-500:focus{color:#520dc2}.link-indigo-600{color:#520dc2}.link-indigo-600:hover,.link-indigo-600:focus{color:#420a9b}.link-indigo-700{color:#3d0a91}.link-indigo-700:hover,.link-indigo-700:focus{color:#310874}.link-indigo-800{color:#290661}.link-indigo-800:hover,.link-indigo-800:focus{color:#21054e}.link-indigo-900{color:#140330}.link-indigo-900:hover,.link-indigo-900:focus{color:#100226}.link-purple-100{color:#e2d9f3}.link-purple-100:hover,.link-purple-100:focus{color:#e8e1f5}.link-purple-200{color:#c5b3e6}.link-purple-200:hover,.link-purple-200:focus{color:#d1c2eb}.link-purple-300{color:#a98eda}.link-purple-300:hover,.link-purple-300:focus{color:#baa5e1}.link-purple-400{color:#8c68cd}.link-purple-400:hover,.link-purple-400:focus{color:#a386d7}.link-purple-500{color:#6f42c1}.link-purple-500:hover,.link-purple-500:focus{color:#59359a}.link-purple-600{color:#59359a}.link-purple-600:hover,.link-purple-600:focus{color:#472a7b}.link-purple-700{color:#432874}.link-purple-700:hover,.link-purple-700:focus{color:#36205d}.link-purple-800{color:#2c1a4d}.link-purple-800:hover,.link-purple-800:focus{color:#23153e}.link-purple-900{color:#160d27}.link-purple-900:hover,.link-purple-900:focus{color:#120a1f}.link-pink-100{color:#f7d6e6}.link-pink-100:hover,.link-pink-100:focus{color:#f9deeb}.link-pink-200{color:#efadce}.link-pink-200:hover,.link-pink-200:focus{color:#f2bdd8}.link-pink-300{color:#e685b5}.link-pink-300:hover,.link-pink-300:focus{color:#eb9dc4}.link-pink-400{color:#de5c9d}.link-pink-400:hover,.link-pink-400:focus{color:#e57db1}.link-pink-500{color:#d63384}.link-pink-500:hover,.link-pink-500:focus{color:#ab296a}.link-pink-600{color:#ab296a}.link-pink-600:hover,.link-pink-600:focus{color:#892155}.link-pink-700{color:#801f4f}.link-pink-700:hover,.link-pink-700:focus{color:#66193f}.link-pink-800{color:#561435}.link-pink-800:hover,.link-pink-800:focus{color:#45102a}.link-pink-900{color:#2b0a1a}.link-pink-900:hover,.link-pink-900:focus{color:#220815}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem #00000026!important}.shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}.shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translate(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#337ab7!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-red{border-color:#dc3545!important}.border-yellow{border-color:#ffc107!important}.border-green{border-color:#198754!important}.border-blue{border-color:#0d6efd!important}.border-cyan{border-color:#0dcaf0!important}.border-indigo{border-color:#6610f2!important}.border-purple{border-color:#6f42c1!important}.border-pink{border-color:#d63384!important}.border-darker{border-color:#1b1f22!important}.border-darkest{border-color:#171b1d!important}.border-gray{border-color:#ced4da!important}.border-gray-100{border-color:#f8f9fa!important}.border-gray-200{border-color:#e9ecef!important}.border-gray-300{border-color:#dee2e6!important}.border-gray-400{border-color:#ced4da!important}.border-gray-500{border-color:#adb5bd!important}.border-gray-600{border-color:#6c757d!important}.border-gray-700{border-color:#495057!important}.border-gray-800{border-color:#343a40!important}.border-gray-900{border-color:#212529!important}.border-red-100{border-color:#f8d7da!important}.border-red-200{border-color:#f1aeb5!important}.border-red-300{border-color:#ea868f!important}.border-red-400{border-color:#e35d6a!important}.border-red-500{border-color:#dc3545!important}.border-red-600{border-color:#b02a37!important}.border-red-700{border-color:#842029!important}.border-red-800{border-color:#58151c!important}.border-red-900{border-color:#2c0b0e!important}.border-yellow-100{border-color:#fff3cd!important}.border-yellow-200{border-color:#ffe69c!important}.border-yellow-300{border-color:#ffda6a!important}.border-yellow-400{border-color:#ffcd39!important}.border-yellow-500{border-color:#ffc107!important}.border-yellow-600{border-color:#cc9a06!important}.border-yellow-700{border-color:#997404!important}.border-yellow-800{border-color:#664d03!important}.border-yellow-900{border-color:#332701!important}.border-green-100{border-color:#d1e7dd!important}.border-green-200{border-color:#a3cfbb!important}.border-green-300{border-color:#75b798!important}.border-green-400{border-color:#479f76!important}.border-green-500{border-color:#198754!important}.border-green-600{border-color:#146c43!important}.border-green-700{border-color:#0f5132!important}.border-green-800{border-color:#0a3622!important}.border-green-900{border-color:#051b11!important}.border-blue-100{border-color:#cfe2ff!important}.border-blue-200{border-color:#9ec5fe!important}.border-blue-300{border-color:#6ea8fe!important}.border-blue-400{border-color:#3d8bfd!important}.border-blue-500{border-color:#0d6efd!important}.border-blue-600{border-color:#0a58ca!important}.border-blue-700{border-color:#084298!important}.border-blue-800{border-color:#052c65!important}.border-blue-900{border-color:#031633!important}.border-cyan-100{border-color:#cff4fc!important}.border-cyan-200{border-color:#9eeaf9!important}.border-cyan-300{border-color:#6edff6!important}.border-cyan-400{border-color:#3dd5f3!important}.border-cyan-500{border-color:#0dcaf0!important}.border-cyan-600{border-color:#0aa2c0!important}.border-cyan-700{border-color:#087990!important}.border-cyan-800{border-color:#055160!important}.border-cyan-900{border-color:#032830!important}.border-indigo-100{border-color:#e0cffc!important}.border-indigo-200{border-color:#c29ffa!important}.border-indigo-300{border-color:#a370f7!important}.border-indigo-400{border-color:#8540f5!important}.border-indigo-500{border-color:#6610f2!important}.border-indigo-600{border-color:#520dc2!important}.border-indigo-700{border-color:#3d0a91!important}.border-indigo-800{border-color:#290661!important}.border-indigo-900{border-color:#140330!important}.border-purple-100{border-color:#e2d9f3!important}.border-purple-200{border-color:#c5b3e6!important}.border-purple-300{border-color:#a98eda!important}.border-purple-400{border-color:#8c68cd!important}.border-purple-500{border-color:#6f42c1!important}.border-purple-600{border-color:#59359a!important}.border-purple-700{border-color:#432874!important}.border-purple-800{border-color:#2c1a4d!important}.border-purple-900{border-color:#160d27!important}.border-pink-100{border-color:#f7d6e6!important}.border-pink-200{border-color:#efadce!important}.border-pink-300{border-color:#e685b5!important}.border-pink-400{border-color:#de5c9d!important}.border-pink-500{border-color:#d63384!important}.border-pink-600{border-color:#ab296a!important}.border-pink-700{border-color:#801f4f!important}.border-pink-800{border-color:#561435!important}.border-pink-900{border-color:#2b0a1a!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:200!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:800!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:1.75!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#337ab7!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-red{color:#dc3545!important}.text-yellow{color:#ffc107!important}.text-green{color:#198754!important}.text-blue{color:#0d6efd!important}.text-cyan{color:#0dcaf0!important}.text-indigo{color:#6610f2!important}.text-purple{color:#6f42c1!important}.text-pink{color:#d63384!important}.text-darker{color:#1b1f22!important}.text-darkest{color:#171b1d!important}.text-gray{color:#ced4da!important}.text-gray-100{color:#f8f9fa!important}.text-gray-200{color:#e9ecef!important}.text-gray-300{color:#dee2e6!important}.text-gray-400{color:#ced4da!important}.text-gray-500{color:#adb5bd!important}.text-gray-600{color:#6c757d!important}.text-gray-700{color:#495057!important}.text-gray-800{color:#343a40!important}.text-gray-900{color:#212529!important}.text-red-100{color:#f8d7da!important}.text-red-200{color:#f1aeb5!important}.text-red-300{color:#ea868f!important}.text-red-400{color:#e35d6a!important}.text-red-500{color:#dc3545!important}.text-red-600{color:#b02a37!important}.text-red-700{color:#842029!important}.text-red-800{color:#58151c!important}.text-red-900{color:#2c0b0e!important}.text-yellow-100{color:#fff3cd!important}.text-yellow-200{color:#ffe69c!important}.text-yellow-300{color:#ffda6a!important}.text-yellow-400{color:#ffcd39!important}.text-yellow-500{color:#ffc107!important}.text-yellow-600{color:#cc9a06!important}.text-yellow-700{color:#997404!important}.text-yellow-800{color:#664d03!important}.text-yellow-900{color:#332701!important}.text-green-100{color:#d1e7dd!important}.text-green-200{color:#a3cfbb!important}.text-green-300{color:#75b798!important}.text-green-400{color:#479f76!important}.text-green-500{color:#198754!important}.text-green-600{color:#146c43!important}.text-green-700{color:#0f5132!important}.text-green-800{color:#0a3622!important}.text-green-900{color:#051b11!important}.text-blue-100{color:#cfe2ff!important}.text-blue-200{color:#9ec5fe!important}.text-blue-300{color:#6ea8fe!important}.text-blue-400{color:#3d8bfd!important}.text-blue-500{color:#0d6efd!important}.text-blue-600{color:#0a58ca!important}.text-blue-700{color:#084298!important}.text-blue-800{color:#052c65!important}.text-blue-900{color:#031633!important}.text-cyan-100{color:#cff4fc!important}.text-cyan-200{color:#9eeaf9!important}.text-cyan-300{color:#6edff6!important}.text-cyan-400{color:#3dd5f3!important}.text-cyan-500{color:#0dcaf0!important}.text-cyan-600{color:#0aa2c0!important}.text-cyan-700{color:#087990!important}.text-cyan-800{color:#055160!important}.text-cyan-900{color:#032830!important}.text-indigo-100{color:#e0cffc!important}.text-indigo-200{color:#c29ffa!important}.text-indigo-300{color:#a370f7!important}.text-indigo-400{color:#8540f5!important}.text-indigo-500{color:#6610f2!important}.text-indigo-600{color:#520dc2!important}.text-indigo-700{color:#3d0a91!important}.text-indigo-800{color:#290661!important}.text-indigo-900{color:#140330!important}.text-purple-100{color:#e2d9f3!important}.text-purple-200{color:#c5b3e6!important}.text-purple-300{color:#a98eda!important}.text-purple-400{color:#8c68cd!important}.text-purple-500{color:#6f42c1!important}.text-purple-600{color:#59359a!important}.text-purple-700{color:#432874!important}.text-purple-800{color:#2c1a4d!important}.text-purple-900{color:#160d27!important}.text-pink-100{color:#f7d6e6!important}.text-pink-200{color:#efadce!important}.text-pink-300{color:#e685b5!important}.text-pink-400{color:#de5c9d!important}.text-pink-500{color:#d63384!important}.text-pink-600{color:#ab296a!important}.text-pink-700{color:#801f4f!important}.text-pink-800{color:#561435!important}.text-pink-900{color:#2b0a1a!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:#00000080!important}.text-white-50{color:#ffffff80!important}.text-reset{color:inherit!important}.bg-primary{background-color:#337ab7!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-red{background-color:#dc3545!important}.bg-yellow{background-color:#ffc107!important}.bg-green{background-color:#198754!important}.bg-blue{background-color:#0d6efd!important}.bg-cyan{background-color:#0dcaf0!important}.bg-indigo{background-color:#6610f2!important}.bg-purple{background-color:#6f42c1!important}.bg-pink{background-color:#d63384!important}.bg-darker{background-color:#1b1f22!important}.bg-darkest{background-color:#171b1d!important}.bg-gray{background-color:#ced4da!important}.bg-gray-100{background-color:#f8f9fa!important}.bg-gray-200{background-color:#e9ecef!important}.bg-gray-300{background-color:#dee2e6!important}.bg-gray-400{background-color:#ced4da!important}.bg-gray-500{background-color:#adb5bd!important}.bg-gray-600{background-color:#6c757d!important}.bg-gray-700{background-color:#495057!important}.bg-gray-800{background-color:#343a40!important}.bg-gray-900{background-color:#212529!important}.bg-red-100{background-color:#f8d7da!important}.bg-red-200{background-color:#f1aeb5!important}.bg-red-300{background-color:#ea868f!important}.bg-red-400{background-color:#e35d6a!important}.bg-red-500{background-color:#dc3545!important}.bg-red-600{background-color:#b02a37!important}.bg-red-700{background-color:#842029!important}.bg-red-800{background-color:#58151c!important}.bg-red-900{background-color:#2c0b0e!important}.bg-yellow-100{background-color:#fff3cd!important}.bg-yellow-200{background-color:#ffe69c!important}.bg-yellow-300{background-color:#ffda6a!important}.bg-yellow-400{background-color:#ffcd39!important}.bg-yellow-500{background-color:#ffc107!important}.bg-yellow-600{background-color:#cc9a06!important}.bg-yellow-700{background-color:#997404!important}.bg-yellow-800{background-color:#664d03!important}.bg-yellow-900{background-color:#332701!important}.bg-green-100{background-color:#d1e7dd!important}.bg-green-200{background-color:#a3cfbb!important}.bg-green-300{background-color:#75b798!important}.bg-green-400{background-color:#479f76!important}.bg-green-500{background-color:#198754!important}.bg-green-600{background-color:#146c43!important}.bg-green-700{background-color:#0f5132!important}.bg-green-800{background-color:#0a3622!important}.bg-green-900{background-color:#051b11!important}.bg-blue-100{background-color:#cfe2ff!important}.bg-blue-200{background-color:#9ec5fe!important}.bg-blue-300{background-color:#6ea8fe!important}.bg-blue-400{background-color:#3d8bfd!important}.bg-blue-500{background-color:#0d6efd!important}.bg-blue-600{background-color:#0a58ca!important}.bg-blue-700{background-color:#084298!important}.bg-blue-800{background-color:#052c65!important}.bg-blue-900{background-color:#031633!important}.bg-cyan-100{background-color:#cff4fc!important}.bg-cyan-200{background-color:#9eeaf9!important}.bg-cyan-300{background-color:#6edff6!important}.bg-cyan-400{background-color:#3dd5f3!important}.bg-cyan-500{background-color:#0dcaf0!important}.bg-cyan-600{background-color:#0aa2c0!important}.bg-cyan-700{background-color:#087990!important}.bg-cyan-800{background-color:#055160!important}.bg-cyan-900{background-color:#032830!important}.bg-indigo-100{background-color:#e0cffc!important}.bg-indigo-200{background-color:#c29ffa!important}.bg-indigo-300{background-color:#a370f7!important}.bg-indigo-400{background-color:#8540f5!important}.bg-indigo-500{background-color:#6610f2!important}.bg-indigo-600{background-color:#520dc2!important}.bg-indigo-700{background-color:#3d0a91!important}.bg-indigo-800{background-color:#290661!important}.bg-indigo-900{background-color:#140330!important}.bg-purple-100{background-color:#e2d9f3!important}.bg-purple-200{background-color:#c5b3e6!important}.bg-purple-300{background-color:#a98eda!important}.bg-purple-400{background-color:#8c68cd!important}.bg-purple-500{background-color:#6f42c1!important}.bg-purple-600{background-color:#59359a!important}.bg-purple-700{background-color:#432874!important}.bg-purple-800{background-color:#2c1a4d!important}.bg-purple-900{background-color:#160d27!important}.bg-pink-100{background-color:#f7d6e6!important}.bg-pink-200{background-color:#efadce!important}.bg-pink-300{background-color:#e685b5!important}.bg-pink-400{background-color:#de5c9d!important}.bg-pink-500{background-color:#d63384!important}.bg-pink-600{background-color:#ab296a!important}.bg-pink-700{background-color:#801f4f!important}.bg-pink-800{background-color:#561435!important}.bg-pink-900{background-color:#2b0a1a!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.375rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.375rem!important}.rounded-2{border-radius:.375rem!important}.rounded-3{border-radius:.75rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width: 576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width: 768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width: 992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width: 1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width: 1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width: 1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}:root{--nbx-select-content-bg: #fff;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}:root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}.ss-main{position:relative;display:inline-block;user-select:none;color:#212529;width:100%}.ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}.ss-main .ss-single-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}.ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}.ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}.ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}.ss-main .ss-single-selected .placeholder .ss-disabled{color:#6c757d}.ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}.ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}.ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}.ss-main .ss-single-selected .ss-arrow span{border:solid #212529;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}.ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}.ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}.ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}.ss-main .ss-multi-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#212529}.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}.ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}.ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}.ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}.ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#6c757d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}.ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#0d6efd;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}.ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}.ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}.ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#212529;position:relative;height:10px;width:2px;transition:transform .2s}.ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#212529;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}.ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #ced4da;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}.ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}.ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}.ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}.ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}.ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}.ss-content .ss-search input::placeholder{color:#adb5bd;vertical-align:middle}.ss-content .ss-search input:focus{box-shadow:0 0 5px #0d6efd}.ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #ced4da;border-radius:.375rem;box-sizing:border-box}.ss-content .ss-addable{padding-top:0}.ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}.ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}.ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}.ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}.ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#0d6efd}.ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}.ss-content .ss-list .ss-option *{display:inline-block}.ss-content .ss-list .ss-option:hover,.ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#0d6efd}.ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#6c757d;background-color:#fff}.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#212529;background-color:#0d6efd1a}.ss-content .ss-list .ss-option.ss-hide{display:none}.ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}.ss-main{color:#212529}.ss-main.is-invalid .ss-single-selected,.ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}.ss-main.is-valid .ss-single-selected,.ss-main.is-valid .ss-multi-selected{border-color:#198754}.ss-main .ss-single-selected,.ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#fff;border:1px solid #e9ecef}.ss-main .ss-single-selected[disabled],.ss-main .ss-multi-selected[disabled]{color:#6c757d;background-color:#e9ecef}.ss-main div.ss-multi-selected .ss-values .ss-disabled,.ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}.ss-main .ss-single-selected span.ss-arrow span.arrow-down,.ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#6c757d}.ss-main .ss-single-selected .placeholder .depth{display:none}.ss-main .ss-single-selected span.placeholder>*,.ss-main .ss-single-selected span.placeholder{line-height:1.5}.ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}.ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}.ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}.ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}.ss-main .ss-multi-selected .ss-add{margin:0 .75rem}.ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#212529;background-color:var(--nbx-select-option-selected-bg)}.ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}.ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}.ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#6c757d}.ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}.ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}.ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}.ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}.ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}.ss-main .ss-content .ss-search{padding-right:.5rem}.ss-main .ss-content .ss-search button{margin-left:.75rem}.ss-main .ss-content .ss-search input[type=search]{color:#212529;background-color:#fff;border:1px solid #e9ecef}.ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #ced4da;transition:all .1s ease-in-out}@media (max-width: 991.98px){.sidenav{transform:translate(-3rem)}.sidenav+.content-container[class]{margin-left:0}.sidenav .profile-button-container[class]{display:block}}.sidenav .profile-button-container{display:none;padding:.5rem 1rem}.sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}.sidenav .sidenav-brand{margin-right:0;transition:opacity .1s ease-in-out}.sidenav .sidenav-brand-icon{transition:opacity .1s ease-in-out}.sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}@media (min-width: 768px){.sidenav .sidenav-inner{padding-right:0;padding-left:0}}.sidenav .sidenav-brand-img,.sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}.sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}.sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}.sidenav .sidenav-toggle{position:absolute;display:inline-block;opacity:0;transition:opacity 10ms ease-in-out;transition-delay:.1s}.sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}.sidenav .sidenav-collapse>*{min-width:100%}@media (min-width: 768px){.sidenav .sidenav-collapse{margin-right:0;margin-left:0}}.sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}.sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}.sidenav .nav .nav-item.no-buttons{padding-right:5rem}.sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#343a40;background:#cfe2ff}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#6c757d;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#343a40}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#0d6efd;transform:rotate(90deg)}.sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}.sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}.sidenav .navbar-nav .nav-item{margin-top:2px}.sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}.sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}.sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}.sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}.sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}.sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}@media (min-width: 1200px){body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}.g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}body[data-sidenav-show] .sidenav,body[data-sidenav-pinned] .sidenav{max-width:16rem}body[data-sidenav-show] .sidenav .sidenav-brand,body[data-sidenav-show] .sidenav .navbar-heading,body[data-sidenav-pinned] .sidenav .sidenav-brand,body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}body[data-sidenav-show] .sidenav .sidenav-brand,body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}body[data-sidenav-show] .sidenav .sidenav-brand-icon,body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}@media (max-width: 991.98px){body[data-sidenav-show] .sidenav,body[data-sidenav-pinned] .sidenav{transform:translate(0)}}body[data-sidenav-hide] .sidenav .sidenav-header,body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}body[data-sidenav-hide] .sidenav .sidenav-brand,body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0}body[data-sidenav-hide] .sidenav .sidenav-brand-icon,body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}body[data-sidenav-hide] .sidenav .sidenav-toggle,body[data-sidenav-hidden] .sidenav .sidenav-toggle{opacity:0;position:absolute;transition:unset;transition-delay:0ms}body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}body[data-sidenav-hide] .sidenav .nav-item .collapse,body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}body[data-sidenav-hide] .sidenav .nav-link-text,body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}body[data-sidenav-show] .sidenav .sidenav-brand{display:block}body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}@media (min-width: 992px){body[data-sidenav-show] .sidenav .sidenav-toggle{position:relative;opacity:1}}.simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}.simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}.simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}small,.small{font-size:smaller!important}a[type=button]{-webkit-appearance:unset!important}*[data-href]{cursor:pointer}.form-control:not([type=file]){font-size:inherit}.badge{font-size:.75rem}.text-xs{font-size:.75rem!important;line-height:1.25!important}.border-input{border:1px solid #e9ecef!important}.ws-nowrap{white-space:nowrap!important}table tr .vertical-align,table td .vertical-align{vertical-align:middle}@media print{.noprint{display:none!important;visibility:hidden!important}}.printonly{display:none!important;visibility:hidden!important}@media print{.printonly{display:block!important;visibility:visible!important}}:root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #e9ecef;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #0d6efd;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}:root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}.bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f496e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-primary{color:#337ab7}.btn.btn-ghost-primary:hover{background-color:#337ab71f}.alert.alert-primary a:not(.btn),.table-primary a:not(.btn){font-weight:700;color:#1f496e}.alert.alert-primary .btn:not([class*=btn-outline]),.table-primary .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-primary a:not(.btn){font-weight:700;color:#adcae2}.badge.bg-primary,.toast.bg-primary,.toast-header.bg-primary,.progress-bar.bg-primary{color:#fff}.bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-secondary{color:#6c757d}.btn.btn-ghost-secondary:hover{background-color:#6c757d1f}.alert.alert-secondary a:not(.btn),.table-secondary a:not(.btn){font-weight:700;color:#41464b}.alert.alert-secondary .btn:not([class*=btn-outline]),.table-secondary .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-secondary a:not(.btn){font-weight:700;color:#c4c8cb}.badge.bg-secondary,.toast.bg-secondary,.toast-header.bg-secondary,.progress-bar.bg-secondary{color:#fff}.bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-success{color:#198754}.btn.btn-ghost-success:hover{background-color:#1987541f}.alert.alert-success a:not(.btn),.table-success a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-success .btn:not([class*=btn-outline]),.table-success .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-success a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-success,.toast.bg-success,.toast-header.bg-success,.progress-bar.bg-success{color:#fff}.bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-info{color:#0dcaf0}.btn.btn-ghost-info:hover{background-color:#0dcaf01f}.alert.alert-info a:not(.btn),.table-info a:not(.btn){font-weight:700;color:#055160}.alert.alert-info .btn:not([class*=btn-outline]),.table-info .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-info a:not(.btn){font-weight:700;color:#055160}.badge.bg-info,.toast.bg-info,.toast-header.bg-info,.progress-bar.bg-info{color:#000}.bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-warning{color:#ffc107}.btn.btn-ghost-warning:hover{background-color:#ffc1071f}.alert.alert-warning a:not(.btn),.table-warning a:not(.btn){font-weight:700;color:#664d03}.alert.alert-warning .btn:not([class*=btn-outline]),.table-warning .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-warning a:not(.btn){font-weight:700;color:#664d03}.badge.bg-warning,.toast.bg-warning,.toast-header.bg-warning,.progress-bar.bg-warning{color:#000}.bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-danger{color:#dc3545}.btn.btn-ghost-danger:hover{background-color:#dc35451f}.alert.alert-danger a:not(.btn),.table-danger a:not(.btn){font-weight:700;color:#842029}.alert.alert-danger .btn:not([class*=btn-outline]),.table-danger .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-danger a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-danger,.toast.bg-danger,.toast-header.bg-danger,.progress-bar.bg-danger{color:#fff}.bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-light{color:#f8f9fa}.btn.btn-ghost-light:hover{background-color:#f8f9fa1f}.alert.alert-light a:not(.btn),.table-light a:not(.btn){font-weight:700;color:#636464}.alert.alert-light .btn:not([class*=btn-outline]),.table-light .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-light a:not(.btn){font-weight:700;color:#636464}.badge.bg-light,.toast.bg-light,.toast-header.bg-light,.progress-bar.bg-light{color:#000}.bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-dark{color:#212529}.btn.btn-ghost-dark:hover{background-color:#2125291f}.alert.alert-dark a:not(.btn),.table-dark a:not(.btn){font-weight:700;color:#141619}.alert.alert-dark .btn:not([class*=btn-outline]),.table-dark .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-dark a:not(.btn){font-weight:700;color:#a6a8a9}.badge.bg-dark,.toast.bg-dark,.toast-header.bg-dark,.progress-bar.bg-dark{color:#fff}.bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red{color:#dc3545}.btn.btn-ghost-red:hover{background-color:#dc35451f}.alert.alert-red a:not(.btn),.table-red a:not(.btn){font-weight:700;color:#842029}.alert.alert-red .btn:not([class*=btn-outline]),.table-red .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-red,.toast.bg-red,.toast-header.bg-red,.progress-bar.bg-red{color:#fff}.bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow{color:#ffc107}.btn.btn-ghost-yellow:hover{background-color:#ffc1071f}.alert.alert-yellow a:not(.btn),.table-yellow a:not(.btn){font-weight:700;color:#664d03}.alert.alert-yellow .btn:not([class*=btn-outline]),.table-yellow .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow a:not(.btn){font-weight:700;color:#664d03}.badge.bg-yellow,.toast.bg-yellow,.toast-header.bg-yellow,.progress-bar.bg-yellow{color:#000}.bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green{color:#198754}.btn.btn-ghost-green:hover{background-color:#1987541f}.alert.alert-green a:not(.btn),.table-green a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-green .btn:not([class*=btn-outline]),.table-green .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-green,.toast.bg-green,.toast-header.bg-green,.progress-bar.bg-green{color:#fff}.bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue{color:#0d6efd}.btn.btn-ghost-blue:hover{background-color:#0d6efd1f}.alert.alert-blue a:not(.btn),.table-blue a:not(.btn){font-weight:700;color:#084298}.alert.alert-blue .btn:not([class*=btn-outline]),.table-blue .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue a:not(.btn){font-weight:700;color:#9ec5fe}.badge.bg-blue,.toast.bg-blue,.toast-header.bg-blue,.progress-bar.bg-blue{color:#fff}.bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan{color:#0dcaf0}.btn.btn-ghost-cyan:hover{background-color:#0dcaf01f}.alert.alert-cyan a:not(.btn),.table-cyan a:not(.btn){font-weight:700;color:#055160}.alert.alert-cyan .btn:not([class*=btn-outline]),.table-cyan .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan a:not(.btn){font-weight:700;color:#055160}.badge.bg-cyan,.toast.bg-cyan,.toast-header.bg-cyan,.progress-bar.bg-cyan{color:#000}.bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo{color:#6610f2}.btn.btn-ghost-indigo:hover{background-color:#6610f21f}.alert.alert-indigo a:not(.btn),.table-indigo a:not(.btn){font-weight:700;color:#3d0a91}.alert.alert-indigo .btn:not([class*=btn-outline]),.table-indigo .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo a:not(.btn){font-weight:700;color:#c29ffa}.badge.bg-indigo,.toast.bg-indigo,.toast-header.bg-indigo,.progress-bar.bg-indigo{color:#fff}.bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple{color:#6f42c1}.btn.btn-ghost-purple:hover{background-color:#6f42c11f}.alert.alert-purple a:not(.btn),.table-purple a:not(.btn){font-weight:700;color:#432874}.alert.alert-purple .btn:not([class*=btn-outline]),.table-purple .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple a:not(.btn){font-weight:700;color:#c5b3e6}.badge.bg-purple,.toast.bg-purple,.toast-header.bg-purple,.progress-bar.bg-purple{color:#fff}.bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink{color:#d63384}.btn.btn-ghost-pink:hover{background-color:#d633841f}.alert.alert-pink a:not(.btn),.table-pink a:not(.btn){font-weight:700;color:#801f4f}.alert.alert-pink .btn:not([class*=btn-outline]),.table-pink .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink a:not(.btn){font-weight:700;color:#efadce}.badge.bg-pink,.toast.bg-pink,.toast-header.bg-pink,.progress-bar.bg-pink{color:#fff}.bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101314'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-darker{color:#1b1f22}.btn.btn-ghost-darker:hover{background-color:#1b1f221f}.alert.alert-darker a:not(.btn),.table-darker a:not(.btn){font-weight:700;color:#101314}.alert.alert-darker .btn:not([class*=btn-outline]),.table-darker .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-darker a:not(.btn){font-weight:700;color:#a4a5a7}.badge.bg-darker,.toast.bg-darker,.toast-header.bg-darker,.progress-bar.bg-darker{color:#fff}.bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1011'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-darkest{color:#171b1d}.btn.btn-ghost-darkest:hover{background-color:#171b1d1f}.alert.alert-darkest a:not(.btn),.table-darkest a:not(.btn){font-weight:700;color:#0e1011}.alert.alert-darkest .btn:not([class*=btn-outline]),.table-darkest .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-darkest a:not(.btn){font-weight:700;color:#a2a4a5}.badge.bg-darkest,.toast.bg-darkest,.toast-header.bg-darkest,.progress-bar.bg-darkest{color:#fff}.bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray{color:#ced4da}.btn.btn-ghost-gray:hover{background-color:#ced4da1f}.alert.alert-gray a:not(.btn),.table-gray a:not(.btn){font-weight:700;color:#525557}.alert.alert-gray .btn:not([class*=btn-outline]),.table-gray .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray a:not(.btn){font-weight:700;color:#525557}.badge.bg-gray,.toast.bg-gray,.toast-header.bg-gray,.progress-bar.bg-gray{color:#000}.bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-100{color:#f8f9fa}.btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}.alert.alert-gray-100 a:not(.btn),.table-gray-100 a:not(.btn){font-weight:700;color:#636464}.alert.alert-gray-100 .btn:not([class*=btn-outline]),.table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-100 a:not(.btn){font-weight:700;color:#636464}.badge.bg-gray-100,.toast.bg-gray-100,.toast-header.bg-gray-100,.progress-bar.bg-gray-100{color:#000}.bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d5e60'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-200{color:#e9ecef}.btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}.alert.alert-gray-200 a:not(.btn),.table-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}.alert.alert-gray-200 .btn:not([class*=btn-outline]),.table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}.badge.bg-gray-200,.toast.bg-gray-200,.toast-header.bg-gray-200,.progress-bar.bg-gray-200{color:#000}.bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23595a5c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-300{color:#dee2e6}.btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}.alert.alert-gray-300 a:not(.btn),.table-gray-300 a:not(.btn){font-weight:700;color:#595a5c}.alert.alert-gray-300 .btn:not([class*=btn-outline]),.table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-300 a:not(.btn){font-weight:700;color:#595a5c}.badge.bg-gray-300,.toast.bg-gray-300,.toast-header.bg-gray-300,.progress-bar.bg-gray-300{color:#000}.bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-400{color:#ced4da}.btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}.alert.alert-gray-400 a:not(.btn),.table-gray-400 a:not(.btn){font-weight:700;color:#525557}.alert.alert-gray-400 .btn:not([class*=btn-outline]),.table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-400 a:not(.btn){font-weight:700;color:#525557}.badge.bg-gray-400,.toast.bg-gray-400,.toast-header.bg-gray-400,.progress-bar.bg-gray-400{color:#000}.bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23686d71'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-500{color:#adb5bd}.btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}.alert.alert-gray-500 a:not(.btn),.table-gray-500 a:not(.btn){font-weight:700;color:#686d71}.alert.alert-gray-500 .btn:not([class*=btn-outline]),.table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-500 a:not(.btn){font-weight:700;color:#45484c}.badge.bg-gray-500,.toast.bg-gray-500,.toast-header.bg-gray-500,.progress-bar.bg-gray-500{color:#000}.bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-600{color:#6c757d}.btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}.alert.alert-gray-600 a:not(.btn),.table-gray-600 a:not(.btn){font-weight:700;color:#41464b}.alert.alert-gray-600 .btn:not([class*=btn-outline]),.table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-600 a:not(.btn){font-weight:700;color:#c4c8cb}.badge.bg-gray-600,.toast.bg-gray-600,.toast-header.bg-gray-600,.progress-bar.bg-gray-600{color:#fff}.bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3034'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-700{color:#495057}.btn.btn-ghost-gray-700:hover{background-color:#4950571f}.alert.alert-gray-700 a:not(.btn),.table-gray-700 a:not(.btn){font-weight:700;color:#2c3034}.alert.alert-gray-700 .btn:not([class*=btn-outline]),.table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-700 a:not(.btn){font-weight:700;color:#b6b9bc}.badge.bg-gray-700,.toast.bg-gray-700,.toast-header.bg-gray-700,.progress-bar.bg-gray-700{color:#fff}.bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2326'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-800{color:#343a40}.btn.btn-ghost-gray-800:hover{background-color:#343a401f}.alert.alert-gray-800 a:not(.btn),.table-gray-800 a:not(.btn){font-weight:700;color:#1f2326}.alert.alert-gray-800 .btn:not([class*=btn-outline]),.table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-800 a:not(.btn){font-weight:700;color:#aeb0b3}.badge.bg-gray-800,.toast.bg-gray-800,.toast-header.bg-gray-800,.progress-bar.bg-gray-800{color:#fff}.bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-gray-900{color:#212529}.btn.btn-ghost-gray-900:hover{background-color:#2125291f}.alert.alert-gray-900 a:not(.btn),.table-gray-900 a:not(.btn){font-weight:700;color:#141619}.alert.alert-gray-900 .btn:not([class*=btn-outline]),.table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-gray-900 a:not(.btn){font-weight:700;color:#a6a8a9}.badge.bg-gray-900,.toast.bg-gray-900,.toast-header.bg-gray-900,.progress-bar.bg-gray-900{color:#fff}.bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23635657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-100{color:#f8d7da}.btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}.alert.alert-red-100 a:not(.btn),.table-red-100 a:not(.btn){font-weight:700;color:#635657}.alert.alert-red-100 .btn:not([class*=btn-outline]),.table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-100 a:not(.btn){font-weight:700;color:#635657}.badge.bg-red-100,.toast.bg-red-100,.toast-header.bg-red-100,.progress-bar.bg-red-100{color:#000}.bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604648'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-200{color:#f1aeb5}.btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}.alert.alert-red-200 a:not(.btn),.table-red-200 a:not(.btn){font-weight:700;color:#604648}.alert.alert-red-200 .btn:not([class*=btn-outline]),.table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-200 a:not(.btn){font-weight:700;color:#604648}.badge.bg-red-200,.toast.bg-red-200,.toast-header.bg-red-200,.progress-bar.bg-red-200{color:#000}.bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238c5056'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-300{color:#ea868f}.btn.btn-ghost-red-300:hover{background-color:#ea868f1f}.alert.alert-red-300 a:not(.btn),.table-red-300 a:not(.btn){font-weight:700;color:#8c5056}.alert.alert-red-300 .btn:not([class*=btn-outline]),.table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-300 a:not(.btn){font-weight:700;color:#5e3639}.badge.bg-red-300,.toast.bg-red-300,.toast-header.bg-red-300,.progress-bar.bg-red-300{color:#000}.bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23883840'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-400{color:#e35d6a}.btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}.alert.alert-red-400 a:not(.btn),.table-red-400 a:not(.btn){font-weight:700;color:#883840}.alert.alert-red-400 .btn:not([class*=btn-outline]),.table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-400 a:not(.btn){font-weight:700;color:#5b252a}.badge.bg-red-400,.toast.bg-red-400,.toast-header.bg-red-400,.progress-bar.bg-red-400{color:#000}.bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-500{color:#dc3545}.btn.btn-ghost-red-500:hover{background-color:#dc35451f}.alert.alert-red-500 a:not(.btn),.table-red-500 a:not(.btn){font-weight:700;color:#842029}.alert.alert-red-500 .btn:not([class*=btn-outline]),.table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-500 a:not(.btn){font-weight:700;color:#f1aeb5}.badge.bg-red-500,.toast.bg-red-500,.toast-header.bg-red-500,.progress-bar.bg-red-500{color:#fff}.bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a1921'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-600{color:#b02a37}.btn.btn-ghost-red-600:hover{background-color:#b02a371f}.alert.alert-red-600 a:not(.btn),.table-red-600 a:not(.btn){font-weight:700;color:#6a1921}.alert.alert-red-600 .btn:not([class*=btn-outline]),.table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-600 a:not(.btn){font-weight:700;color:#dfaaaf}.badge.bg-red-600,.toast.bg-red-600,.toast-header.bg-red-600,.progress-bar.bg-red-600{color:#fff}.bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f1319'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-700{color:#842029}.btn.btn-ghost-red-700:hover{background-color:#8420291f}.alert.alert-red-700 a:not(.btn),.table-red-700 a:not(.btn){font-weight:700;color:#4f1319}.alert.alert-red-700 .btn:not([class*=btn-outline]),.table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-700 a:not(.btn){font-weight:700;color:#cea6a9}.badge.bg-red-700,.toast.bg-red-700,.toast-header.bg-red-700,.progress-bar.bg-red-700{color:#fff}.bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23350d11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-800{color:#58151c}.btn.btn-ghost-red-800:hover{background-color:#58151c1f}.alert.alert-red-800 a:not(.btn),.table-red-800 a:not(.btn){font-weight:700;color:#350d11}.alert.alert-red-800 .btn:not([class*=btn-outline]),.table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-800 a:not(.btn){font-weight:700;color:#bca1a4}.badge.bg-red-800,.toast.bg-red-800,.toast-header.bg-red-800,.progress-bar.bg-red-800{color:#fff}.bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0708'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-red-900{color:#2c0b0e}.btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}.alert.alert-red-900 a:not(.btn),.table-red-900 a:not(.btn){font-weight:700;color:#1a0708}.alert.alert-red-900 .btn:not([class*=btn-outline]),.table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-red-900 a:not(.btn){font-weight:700;color:#ab9d9f}.badge.bg-red-900,.toast.bg-red-900,.toast-header.bg-red-900,.progress-bar.bg-red-900{color:#fff}.bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666152'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-100{color:#fff3cd}.btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}.alert.alert-yellow-100 a:not(.btn),.table-yellow-100 a:not(.btn){font-weight:700;color:#666152}.alert.alert-yellow-100 .btn:not([class*=btn-outline]),.table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#666152}.badge.bg-yellow-100,.toast.bg-yellow-100,.toast-header.bg-yellow-100,.progress-bar.bg-yellow-100{color:#000}.bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665c3e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-200{color:#ffe69c}.btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}.alert.alert-yellow-200 a:not(.btn),.table-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}.alert.alert-yellow-200 .btn:not([class*=btn-outline]),.table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}.badge.bg-yellow-200,.toast.bg-yellow-200,.toast-header.bg-yellow-200,.progress-bar.bg-yellow-200{color:#000}.bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366572a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-300{color:#ffda6a}.btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}.alert.alert-yellow-300 a:not(.btn),.table-yellow-300 a:not(.btn){font-weight:700;color:#66572a}.alert.alert-yellow-300 .btn:not([class*=btn-outline]),.table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#66572a}.badge.bg-yellow-300,.toast.bg-yellow-300,.toast-header.bg-yellow-300,.progress-bar.bg-yellow-300{color:#000}.bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665217'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-400{color:#ffcd39}.btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}.alert.alert-yellow-400 a:not(.btn),.table-yellow-400 a:not(.btn){font-weight:700;color:#665217}.alert.alert-yellow-400 .btn:not([class*=btn-outline]),.table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#665217}.badge.bg-yellow-400,.toast.bg-yellow-400,.toast-header.bg-yellow-400,.progress-bar.bg-yellow-400{color:#000}.bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-500{color:#ffc107}.btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}.alert.alert-yellow-500 a:not(.btn),.table-yellow-500 a:not(.btn){font-weight:700;color:#664d03}.alert.alert-yellow-500 .btn:not([class*=btn-outline]),.table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#664d03}.badge.bg-yellow-500,.toast.bg-yellow-500,.toast-header.bg-yellow-500,.progress-bar.bg-yellow-500{color:#000}.bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a5c04'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-600{color:#cc9a06}.btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}.alert.alert-yellow-600 a:not(.btn),.table-yellow-600 a:not(.btn){font-weight:700;color:#7a5c04}.alert.alert-yellow-600 .btn:not([class*=btn-outline]),.table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#523e02}.badge.bg-yellow-600,.toast.bg-yellow-600,.toast-header.bg-yellow-600,.progress-bar.bg-yellow-600{color:#000}.bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c4602'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-700{color:#997404}.btn.btn-ghost-yellow-700:hover{background-color:#9974041f}.alert.alert-yellow-700 a:not(.btn),.table-yellow-700 a:not(.btn){font-weight:700;color:#5c4602}.alert.alert-yellow-700 .btn:not([class*=btn-outline]),.table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#3d2e02}.badge.bg-yellow-700,.toast.bg-yellow-700,.toast-header.bg-yellow-700,.progress-bar.bg-yellow-700{color:#000}.bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d2e02'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-800{color:#664d03}.btn.btn-ghost-yellow-800:hover{background-color:#664d031f}.alert.alert-yellow-800 a:not(.btn),.table-yellow-800 a:not(.btn){font-weight:700;color:#3d2e02}.alert.alert-yellow-800 .btn:not([class*=btn-outline]),.table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#c2b89a}.badge.bg-yellow-800,.toast.bg-yellow-800,.toast-header.bg-yellow-800,.progress-bar.bg-yellow-800{color:#fff}.bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-yellow-900{color:#332701}.btn.btn-ghost-yellow-900:hover{background-color:#3327011f}.alert.alert-yellow-900 a:not(.btn),.table-yellow-900 a:not(.btn){font-weight:700;color:#1f1701}.alert.alert-yellow-900 .btn:not([class*=btn-outline]),.table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#ada999}.badge.bg-yellow-900,.toast.bg-yellow-900,.toast-header.bg-yellow-900,.progress-bar.bg-yellow-900{color:#fff}.bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23545c58'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-100{color:#d1e7dd}.btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}.alert.alert-green-100 a:not(.btn),.table-green-100 a:not(.btn){font-weight:700;color:#545c58}.alert.alert-green-100 .btn:not([class*=btn-outline]),.table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-100 a:not(.btn){font-weight:700;color:#545c58}.badge.bg-green-100,.toast.bg-green-100,.toast-header.bg-green-100,.progress-bar.bg-green-100{color:#000}.bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341534b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-200{color:#a3cfbb}.btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}.alert.alert-green-200 a:not(.btn),.table-green-200 a:not(.btn){font-weight:700;color:#41534b}.alert.alert-green-200 .btn:not([class*=btn-outline]),.table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-200 a:not(.btn){font-weight:700;color:#41534b}.badge.bg-green-200,.toast.bg-green-200,.toast-header.bg-green-200,.progress-bar.bg-green-200{color:#000}.bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23466e5b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-300{color:#75b798}.btn.btn-ghost-green-300:hover{background-color:#75b7981f}.alert.alert-green-300 a:not(.btn),.table-green-300 a:not(.btn){font-weight:700;color:#466e5b}.alert.alert-green-300 .btn:not([class*=btn-outline]),.table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-300 a:not(.btn){font-weight:700;color:#2f493d}.badge.bg-green-300,.toast.bg-green-300,.toast-header.bg-green-300,.progress-bar.bg-green-300{color:#000}.bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b5f47'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-400{color:#479f76}.btn.btn-ghost-green-400:hover{background-color:#479f761f}.alert.alert-green-400 a:not(.btn),.table-green-400 a:not(.btn){font-weight:700;color:#2b5f47}.alert.alert-green-400 .btn:not([class*=btn-outline]),.table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-400 a:not(.btn){font-weight:700;color:#1c402f}.badge.bg-green-400,.toast.bg-green-400,.toast-header.bg-green-400,.progress-bar.bg-green-400{color:#000}.bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-500{color:#198754}.btn.btn-ghost-green-500:hover{background-color:#1987541f}.alert.alert-green-500 a:not(.btn),.table-green-500 a:not(.btn){font-weight:700;color:#0f5132}.alert.alert-green-500 .btn:not([class*=btn-outline]),.table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-500 a:not(.btn){font-weight:700;color:#a3cfbb}.badge.bg-green-500,.toast.bg-green-500,.toast-header.bg-green-500,.progress-bar.bg-green-500{color:#fff}.bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c4128'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-600{color:#146c43}.btn.btn-ghost-green-600:hover{background-color:#146c431f}.alert.alert-green-600 a:not(.btn),.table-green-600 a:not(.btn){font-weight:700;color:#0c4128}.alert.alert-green-600 .btn:not([class*=btn-outline]),.table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-600 a:not(.btn){font-weight:700;color:#a1c4b4}.badge.bg-green-600,.toast.bg-green-600,.toast-header.bg-green-600,.progress-bar.bg-green-600{color:#fff}.bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2309311e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-700{color:#0f5132}.btn.btn-ghost-green-700:hover{background-color:#0f51321f}.alert.alert-green-700 a:not(.btn),.table-green-700 a:not(.btn){font-weight:700;color:#09311e}.alert.alert-green-700 .btn:not([class*=btn-outline]),.table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-700 a:not(.btn){font-weight:700;color:#9fb9ad}.badge.bg-green-700,.toast.bg-green-700,.toast-header.bg-green-700,.progress-bar.bg-green-700{color:#fff}.bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23062014'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-800{color:#0a3622}.btn.btn-ghost-green-800:hover{background-color:#0a36221f}.alert.alert-green-800 a:not(.btn),.table-green-800 a:not(.btn){font-weight:700;color:#062014}.alert.alert-green-800 .btn:not([class*=btn-outline]),.table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-800 a:not(.btn){font-weight:700;color:#9dafa7}.badge.bg-green-800,.toast.bg-green-800,.toast-header.bg-green-800,.progress-bar.bg-green-800{color:#fff}.bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303100a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-green-900{color:#051b11}.btn.btn-ghost-green-900:hover{background-color:#051b111f}.alert.alert-green-900 a:not(.btn),.table-green-900 a:not(.btn){font-weight:700;color:#03100a}.alert.alert-green-900 .btn:not([class*=btn-outline]),.table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-green-900 a:not(.btn){font-weight:700;color:#9ba4a0}.badge.bg-green-900,.toast.bg-green-900,.toast-header.bg-green-900,.progress-bar.bg-green-900{color:#fff}.bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23535a66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-100{color:#cfe2ff}.btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}.alert.alert-blue-100 a:not(.btn),.table-blue-100 a:not(.btn){font-weight:700;color:#535a66}.alert.alert-blue-100 .btn:not([class*=btn-outline]),.table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-100 a:not(.btn){font-weight:700;color:#535a66}.badge.bg-blue-100,.toast.bg-blue-100,.toast-header.bg-blue-100,.progress-bar.bg-blue-100{color:#000}.bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f4f66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-200{color:#9ec5fe}.btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}.alert.alert-blue-200 a:not(.btn),.table-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}.alert.alert-blue-200 .btn:not([class*=btn-outline]),.table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}.badge.bg-blue-200,.toast.bg-blue-200,.toast-header.bg-blue-200,.progress-bar.bg-blue-200{color:#000}.bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23426598'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-300{color:#6ea8fe}.btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}.alert.alert-blue-300 a:not(.btn),.table-blue-300 a:not(.btn){font-weight:700;color:#426598}.alert.alert-blue-300 .btn:not([class*=btn-outline]),.table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-300 a:not(.btn){font-weight:700;color:#2c4366}.badge.bg-blue-300,.toast.bg-blue-300,.toast-header.bg-blue-300,.progress-bar.bg-blue-300{color:#000}.bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23255398'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-400{color:#3d8bfd}.btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}.alert.alert-blue-400 a:not(.btn),.table-blue-400 a:not(.btn){font-weight:700;color:#255398}.alert.alert-blue-400 .btn:not([class*=btn-outline]),.table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-400 a:not(.btn){font-weight:700;color:#183865}.badge.bg-blue-400,.toast.bg-blue-400,.toast-header.bg-blue-400,.progress-bar.bg-blue-400{color:#000}.bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-500{color:#0d6efd}.btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}.alert.alert-blue-500 a:not(.btn),.table-blue-500 a:not(.btn){font-weight:700;color:#084298}.alert.alert-blue-500 .btn:not([class*=btn-outline]),.table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-500 a:not(.btn){font-weight:700;color:#9ec5fe}.badge.bg-blue-500,.toast.bg-blue-500,.toast-header.bg-blue-500,.progress-bar.bg-blue-500{color:#fff}.bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063579'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-600{color:#0a58ca}.btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}.alert.alert-blue-600 a:not(.btn),.table-blue-600 a:not(.btn){font-weight:700;color:#063579}.alert.alert-blue-600 .btn:not([class*=btn-outline]),.table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-600 a:not(.btn){font-weight:700;color:#9dbcea}.badge.bg-blue-600,.toast.bg-blue-600,.toast-header.bg-blue-600,.progress-bar.bg-blue-600{color:#fff}.bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2305285b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-700{color:#084298}.btn.btn-ghost-blue-700:hover{background-color:#0842981f}.alert.alert-blue-700 a:not(.btn),.table-blue-700 a:not(.btn){font-weight:700;color:#05285b}.alert.alert-blue-700 .btn:not([class*=btn-outline]),.table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-700 a:not(.btn){font-weight:700;color:#9cb3d6}.badge.bg-blue-700,.toast.bg-blue-700,.toast-header.bg-blue-700,.progress-bar.bg-blue-700{color:#fff}.bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031a3d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-800{color:#052c65}.btn.btn-ghost-blue-800:hover{background-color:#052c651f}.alert.alert-blue-800 a:not(.btn),.table-blue-800 a:not(.btn){font-weight:700;color:#031a3d}.alert.alert-blue-800 .btn:not([class*=btn-outline]),.table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-800 a:not(.btn){font-weight:700;color:#9babc1}.badge.bg-blue-800,.toast.bg-blue-800,.toast-header.bg-blue-800,.progress-bar.bg-blue-800{color:#fff}.bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23020d1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-blue-900{color:#031633}.btn.btn-ghost-blue-900:hover{background-color:#0316331f}.alert.alert-blue-900 a:not(.btn),.table-blue-900 a:not(.btn){font-weight:700;color:#020d1f}.alert.alert-blue-900 .btn:not([class*=btn-outline]),.table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-blue-900 a:not(.btn){font-weight:700;color:#9aa2ad}.badge.bg-blue-900,.toast.bg-blue-900,.toast-header.bg-blue-900,.progress-bar.bg-blue-900{color:#fff}.bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23536265'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-100{color:#cff4fc}.btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}.alert.alert-cyan-100 a:not(.btn),.table-cyan-100 a:not(.btn){font-weight:700;color:#536265}.alert.alert-cyan-100 .btn:not([class*=btn-outline]),.table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#536265}.badge.bg-cyan-100,.toast.bg-cyan-100,.toast-header.bg-cyan-100,.progress-bar.bg-cyan-100{color:#000}.bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5e64'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-200{color:#9eeaf9}.btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}.alert.alert-cyan-200 a:not(.btn),.table-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}.alert.alert-cyan-200 .btn:not([class*=btn-outline]),.table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}.badge.bg-cyan-200,.toast.bg-cyan-200,.toast-header.bg-cyan-200,.progress-bar.bg-cyan-200{color:#000}.bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c5962'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-300{color:#6edff6}.btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}.alert.alert-cyan-300 a:not(.btn),.table-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}.alert.alert-cyan-300 .btn:not([class*=btn-outline]),.table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}.badge.bg-cyan-300,.toast.bg-cyan-300,.toast-header.bg-cyan-300,.progress-bar.bg-cyan-300{color:#000}.bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23185561'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-400{color:#3dd5f3}.btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}.alert.alert-cyan-400 a:not(.btn),.table-cyan-400 a:not(.btn){font-weight:700;color:#185561}.alert.alert-cyan-400 .btn:not([class*=btn-outline]),.table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#185561}.badge.bg-cyan-400,.toast.bg-cyan-400,.toast-header.bg-cyan-400,.progress-bar.bg-cyan-400{color:#000}.bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-500{color:#0dcaf0}.btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}.alert.alert-cyan-500 a:not(.btn),.table-cyan-500 a:not(.btn){font-weight:700;color:#055160}.alert.alert-cyan-500 .btn:not([class*=btn-outline]),.table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#055160}.badge.bg-cyan-500,.toast.bg-cyan-500,.toast-header.bg-cyan-500,.progress-bar.bg-cyan-500{color:#000}.bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23066173'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-600{color:#0aa2c0}.btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}.alert.alert-cyan-600 a:not(.btn),.table-cyan-600 a:not(.btn){font-weight:700;color:#066173}.alert.alert-cyan-600 .btn:not([class*=btn-outline]),.table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#04414d}.badge.bg-cyan-600,.toast.bg-cyan-600,.toast-header.bg-cyan-600,.progress-bar.bg-cyan-600{color:#000}.bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23054956'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-700{color:#087990}.btn.btn-ghost-cyan-700:hover{background-color:#0879901f}.alert.alert-cyan-700 a:not(.btn),.table-cyan-700 a:not(.btn){font-weight:700;color:#054956}.alert.alert-cyan-700 .btn:not([class*=btn-outline]),.table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#9cc9d3}.badge.bg-cyan-700,.toast.bg-cyan-700,.toast-header.bg-cyan-700,.progress-bar.bg-cyan-700{color:#fff}.bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303313a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-800{color:#055160}.btn.btn-ghost-cyan-800:hover{background-color:#0551601f}.alert.alert-cyan-800 a:not(.btn),.table-cyan-800 a:not(.btn){font-weight:700;color:#03313a}.alert.alert-cyan-800 .btn:not([class*=btn-outline]),.table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#9bb9bf}.badge.bg-cyan-800,.toast.bg-cyan-800,.toast-header.bg-cyan-800,.progress-bar.bg-cyan-800{color:#fff}.bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2302181d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-cyan-900{color:#032830}.btn.btn-ghost-cyan-900:hover{background-color:#0328301f}.alert.alert-cyan-900 a:not(.btn),.table-cyan-900 a:not(.btn){font-weight:700;color:#02181d}.alert.alert-cyan-900 .btn:not([class*=btn-outline]),.table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#9aa9ac}.badge.bg-cyan-900,.toast.bg-cyan-900,.toast-header.bg-cyan-900,.progress-bar.bg-cyan-900{color:#fff}.bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5365'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-100{color:#e0cffc}.btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}.alert.alert-indigo-100 a:not(.btn),.table-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}.alert.alert-indigo-100 .btn:not([class*=btn-outline]),.table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}.badge.bg-indigo-100,.toast.bg-indigo-100,.toast-header.bg-indigo-100,.progress-bar.bg-indigo-100{color:#000}.bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23745f96'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-200{color:#c29ffa}.btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}.alert.alert-indigo-200 a:not(.btn),.table-indigo-200 a:not(.btn){font-weight:700;color:#745f96}.alert.alert-indigo-200 .btn:not([class*=btn-outline]),.table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#4e4064}.badge.bg-indigo-200,.toast.bg-indigo-200,.toast-header.bg-indigo-200,.progress-bar.bg-indigo-200{color:#000}.bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23624394'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-300{color:#a370f7}.btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}.alert.alert-indigo-300 a:not(.btn),.table-indigo-300 a:not(.btn){font-weight:700;color:#624394}.alert.alert-indigo-300 .btn:not([class*=btn-outline]),.table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#412d63}.badge.bg-indigo-300,.toast.bg-indigo-300,.toast-header.bg-indigo-300,.progress-bar.bg-indigo-300{color:#000}.bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23502693'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-400{color:#8540f5}.btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}.alert.alert-indigo-400 a:not(.btn),.table-indigo-400 a:not(.btn){font-weight:700;color:#502693}.alert.alert-indigo-400 .btn:not([class*=btn-outline]),.table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#ceb3fb}.badge.bg-indigo-400,.toast.bg-indigo-400,.toast-header.bg-indigo-400,.progress-bar.bg-indigo-400{color:#fff}.bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-500{color:#6610f2}.btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}.alert.alert-indigo-500 a:not(.btn),.table-indigo-500 a:not(.btn){font-weight:700;color:#3d0a91}.alert.alert-indigo-500 .btn:not([class*=btn-outline]),.table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#c29ffa}.badge.bg-indigo-500,.toast.bg-indigo-500,.toast-header.bg-indigo-500,.progress-bar.bg-indigo-500{color:#fff}.bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23310874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-600{color:#520dc2}.btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}.alert.alert-indigo-600 a:not(.btn),.table-indigo-600 a:not(.btn){font-weight:700;color:#310874}.alert.alert-indigo-600 .btn:not([class*=btn-outline]),.table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#ba9ee7}.badge.bg-indigo-600,.toast.bg-indigo-600,.toast-header.bg-indigo-600,.progress-bar.bg-indigo-600{color:#fff}.bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23250657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-700{color:#3d0a91}.btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}.alert.alert-indigo-700 a:not(.btn),.table-indigo-700 a:not(.btn){font-weight:700;color:#250657}.alert.alert-indigo-700 .btn:not([class*=btn-outline]),.table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#b19dd3}.badge.bg-indigo-700,.toast.bg-indigo-700,.toast-header.bg-indigo-700,.progress-bar.bg-indigo-700{color:#fff}.bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2319043a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-800{color:#290661}.btn.btn-ghost-indigo-800:hover{background-color:#2906611f}.alert.alert-indigo-800 a:not(.btn),.table-indigo-800 a:not(.btn){font-weight:700;color:#19043a}.alert.alert-indigo-800 .btn:not([class*=btn-outline]),.table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#a99bc0}.badge.bg-indigo-800,.toast.bg-indigo-800,.toast-header.bg-indigo-800,.progress-bar.bg-indigo-800{color:#fff}.bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c021d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-indigo-900{color:#140330}.btn.btn-ghost-indigo-900:hover{background-color:#1403301f}.alert.alert-indigo-900 a:not(.btn),.table-indigo-900 a:not(.btn){font-weight:700;color:#0c021d}.alert.alert-indigo-900 .btn:not([class*=btn-outline]),.table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#a19aac}.badge.bg-indigo-900,.toast.bg-indigo-900,.toast-header.bg-indigo-900,.progress-bar.bg-indigo-900{color:#fff}.bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5761'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-100{color:#e2d9f3}.btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}.alert.alert-purple-100 a:not(.btn),.table-purple-100 a:not(.btn){font-weight:700;color:#5a5761}.alert.alert-purple-100 .btn:not([class*=btn-outline]),.table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-100 a:not(.btn){font-weight:700;color:#5a5761}.badge.bg-purple-100,.toast.bg-purple-100,.toast-header.bg-purple-100,.progress-bar.bg-purple-100{color:#000}.bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f485c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-200{color:#c5b3e6}.btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}.alert.alert-purple-200 a:not(.btn),.table-purple-200 a:not(.btn){font-weight:700;color:#4f485c}.alert.alert-purple-200 .btn:not([class*=btn-outline]),.table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-200 a:not(.btn){font-weight:700;color:#4f485c}.badge.bg-purple-200,.toast.bg-purple-200,.toast-header.bg-purple-200,.progress-bar.bg-purple-200{color:#000}.bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23655583'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-300{color:#a98eda}.btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}.alert.alert-purple-300 a:not(.btn),.table-purple-300 a:not(.btn){font-weight:700;color:#655583}.alert.alert-purple-300 .btn:not([class*=btn-outline]),.table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-300 a:not(.btn){font-weight:700;color:#443957}.badge.bg-purple-300,.toast.bg-purple-300,.toast-header.bg-purple-300,.progress-bar.bg-purple-300{color:#000}.bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23543e7b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-400{color:#8c68cd}.btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}.alert.alert-purple-400 a:not(.btn),.table-purple-400 a:not(.btn){font-weight:700;color:#543e7b}.alert.alert-purple-400 .btn:not([class*=btn-outline]),.table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-400 a:not(.btn){font-weight:700;color:#382a52}.badge.bg-purple-400,.toast.bg-purple-400,.toast-header.bg-purple-400,.progress-bar.bg-purple-400{color:#000}.bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-500{color:#6f42c1}.btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}.alert.alert-purple-500 a:not(.btn),.table-purple-500 a:not(.btn){font-weight:700;color:#432874}.alert.alert-purple-500 .btn:not([class*=btn-outline]),.table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-500 a:not(.btn){font-weight:700;color:#c5b3e6}.badge.bg-purple-500,.toast.bg-purple-500,.toast-header.bg-purple-500,.progress-bar.bg-purple-500{color:#fff}.bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2335205c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-600{color:#59359a}.btn.btn-ghost-purple-600:hover{background-color:#59359a1f}.alert.alert-purple-600 a:not(.btn),.table-purple-600 a:not(.btn){font-weight:700;color:#35205c}.alert.alert-purple-600 .btn:not([class*=btn-outline]),.table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-600 a:not(.btn){font-weight:700;color:#bdaed7}.badge.bg-purple-600,.toast.bg-purple-600,.toast-header.bg-purple-600,.progress-bar.bg-purple-600{color:#fff}.bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23281846'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-700{color:#432874}.btn.btn-ghost-purple-700:hover{background-color:#4328741f}.alert.alert-purple-700 a:not(.btn),.table-purple-700 a:not(.btn){font-weight:700;color:#281846}.alert.alert-purple-700 .btn:not([class*=btn-outline]),.table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-700 a:not(.btn){font-weight:700;color:#b4a9c7}.badge.bg-purple-700,.toast.bg-purple-700,.toast-header.bg-purple-700,.progress-bar.bg-purple-700{color:#fff}.bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a102e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-800{color:#2c1a4d}.btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}.alert.alert-purple-800 a:not(.btn),.table-purple-800 a:not(.btn){font-weight:700;color:#1a102e}.alert.alert-purple-800 .btn:not([class*=btn-outline]),.table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-800 a:not(.btn){font-weight:700;color:#aba3b8}.badge.bg-purple-800,.toast.bg-purple-800,.toast-header.bg-purple-800,.progress-bar.bg-purple-800{color:#fff}.bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0817'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-purple-900{color:#160d27}.btn.btn-ghost-purple-900:hover{background-color:#160d271f}.alert.alert-purple-900 a:not(.btn),.table-purple-900 a:not(.btn){font-weight:700;color:#0d0817}.alert.alert-purple-900 .btn:not([class*=btn-outline]),.table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-purple-900 a:not(.btn){font-weight:700;color:#a29ea9}.badge.bg-purple-900,.toast.bg-purple-900,.toast-header.bg-purple-900,.progress-bar.bg-purple-900{color:#fff}.bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2363565c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-100{color:#f7d6e6}.btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}.alert.alert-pink-100 a:not(.btn),.table-pink-100 a:not(.btn){font-weight:700;color:#63565c}.alert.alert-pink-100 .btn:not([class*=btn-outline]),.table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-100 a:not(.btn){font-weight:700;color:#63565c}.badge.bg-pink-100,.toast.bg-pink-100,.toast-header.bg-pink-100,.progress-bar.bg-pink-100{color:#000}.bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604552'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-200{color:#efadce}.btn.btn-ghost-pink-200:hover{background-color:#efadce1f}.alert.alert-pink-200 a:not(.btn),.table-pink-200 a:not(.btn){font-weight:700;color:#604552}.alert.alert-pink-200 .btn:not([class*=btn-outline]),.table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-200 a:not(.btn){font-weight:700;color:#604552}.badge.bg-pink-200,.toast.bg-pink-200,.toast-header.bg-pink-200,.progress-bar.bg-pink-200{color:#000}.bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a506d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-300{color:#e685b5}.btn.btn-ghost-pink-300:hover{background-color:#e685b51f}.alert.alert-pink-300 a:not(.btn),.table-pink-300 a:not(.btn){font-weight:700;color:#8a506d}.alert.alert-pink-300 .btn:not([class*=btn-outline]),.table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-300 a:not(.btn){font-weight:700;color:#5c3548}.badge.bg-pink-300,.toast.bg-pink-300,.toast-header.bg-pink-300,.progress-bar.bg-pink-300{color:#000}.bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2385375e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-400{color:#de5c9d}.btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}.alert.alert-pink-400 a:not(.btn),.table-pink-400 a:not(.btn){font-weight:700;color:#85375e}.alert.alert-pink-400 .btn:not([class*=btn-outline]),.table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-400 a:not(.btn){font-weight:700;color:#59253f}.badge.bg-pink-400,.toast.bg-pink-400,.toast-header.bg-pink-400,.progress-bar.bg-pink-400{color:#000}.bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-500{color:#d63384}.btn.btn-ghost-pink-500:hover{background-color:#d633841f}.alert.alert-pink-500 a:not(.btn),.table-pink-500 a:not(.btn){font-weight:700;color:#801f4f}.alert.alert-pink-500 .btn:not([class*=btn-outline]),.table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-500 a:not(.btn){font-weight:700;color:#efadce}.badge.bg-pink-500,.toast.bg-pink-500,.toast-header.bg-pink-500,.progress-bar.bg-pink-500{color:#fff}.bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23671940'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-600{color:#ab296a}.btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}.alert.alert-pink-600 a:not(.btn),.table-pink-600 a:not(.btn){font-weight:700;color:#671940}.alert.alert-pink-600 .btn:not([class*=btn-outline]),.table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-600 a:not(.btn){font-weight:700;color:#dda9c3}.badge.bg-pink-600,.toast.bg-pink-600,.toast-header.bg-pink-600,.progress-bar.bg-pink-600{color:#fff}.bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d132f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-700{color:#801f4f}.btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}.alert.alert-pink-700 a:not(.btn),.table-pink-700 a:not(.btn){font-weight:700;color:#4d132f}.alert.alert-pink-700 .btn:not([class*=btn-outline]),.table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-700 a:not(.btn){font-weight:700;color:#cca5b9}.badge.bg-pink-700,.toast.bg-pink-700,.toast-header.bg-pink-700,.progress-bar.bg-pink-700{color:#fff}.bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23340c20'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-800{color:#561435}.btn.btn-ghost-pink-800:hover{background-color:#5614351f}.alert.alert-pink-800 a:not(.btn),.table-pink-800 a:not(.btn){font-weight:700;color:#340c20}.alert.alert-pink-800 .btn:not([class*=btn-outline]),.table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-800 a:not(.btn){font-weight:700;color:#bba1ae}.badge.bg-pink-800,.toast.bg-pink-800,.toast-header.bg-pink-800,.progress-bar.bg-pink-800{color:#fff}.bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0610'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}.btn.btn-ghost-pink-900{color:#2b0a1a}.btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}.alert.alert-pink-900 a:not(.btn),.table-pink-900 a:not(.btn){font-weight:700;color:#1a0610}.alert.alert-pink-900 .btn:not([class*=btn-outline]),.table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}.toast.bg-pink-900 a:not(.btn){font-weight:700;color:#aa9da3}.badge.bg-pink-900,.toast.bg-pink-900,.toast-header.bg-pink-900,.progress-bar.bg-pink-900{color:#fff}table td>.progress{min-width:6rem}.small .form-control{font-size:.875rem}:not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}.nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}@media (max-width: 991.98px){.nav-mobile{display:flex}}.nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}.card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#f8f9fa;border-top:1px solid rgba(0,0,0,.125);border-bottom-color:#00000020}.card>.table.table-flush th,.card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}.card>.table.table-flush tr[class]{border-color:#00000020!important}.card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}.header-alert-container .alert{width:100%}@media (min-width: 768px){.header-alert-container .alert{max-width:75%}}@media (min-width: 992px){.header-alert-container .alert{max-width:50%}}span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}table td a{text-decoration:none}table td a:hover{text-decoration:underline}table th a,table th a:hover{color:#212529;text-decoration:none}table td,table th{font-size:.875rem;line-height:1.25;vertical-align:middle}table td.min-width,table th.min-width{width:1%}table td .form-check-input,table th .form-check-input{margin-top:.125em;font-size:1rem}table td .btn-sm,table td .btn-group-sm>.btn,table th .btn-sm,table th .btn-group-sm>.btn{line-height:1}table td p,table th p{margin-bottom:0}table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}table.attr-table th{font-weight:normal;width:25%}div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}@media (min-width: 992px){div.title-container{flex-direction:row}}div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}.controls{margin-bottom:.5rem}@media print{.controls{display:none!important}}.controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}@media (min-width: 992px){.controls .control-group{justify-content:flex-end}}.controls .control-group>*{margin:.25rem}.controls .control-group>*:first-child{margin-left:0}.controls .control-group>*:last-child{margin-right:0}.object-subtitle{display:block;font-size:.875rem;color:#6c757d}@media (min-width: 768px){.object-subtitle{display:inline-block}}.object-subtitle>span{display:block}.object-subtitle>span.separator{display:none}@media (min-width: 768px){.object-subtitle>span,.object-subtitle>span.separator{display:inline-block}}nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}nav.search .search-container{display:flex;width:100%}@media (max-width: 991.98px){nav.search .search-container{display:none}}nav.search .input-group .search-obj-selected{border-color:#e9ecef}nav.search .input-group .dropdown-toggle{color:#000;border-color:#e9ecef;margin-left:0;font-weight:400;line-height:1.5;color:#212529;background-color:#e9ecef;border:1px solid #e9ecef;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}nav.search .input-group .dropdown-toggle:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+nav.search .input-group .dropdown-toggle,nav.search .input-group .dropdown-toggle:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+nav.search .input-group .dropdown-toggle,.btn-check:active+nav.search .input-group .dropdown-toggle,nav.search .input-group .dropdown-toggle:active,nav.search .input-group .dropdown-toggle.active,.show>nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+nav.search .input-group .dropdown-toggle:focus,.btn-check:active+nav.search .input-group .dropdown-toggle:focus,nav.search .input-group .dropdown-toggle:active:focus,nav.search .input-group .dropdown-toggle.active:focus,.show>nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}nav.search .input-group .dropdown-toggle:disabled,nav.search .input-group .dropdown-toggle.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}nav.search .input-group .dropdown-toggle:after{display:none}nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}nav.search .input-group .search-obj-selector .dropdown-item,nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}@media print{main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}.footer{padding:0}.footer .nav-link{padding:.5rem}@media (max-width: 767.98px){.footer{margin-bottom:8rem}}footer.login-footer{height:4rem;margin-top:auto}footer.login-footer .container-fluid,footer.login-footer .container-sm,footer.login-footer .container-md,footer.login-footer .container-lg,footer.login-footer .container-xl,footer.login-footer .container-xxl{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}h1.accordion-item-title,.accordion-item-title.h1,h2.accordion-item-title,.accordion-item-title.h2,h3.accordion-item-title,.accordion-item-title.h3,h4.accordion-item-title,.accordion-item-title.h4,h5.accordion-item-title,.accordion-item-title.h5,h6.accordion-item-title,.accordion-item-title.h6{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}.form-login{width:100%;max-width:330px;padding:15px}.form-login input:focus{z-index:1}.form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}.form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}.navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}nav.nav.nav-pills .nav-item.nav-link:hover{color:#343a40;background-color:#cfe2ff}div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}div.content-container:focus,div.content-container:focus-visible{outline:0}div.content-container div.content{flex:1}@media (max-width: 991.98px){div.content-container{width:100%}}@media print{div.content-container{width:100%!important;margin-left:0!important}}@media (max-width: 768px){.sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}.tooltip{pointer-events:none}span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}.btn{white-space:nowrap}.card{box-shadow:0 .125rem .25rem #00000013}.card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}.card .card-header+.card-body{padding-top:0}.card .card-body.small .form-control,.card .card-body.small .form-select{font-size:.875rem}.card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(0,0,0,.125);opacity:.25}@media print{.card{box-shadow:unset!important}}.form-floating{position:relative}.form-floating>.input-group>.form-control,.form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>.input-group>label{transition:none}}.form-floating>.input-group>.form-control::placeholder{color:transparent}.form-floating>.input-group>.form-control:focus,.form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-select,.form-floating>.choices>.choices__inner,.form-floating>.ss-main span.placeholder,.form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.input-group>.form-control:focus~label,.form-floating>.input-group>.form-control:not(:placeholder-shown)~label,.form-floating>.input-group>.form-select~label,.form-floating>.choices~label,.form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}.form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}.form-object-edit{margin:0 auto;max-width:800px}textarea.form-control[rows="10"]{height:18rem}textarea#id_local_context_data,textarea.markdown,textarea#id_public_key,textarea.form-control[name=csv],textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.card:not(:only-of-type){margin-bottom:1rem}.stat-btn{min-width:3rem}nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}div.paginator>form>div.input-group{width:fit-content}label.required{font-weight:700}label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}table tbody tr.primary{background-color:#337ab726;border-color:#adb5bd}table tbody tr.secondary{background-color:#6c757d26;border-color:#adb5bd}table tbody tr.success{background-color:#19875426;border-color:#adb5bd}table tbody tr.info{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.warning{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.danger{background-color:#dc354526;border-color:#adb5bd}table tbody tr.light{background-color:#f8f9fa26;border-color:#adb5bd}table tbody tr.dark{background-color:#21252926;border-color:#adb5bd}table tbody tr.red{background-color:#dc354526;border-color:#adb5bd}table tbody tr.yellow{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.green{background-color:#19875426;border-color:#adb5bd}table tbody tr.blue{background-color:#0d6efd26;border-color:#adb5bd}table tbody tr.cyan{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.indigo{background-color:#6610f226;border-color:#adb5bd}table tbody tr.purple{background-color:#6f42c126;border-color:#adb5bd}table tbody tr.pink{background-color:#d6338426;border-color:#adb5bd}table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}table .table-badge-group .table-badge:not(.badge){padding:0 .65em}table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}pre.change-data{padding-right:0;padding-left:0}pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}pre.change-data>span.added{background-color:var(--nbx-change-added)}pre.change-data>span.removed{background-color:var(--nbx-change-removed)}pre.change-diff{border-color:transparent}pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}pre.change-diff.change-added{background-color:var(--nbx-change-added)}div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#6c757d}.table-controls{display:flex}@media (min-width: 768px){.table-controls{margin-top:0!important;margin-bottom:0!important}}.table-controls .table-configure{justify-content:flex-start}@media (min-width: 768px){.table-controls .table-configure{justify-content:flex-end}}.table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}.paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}.nav-tabs .nav-link:hover{border-bottom-color:transparent}.nav-tabs .nav-link.active{background-color:#f8f9fa;border-bottom-color:#f8f9fa;transform:translateY(1px)}.tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#f8f9fa;border-bottom:1px solid #dee2e6}@media print{.tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{.masonry{position:static!important;display:block!important;height:unset!important}}@media print{.masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}.record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}.record-depth span:only-of-type,.record-depth span:last-of-type{margin-right:.25rem}.popover.image-preview-popover{max-width:unset}#django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}html[data-netbox-url-name=home] .content-container,html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}html[data-netbox-url-name=login] #django-messages{display:none} diff --git a/netbox/project-static/dist/netbox-print.css b/netbox/project-static/dist/netbox-print.css index a159c81ec..741f7ea74 100644 --- a/netbox/project-static/dist/netbox-print.css +++ b/netbox/project-static/dist/netbox-print.css @@ -1 +1 @@ -@media print{:root{--nbx-body-bg: #fff !important;--nbx-body-color: #000 !important}html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--bs-orange: #fd7e14;--bs-teal: #20c997;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #337ab7;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-red: #dc3545;--bs-yellow: #ffc107;--bs-green: #198754;--bs-blue: #0d6efd;--bs-cyan: #0dcaf0;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}html *,html *:before,html *:after,html[data-netbox-color-mode=dark] *,html[data-netbox-color-mode=dark] *:before,html[data-netbox-color-mode=dark] *:after,html[data-netbox-color-mode=light] *,html[data-netbox-color-mode=light] *:before,html[data-netbox-color-mode=light] *:after{box-sizing:border-box}}@media print and (prefers-reduced-motion: no-preference){html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{scroll-behavior:smooth}}@media print{html body,html[data-netbox-color-mode=dark] body,html[data-netbox-color-mode=light] body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}}@media print{html hr,html[data-netbox-color-mode=dark] hr,html[data-netbox-color-mode=light] hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}}@media print{html hr:not([size]),html[data-netbox-color-mode=dark] hr:not([size]),html[data-netbox-color-mode=light] hr:not([size]){height:1px}}@media print{html h6,html .h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=light] .h6,html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=light] h6,html h5,html .h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=light] .h5,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=light] h5,html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4,html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3,html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2,html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}}@media print{html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{font-size:calc(1.375rem + 1.5vw)}}@media print and (min-width: 1200px){html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{font-size:2.5rem}}@media print{html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2{font-size:calc(1.325rem + .9vw)}}@media print and (min-width: 1200px){html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2{font-size:2rem}}@media print{html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3{font-size:calc(1.3rem + .6vw)}}@media print and (min-width: 1200px){html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3{font-size:1.75rem}}@media print{html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4{font-size:calc(1.275rem + .3vw)}}@media print and (min-width: 1200px){html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4{font-size:1.5rem}}@media print{html h5,html .h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=light] .h5,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=light] h5{font-size:1.25rem}}@media print{html h6,html .h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=light] .h6,html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=light] h6{font-size:1rem}}@media print{html p,html[data-netbox-color-mode=dark] p,html[data-netbox-color-mode=light] p{margin-top:0;margin-bottom:1rem}}@media print{html abbr[title],html abbr[data-bs-original-title],html[data-netbox-color-mode=dark] abbr[title],html[data-netbox-color-mode=dark] abbr[data-bs-original-title],html[data-netbox-color-mode=light] abbr[title],html[data-netbox-color-mode=light] abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}}@media print{html address,html[data-netbox-color-mode=dark] address,html[data-netbox-color-mode=light] address{margin-bottom:1rem;font-style:normal;line-height:inherit}}@media print{html ol,html ul,html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=light] ol,html[data-netbox-color-mode=light] ul{padding-left:2rem}}@media print{html ol,html ul,html dl,html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=dark] dl,html[data-netbox-color-mode=light] ol,html[data-netbox-color-mode=light] ul,html[data-netbox-color-mode=light] dl{margin-top:0;margin-bottom:1rem}}@media print{html ol ol,html ul ul,html ol ul,html ul ol,html[data-netbox-color-mode=dark] ol ol,html[data-netbox-color-mode=dark] ul ul,html[data-netbox-color-mode=dark] ol ul,html[data-netbox-color-mode=dark] ul ol,html[data-netbox-color-mode=light] ol ol,html[data-netbox-color-mode=light] ul ul,html[data-netbox-color-mode=light] ol ul,html[data-netbox-color-mode=light] ul ol{margin-bottom:0}}@media print{html dt,html[data-netbox-color-mode=dark] dt,html[data-netbox-color-mode=light] dt{font-weight:700}}@media print{html dd,html[data-netbox-color-mode=dark] dd,html[data-netbox-color-mode=light] dd{margin-bottom:.5rem;margin-left:0}}@media print{html blockquote,html[data-netbox-color-mode=dark] blockquote,html[data-netbox-color-mode=light] blockquote{margin:0 0 1rem}}@media print{html b,html strong,html[data-netbox-color-mode=dark] b,html[data-netbox-color-mode=dark] strong,html[data-netbox-color-mode=light] b,html[data-netbox-color-mode=light] strong{font-weight:800}}@media print{html small,html .small,html[data-netbox-color-mode=dark] .small,html[data-netbox-color-mode=light] .small,html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=light] small{font-size:.875em}}@media print{html mark,html .mark,html[data-netbox-color-mode=dark] .mark,html[data-netbox-color-mode=light] .mark,html[data-netbox-color-mode=dark] mark,html[data-netbox-color-mode=light] mark{padding:.2em;background-color:#fcf8e3}}@media print{html sub,html sup,html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=dark] sup,html[data-netbox-color-mode=light] sub,html[data-netbox-color-mode=light] sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}}@media print{html sub,html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=light] sub{bottom:-.25em}}@media print{html sup,html[data-netbox-color-mode=dark] sup,html[data-netbox-color-mode=light] sup{top:-.5em}}@media print{html a,html[data-netbox-color-mode=dark] a,html[data-netbox-color-mode=light] a{color:#0d6efd;text-decoration:underline}html a:hover,html[data-netbox-color-mode=dark] a:hover,html[data-netbox-color-mode=light] a:hover{color:#0a58ca}}@media print{html a:not([href]):not([class]),html a:not([href]):not([class]):hover,html[data-netbox-color-mode=dark] a:not([href]):not([class]),html[data-netbox-color-mode=dark] a:not([href]):not([class]):hover,html[data-netbox-color-mode=light] a:not([href]):not([class]),html[data-netbox-color-mode=light] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}}@media print{html pre,html code,html kbd,html samp,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=dark] samp,html[data-netbox-color-mode=light] pre,html[data-netbox-color-mode=light] code,html[data-netbox-color-mode=light] kbd,html[data-netbox-color-mode=light] samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}}@media print{html pre,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=light] pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}html pre code,html[data-netbox-color-mode=dark] pre code,html[data-netbox-color-mode=light] pre code{font-size:inherit;color:inherit;word-break:normal}}@media print{html code,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=light] code{font-size:.875em;color:#212529;word-wrap:break-word}a>html code,a>html[data-netbox-color-mode=dark] code,a>html[data-netbox-color-mode=light] code{color:inherit}}@media print{html kbd,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=light] kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.375rem}html kbd kbd,html[data-netbox-color-mode=dark] kbd kbd,html[data-netbox-color-mode=light] kbd kbd{padding:0;font-size:1em;font-weight:700}}@media print{html figure,html[data-netbox-color-mode=dark] figure,html[data-netbox-color-mode=light] figure{margin:0 0 1rem}}@media print{html img,html svg,html[data-netbox-color-mode=dark] img,html[data-netbox-color-mode=dark] svg,html[data-netbox-color-mode=light] img,html[data-netbox-color-mode=light] svg{vertical-align:middle}}@media print{html table,html[data-netbox-color-mode=dark] table,html[data-netbox-color-mode=light] table{caption-side:bottom;border-collapse:collapse}}@media print{html caption,html[data-netbox-color-mode=dark] caption,html[data-netbox-color-mode=light] caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}}@media print{html th,html[data-netbox-color-mode=dark] th,html[data-netbox-color-mode=light] th{text-align:inherit;text-align:-webkit-match-parent}}@media print{html thead,html tbody,html tfoot,html tr,html td,html th,html[data-netbox-color-mode=dark] thead,html[data-netbox-color-mode=dark] tbody,html[data-netbox-color-mode=dark] tfoot,html[data-netbox-color-mode=dark] tr,html[data-netbox-color-mode=dark] td,html[data-netbox-color-mode=dark] th,html[data-netbox-color-mode=light] thead,html[data-netbox-color-mode=light] tbody,html[data-netbox-color-mode=light] tfoot,html[data-netbox-color-mode=light] tr,html[data-netbox-color-mode=light] td,html[data-netbox-color-mode=light] th{border-color:inherit;border-style:solid;border-width:0}}@media print{html label,html[data-netbox-color-mode=dark] label,html[data-netbox-color-mode=light] label{display:inline-block}}@media print{html button,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=light] button{border-radius:0}}@media print{html button:focus:not(:focus-visible),html[data-netbox-color-mode=dark] button:focus:not(:focus-visible),html[data-netbox-color-mode=light] button:focus:not(:focus-visible){outline:0}}@media print{html input,html button,html select,html optgroup,html textarea,html[data-netbox-color-mode=dark] input,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=dark] optgroup,html[data-netbox-color-mode=dark] textarea,html[data-netbox-color-mode=light] input,html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] select,html[data-netbox-color-mode=light] optgroup,html[data-netbox-color-mode=light] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}}@media print{html button,html select,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] select{text-transform:none}}@media print{html [role=button],html[data-netbox-color-mode=dark] [role=button],html[data-netbox-color-mode=light] [role=button]{cursor:pointer}}@media print{html select,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=light] select{word-wrap:normal}html select:disabled,html[data-netbox-color-mode=dark] select:disabled,html[data-netbox-color-mode=light] select:disabled{opacity:1}}@media print{html [list]::-webkit-calendar-picker-indicator,html[data-netbox-color-mode=dark] [list]::-webkit-calendar-picker-indicator,html[data-netbox-color-mode=light] [list]::-webkit-calendar-picker-indicator{display:none}}@media print{html button,html [type=button],html [type=reset],html [type=submit],html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] [type=button],html[data-netbox-color-mode=dark] [type=reset],html[data-netbox-color-mode=dark] [type=submit],html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] [type=button],html[data-netbox-color-mode=light] [type=reset],html[data-netbox-color-mode=light] [type=submit]{-webkit-appearance:button}html button:not(:disabled),html [type=button]:not(:disabled),html [type=reset]:not(:disabled),html [type=submit]:not(:disabled),html[data-netbox-color-mode=dark] button:not(:disabled),html[data-netbox-color-mode=dark] [type=button]:not(:disabled),html[data-netbox-color-mode=dark] [type=reset]:not(:disabled),html[data-netbox-color-mode=dark] [type=submit]:not(:disabled),html[data-netbox-color-mode=light] button:not(:disabled),html[data-netbox-color-mode=light] [type=button]:not(:disabled),html[data-netbox-color-mode=light] [type=reset]:not(:disabled),html[data-netbox-color-mode=light] [type=submit]:not(:disabled){cursor:pointer}}@media print{html ::-moz-focus-inner,html[data-netbox-color-mode=dark] ::-moz-focus-inner,html[data-netbox-color-mode=light] ::-moz-focus-inner{padding:0;border-style:none}}@media print{html textarea,html[data-netbox-color-mode=dark] textarea,html[data-netbox-color-mode=light] textarea{resize:vertical}}@media print{html fieldset,html[data-netbox-color-mode=dark] fieldset,html[data-netbox-color-mode=light] fieldset{min-width:0;padding:0;margin:0;border:0}}@media print{html legend,html[data-netbox-color-mode=dark] legend,html[data-netbox-color-mode=light] legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}}@media print and (min-width: 1200px){html legend,html[data-netbox-color-mode=dark] legend,html[data-netbox-color-mode=light] legend{font-size:1.5rem}}@media print{html legend+*,html[data-netbox-color-mode=dark] legend+*,html[data-netbox-color-mode=light] legend+*{clear:left}}@media print{html ::-webkit-datetime-edit-fields-wrapper,html ::-webkit-datetime-edit-text,html ::-webkit-datetime-edit-minute,html ::-webkit-datetime-edit-hour-field,html ::-webkit-datetime-edit-day-field,html ::-webkit-datetime-edit-month-field,html ::-webkit-datetime-edit-year-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-year-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-year-field{padding:0}}@media print{html ::-webkit-inner-spin-button,html[data-netbox-color-mode=dark] ::-webkit-inner-spin-button,html[data-netbox-color-mode=light] ::-webkit-inner-spin-button{height:auto}}@media print{html [type=search],html[data-netbox-color-mode=dark] [type=search],html[data-netbox-color-mode=light] [type=search]{outline-offset:-2px;-webkit-appearance:textfield}}@media print{html ::-webkit-search-decoration,html[data-netbox-color-mode=dark] ::-webkit-search-decoration,html[data-netbox-color-mode=light] ::-webkit-search-decoration{-webkit-appearance:none}}@media print{html ::-webkit-color-swatch-wrapper,html[data-netbox-color-mode=dark] ::-webkit-color-swatch-wrapper,html[data-netbox-color-mode=light] ::-webkit-color-swatch-wrapper{padding:0}}@media print{html ::file-selector-button,html[data-netbox-color-mode=dark] ::file-selector-button,html[data-netbox-color-mode=light] ::file-selector-button{font:inherit}}@media print{html ::-webkit-file-upload-button,html[data-netbox-color-mode=dark] ::-webkit-file-upload-button,html[data-netbox-color-mode=light] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}}@media print{html output,html[data-netbox-color-mode=dark] output,html[data-netbox-color-mode=light] output{display:inline-block}}@media print{html iframe,html[data-netbox-color-mode=dark] iframe,html[data-netbox-color-mode=light] iframe{border:0}}@media print{html summary,html[data-netbox-color-mode=dark] summary,html[data-netbox-color-mode=light] summary{display:list-item;cursor:pointer}}@media print{html progress,html[data-netbox-color-mode=dark] progress,html[data-netbox-color-mode=light] progress{vertical-align:baseline}}@media print{html [hidden],html[data-netbox-color-mode=dark] [hidden],html[data-netbox-color-mode=light] [hidden]{display:none!important}}@media print{html .lead,html[data-netbox-color-mode=dark] .lead,html[data-netbox-color-mode=light] .lead{font-size:1.25rem;font-weight:300}}@media print{html .display-1,html[data-netbox-color-mode=dark] .display-1,html[data-netbox-color-mode=light] .display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-1,html[data-netbox-color-mode=dark] .display-1,html[data-netbox-color-mode=light] .display-1{font-size:5rem}}@media print{html .display-2,html[data-netbox-color-mode=dark] .display-2,html[data-netbox-color-mode=light] .display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-2,html[data-netbox-color-mode=dark] .display-2,html[data-netbox-color-mode=light] .display-2{font-size:4.5rem}}@media print{html .display-3,html[data-netbox-color-mode=dark] .display-3,html[data-netbox-color-mode=light] .display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-3,html[data-netbox-color-mode=dark] .display-3,html[data-netbox-color-mode=light] .display-3{font-size:4rem}}@media print{html .display-4,html[data-netbox-color-mode=dark] .display-4,html[data-netbox-color-mode=light] .display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-4,html[data-netbox-color-mode=dark] .display-4,html[data-netbox-color-mode=light] .display-4{font-size:3.5rem}}@media print{html .display-5,html[data-netbox-color-mode=dark] .display-5,html[data-netbox-color-mode=light] .display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-5,html[data-netbox-color-mode=dark] .display-5,html[data-netbox-color-mode=light] .display-5{font-size:3rem}}@media print{html .display-6,html[data-netbox-color-mode=dark] .display-6,html[data-netbox-color-mode=light] .display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-6,html[data-netbox-color-mode=dark] .display-6,html[data-netbox-color-mode=light] .display-6{font-size:2.5rem}}@media print{html .list-unstyled,html[data-netbox-color-mode=dark] .list-unstyled,html[data-netbox-color-mode=light] .list-unstyled{padding-left:0;list-style:none}}@media print{html .list-inline,html[data-netbox-color-mode=dark] .list-inline,html[data-netbox-color-mode=light] .list-inline{padding-left:0;list-style:none}}@media print{html .list-inline-item,html[data-netbox-color-mode=dark] .list-inline-item,html[data-netbox-color-mode=light] .list-inline-item{display:inline-block}html .list-inline-item:not(:last-child),html[data-netbox-color-mode=dark] .list-inline-item:not(:last-child),html[data-netbox-color-mode=light] .list-inline-item:not(:last-child){margin-right:.5rem}}@media print{html .initialism,html[data-netbox-color-mode=dark] .initialism,html[data-netbox-color-mode=light] .initialism{font-size:.875em;text-transform:uppercase}}@media print{html .blockquote,html[data-netbox-color-mode=dark] .blockquote,html[data-netbox-color-mode=light] .blockquote{margin-bottom:1rem;font-size:1.25rem}html .blockquote>:last-child,html[data-netbox-color-mode=dark] .blockquote>:last-child,html[data-netbox-color-mode=light] .blockquote>:last-child{margin-bottom:0}}@media print{html .blockquote-footer,html[data-netbox-color-mode=dark] .blockquote-footer,html[data-netbox-color-mode=light] .blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}html .blockquote-footer:before,html[data-netbox-color-mode=dark] .blockquote-footer:before,html[data-netbox-color-mode=light] .blockquote-footer:before{content:"\2014\a0"}}@media print{html .img-fluid,html[data-netbox-color-mode=dark] .img-fluid,html[data-netbox-color-mode=light] .img-fluid{max-width:100%;height:auto}}@media print{html .img-thumbnail,html[data-netbox-color-mode=dark] .img-thumbnail,html[data-netbox-color-mode=light] .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}}@media print{html .figure,html[data-netbox-color-mode=dark] .figure,html[data-netbox-color-mode=light] .figure{display:inline-block}}@media print{html .figure-img,html[data-netbox-color-mode=dark] .figure-img,html[data-netbox-color-mode=light] .figure-img{margin-bottom:.5rem;line-height:1}}@media print{html .figure-caption,html[data-netbox-color-mode=dark] .figure-caption,html[data-netbox-color-mode=light] .figure-caption{font-size:.875em;color:#6c757d}}@media print{html .container,html .container-fluid,html .container-xxl,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=light] .container-xxl,html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=dark] .container-fluid,html[data-netbox-color-mode=light] .container,html[data-netbox-color-mode=light] .container-fluid{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}}@media print and (min-width: 576px){html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:540px}}@media print and (min-width: 768px){html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:720px}}@media print and (min-width: 992px){html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:960px}}@media print and (min-width: 1200px){html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:1140px}}@media print and (min-width: 1400px){html .container-xxl,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=light] .container-xxl,html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:1320px}}@media print{html .row,html[data-netbox-color-mode=dark] .row,html[data-netbox-color-mode=light] .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}html .row>*,html[data-netbox-color-mode=dark] .row>*,html[data-netbox-color-mode=light] .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}}@media print{html .col,html[data-netbox-color-mode=dark] .col,html[data-netbox-color-mode=light] .col{flex:1 0 0%}}@media print{html .row-cols-auto>*,html[data-netbox-color-mode=dark] .row-cols-auto>*,html[data-netbox-color-mode=light] .row-cols-auto>*{flex:0 0 auto;width:auto}}@media print{html .row-cols-1>*,html[data-netbox-color-mode=dark] .row-cols-1>*,html[data-netbox-color-mode=light] .row-cols-1>*{flex:0 0 auto;width:100%}}@media print{html .row-cols-2>*,html[data-netbox-color-mode=dark] .row-cols-2>*,html[data-netbox-color-mode=light] .row-cols-2>*{flex:0 0 auto;width:50%}}@media print{html .row-cols-3>*,html[data-netbox-color-mode=dark] .row-cols-3>*,html[data-netbox-color-mode=light] .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}}@media print{html .row-cols-4>*,html[data-netbox-color-mode=dark] .row-cols-4>*,html[data-netbox-color-mode=light] .row-cols-4>*{flex:0 0 auto;width:25%}}@media print{html .row-cols-5>*,html[data-netbox-color-mode=dark] .row-cols-5>*,html[data-netbox-color-mode=light] .row-cols-5>*{flex:0 0 auto;width:20%}}@media print{html .row-cols-6>*,html[data-netbox-color-mode=dark] .row-cols-6>*,html[data-netbox-color-mode=light] .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 576px){html .col-sm,html[data-netbox-color-mode=dark] .col-sm,html[data-netbox-color-mode=light] .col-sm{flex:1 0 0%}html .row-cols-sm-auto>*,html[data-netbox-color-mode=dark] .row-cols-sm-auto>*,html[data-netbox-color-mode=light] .row-cols-sm-auto>*{flex:0 0 auto;width:auto}html .row-cols-sm-1>*,html[data-netbox-color-mode=dark] .row-cols-sm-1>*,html[data-netbox-color-mode=light] .row-cols-sm-1>*{flex:0 0 auto;width:100%}html .row-cols-sm-2>*,html[data-netbox-color-mode=dark] .row-cols-sm-2>*,html[data-netbox-color-mode=light] .row-cols-sm-2>*{flex:0 0 auto;width:50%}html .row-cols-sm-3>*,html[data-netbox-color-mode=dark] .row-cols-sm-3>*,html[data-netbox-color-mode=light] .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-sm-4>*,html[data-netbox-color-mode=dark] .row-cols-sm-4>*,html[data-netbox-color-mode=light] .row-cols-sm-4>*{flex:0 0 auto;width:25%}html .row-cols-sm-5>*,html[data-netbox-color-mode=dark] .row-cols-sm-5>*,html[data-netbox-color-mode=light] .row-cols-sm-5>*{flex:0 0 auto;width:20%}html .row-cols-sm-6>*,html[data-netbox-color-mode=dark] .row-cols-sm-6>*,html[data-netbox-color-mode=light] .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 768px){html .col-md,html[data-netbox-color-mode=dark] .col-md,html[data-netbox-color-mode=light] .col-md{flex:1 0 0%}html .row-cols-md-auto>*,html[data-netbox-color-mode=dark] .row-cols-md-auto>*,html[data-netbox-color-mode=light] .row-cols-md-auto>*{flex:0 0 auto;width:auto}html .row-cols-md-1>*,html[data-netbox-color-mode=dark] .row-cols-md-1>*,html[data-netbox-color-mode=light] .row-cols-md-1>*{flex:0 0 auto;width:100%}html .row-cols-md-2>*,html[data-netbox-color-mode=dark] .row-cols-md-2>*,html[data-netbox-color-mode=light] .row-cols-md-2>*{flex:0 0 auto;width:50%}html .row-cols-md-3>*,html[data-netbox-color-mode=dark] .row-cols-md-3>*,html[data-netbox-color-mode=light] .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-md-4>*,html[data-netbox-color-mode=dark] .row-cols-md-4>*,html[data-netbox-color-mode=light] .row-cols-md-4>*{flex:0 0 auto;width:25%}html .row-cols-md-5>*,html[data-netbox-color-mode=dark] .row-cols-md-5>*,html[data-netbox-color-mode=light] .row-cols-md-5>*{flex:0 0 auto;width:20%}html .row-cols-md-6>*,html[data-netbox-color-mode=dark] .row-cols-md-6>*,html[data-netbox-color-mode=light] .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 992px){html .col-lg,html[data-netbox-color-mode=dark] .col-lg,html[data-netbox-color-mode=light] .col-lg{flex:1 0 0%}html .row-cols-lg-auto>*,html[data-netbox-color-mode=dark] .row-cols-lg-auto>*,html[data-netbox-color-mode=light] .row-cols-lg-auto>*{flex:0 0 auto;width:auto}html .row-cols-lg-1>*,html[data-netbox-color-mode=dark] .row-cols-lg-1>*,html[data-netbox-color-mode=light] .row-cols-lg-1>*{flex:0 0 auto;width:100%}html .row-cols-lg-2>*,html[data-netbox-color-mode=dark] .row-cols-lg-2>*,html[data-netbox-color-mode=light] .row-cols-lg-2>*{flex:0 0 auto;width:50%}html .row-cols-lg-3>*,html[data-netbox-color-mode=dark] .row-cols-lg-3>*,html[data-netbox-color-mode=light] .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-lg-4>*,html[data-netbox-color-mode=dark] .row-cols-lg-4>*,html[data-netbox-color-mode=light] .row-cols-lg-4>*{flex:0 0 auto;width:25%}html .row-cols-lg-5>*,html[data-netbox-color-mode=dark] .row-cols-lg-5>*,html[data-netbox-color-mode=light] .row-cols-lg-5>*{flex:0 0 auto;width:20%}html .row-cols-lg-6>*,html[data-netbox-color-mode=dark] .row-cols-lg-6>*,html[data-netbox-color-mode=light] .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 1200px){html .col-xl,html[data-netbox-color-mode=dark] .col-xl,html[data-netbox-color-mode=light] .col-xl{flex:1 0 0%}html .row-cols-xl-auto>*,html[data-netbox-color-mode=dark] .row-cols-xl-auto>*,html[data-netbox-color-mode=light] .row-cols-xl-auto>*{flex:0 0 auto;width:auto}html .row-cols-xl-1>*,html[data-netbox-color-mode=dark] .row-cols-xl-1>*,html[data-netbox-color-mode=light] .row-cols-xl-1>*{flex:0 0 auto;width:100%}html .row-cols-xl-2>*,html[data-netbox-color-mode=dark] .row-cols-xl-2>*,html[data-netbox-color-mode=light] .row-cols-xl-2>*{flex:0 0 auto;width:50%}html .row-cols-xl-3>*,html[data-netbox-color-mode=dark] .row-cols-xl-3>*,html[data-netbox-color-mode=light] .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-xl-4>*,html[data-netbox-color-mode=dark] .row-cols-xl-4>*,html[data-netbox-color-mode=light] .row-cols-xl-4>*{flex:0 0 auto;width:25%}html .row-cols-xl-5>*,html[data-netbox-color-mode=dark] .row-cols-xl-5>*,html[data-netbox-color-mode=light] .row-cols-xl-5>*{flex:0 0 auto;width:20%}html .row-cols-xl-6>*,html[data-netbox-color-mode=dark] .row-cols-xl-6>*,html[data-netbox-color-mode=light] .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 1400px){html .col-xxl,html[data-netbox-color-mode=dark] .col-xxl,html[data-netbox-color-mode=light] .col-xxl{flex:1 0 0%}html .row-cols-xxl-auto>*,html[data-netbox-color-mode=dark] .row-cols-xxl-auto>*,html[data-netbox-color-mode=light] .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}html .row-cols-xxl-1>*,html[data-netbox-color-mode=dark] .row-cols-xxl-1>*,html[data-netbox-color-mode=light] .row-cols-xxl-1>*{flex:0 0 auto;width:100%}html .row-cols-xxl-2>*,html[data-netbox-color-mode=dark] .row-cols-xxl-2>*,html[data-netbox-color-mode=light] .row-cols-xxl-2>*{flex:0 0 auto;width:50%}html .row-cols-xxl-3>*,html[data-netbox-color-mode=dark] .row-cols-xxl-3>*,html[data-netbox-color-mode=light] .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-xxl-4>*,html[data-netbox-color-mode=dark] .row-cols-xxl-4>*,html[data-netbox-color-mode=light] .row-cols-xxl-4>*{flex:0 0 auto;width:25%}html .row-cols-xxl-5>*,html[data-netbox-color-mode=dark] .row-cols-xxl-5>*,html[data-netbox-color-mode=light] .row-cols-xxl-5>*{flex:0 0 auto;width:20%}html .row-cols-xxl-6>*,html[data-netbox-color-mode=dark] .row-cols-xxl-6>*,html[data-netbox-color-mode=light] .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}@media print{html .col-auto,html[data-netbox-color-mode=dark] .col-auto,html[data-netbox-color-mode=light] .col-auto{flex:0 0 auto;width:auto}}@media print{html .col-1,html[data-netbox-color-mode=dark] .col-1,html[data-netbox-color-mode=light] .col-1{flex:0 0 auto;width:8.33333333%}}@media print{html .col-2,html[data-netbox-color-mode=dark] .col-2,html[data-netbox-color-mode=light] .col-2{flex:0 0 auto;width:16.66666667%}}@media print{html .col-3,html[data-netbox-color-mode=dark] .col-3,html[data-netbox-color-mode=light] .col-3{flex:0 0 auto;width:25%}}@media print{html .col-4,html[data-netbox-color-mode=dark] .col-4,html[data-netbox-color-mode=light] .col-4{flex:0 0 auto;width:33.33333333%}}@media print{html .col-5,html[data-netbox-color-mode=dark] .col-5,html[data-netbox-color-mode=light] .col-5{flex:0 0 auto;width:41.66666667%}}@media print{html .col-6,html[data-netbox-color-mode=dark] .col-6,html[data-netbox-color-mode=light] .col-6{flex:0 0 auto;width:50%}}@media print{html .col-7,html[data-netbox-color-mode=dark] .col-7,html[data-netbox-color-mode=light] .col-7{flex:0 0 auto;width:58.33333333%}}@media print{html .col-8,html[data-netbox-color-mode=dark] .col-8,html[data-netbox-color-mode=light] .col-8{flex:0 0 auto;width:66.66666667%}}@media print{html .col-9,html[data-netbox-color-mode=dark] .col-9,html[data-netbox-color-mode=light] .col-9{flex:0 0 auto;width:75%}}@media print{html .col-10,html[data-netbox-color-mode=dark] .col-10,html[data-netbox-color-mode=light] .col-10{flex:0 0 auto;width:83.33333333%}}@media print{html .col-11,html[data-netbox-color-mode=dark] .col-11,html[data-netbox-color-mode=light] .col-11{flex:0 0 auto;width:91.66666667%}}@media print{html .col-12,html[data-netbox-color-mode=dark] .col-12,html[data-netbox-color-mode=light] .col-12{flex:0 0 auto;width:100%}}@media print{html .offset-1,html[data-netbox-color-mode=dark] .offset-1,html[data-netbox-color-mode=light] .offset-1{margin-left:8.33333333%}}@media print{html .offset-2,html[data-netbox-color-mode=dark] .offset-2,html[data-netbox-color-mode=light] .offset-2{margin-left:16.66666667%}}@media print{html .offset-3,html[data-netbox-color-mode=dark] .offset-3,html[data-netbox-color-mode=light] .offset-3{margin-left:25%}}@media print{html .offset-4,html[data-netbox-color-mode=dark] .offset-4,html[data-netbox-color-mode=light] .offset-4{margin-left:33.33333333%}}@media print{html .offset-5,html[data-netbox-color-mode=dark] .offset-5,html[data-netbox-color-mode=light] .offset-5{margin-left:41.66666667%}}@media print{html .offset-6,html[data-netbox-color-mode=dark] .offset-6,html[data-netbox-color-mode=light] .offset-6{margin-left:50%}}@media print{html .offset-7,html[data-netbox-color-mode=dark] .offset-7,html[data-netbox-color-mode=light] .offset-7{margin-left:58.33333333%}}@media print{html .offset-8,html[data-netbox-color-mode=dark] .offset-8,html[data-netbox-color-mode=light] .offset-8{margin-left:66.66666667%}}@media print{html .offset-9,html[data-netbox-color-mode=dark] .offset-9,html[data-netbox-color-mode=light] .offset-9{margin-left:75%}}@media print{html .offset-10,html[data-netbox-color-mode=dark] .offset-10,html[data-netbox-color-mode=light] .offset-10{margin-left:83.33333333%}}@media print{html .offset-11,html[data-netbox-color-mode=dark] .offset-11,html[data-netbox-color-mode=light] .offset-11{margin-left:91.66666667%}}@media print{html .g-0,html .gx-0,html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gx-0,html[data-netbox-color-mode=light] .g-0,html[data-netbox-color-mode=light] .gx-0{--bs-gutter-x: 0}}@media print{html .g-0,html .gy-0,html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gy-0,html[data-netbox-color-mode=light] .g-0,html[data-netbox-color-mode=light] .gy-0{--bs-gutter-y: 0}}@media print{html .g-1,html .gx-1,html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gx-1,html[data-netbox-color-mode=light] .g-1,html[data-netbox-color-mode=light] .gx-1{--bs-gutter-x: .25rem}}@media print{html .g-1,html .gy-1,html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gy-1,html[data-netbox-color-mode=light] .g-1,html[data-netbox-color-mode=light] .gy-1{--bs-gutter-y: .25rem}}@media print{html .g-2,html .gx-2,html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gx-2,html[data-netbox-color-mode=light] .g-2,html[data-netbox-color-mode=light] .gx-2{--bs-gutter-x: .5rem}}@media print{html .g-2,html .gy-2,html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gy-2,html[data-netbox-color-mode=light] .g-2,html[data-netbox-color-mode=light] .gy-2{--bs-gutter-y: .5rem}}@media print{html .g-3,html .gx-3,html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gx-3,html[data-netbox-color-mode=light] .g-3,html[data-netbox-color-mode=light] .gx-3{--bs-gutter-x: 1rem}}@media print{html .g-3,html .gy-3,html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gy-3,html[data-netbox-color-mode=light] .g-3,html[data-netbox-color-mode=light] .gy-3{--bs-gutter-y: 1rem}}@media print{html .g-4,html .gx-4,html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gx-4,html[data-netbox-color-mode=light] .g-4,html[data-netbox-color-mode=light] .gx-4{--bs-gutter-x: 1.5rem}}@media print{html .g-4,html .gy-4,html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gy-4,html[data-netbox-color-mode=light] .g-4,html[data-netbox-color-mode=light] .gy-4{--bs-gutter-y: 1.5rem}}@media print{html .g-5,html .gx-5,html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gx-5,html[data-netbox-color-mode=light] .g-5,html[data-netbox-color-mode=light] .gx-5{--bs-gutter-x: 3rem}}@media print{html .g-5,html .gy-5,html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gy-5,html[data-netbox-color-mode=light] .g-5,html[data-netbox-color-mode=light] .gy-5{--bs-gutter-y: 3rem}}@media print and (min-width: 576px){html .col-sm-auto,html[data-netbox-color-mode=dark] .col-sm-auto,html[data-netbox-color-mode=light] .col-sm-auto{flex:0 0 auto;width:auto}html .col-sm-1,html[data-netbox-color-mode=dark] .col-sm-1,html[data-netbox-color-mode=light] .col-sm-1{flex:0 0 auto;width:8.33333333%}html .col-sm-2,html[data-netbox-color-mode=dark] .col-sm-2,html[data-netbox-color-mode=light] .col-sm-2{flex:0 0 auto;width:16.66666667%}html .col-sm-3,html[data-netbox-color-mode=dark] .col-sm-3,html[data-netbox-color-mode=light] .col-sm-3{flex:0 0 auto;width:25%}html .col-sm-4,html[data-netbox-color-mode=dark] .col-sm-4,html[data-netbox-color-mode=light] .col-sm-4{flex:0 0 auto;width:33.33333333%}html .col-sm-5,html[data-netbox-color-mode=dark] .col-sm-5,html[data-netbox-color-mode=light] .col-sm-5{flex:0 0 auto;width:41.66666667%}html .col-sm-6,html[data-netbox-color-mode=dark] .col-sm-6,html[data-netbox-color-mode=light] .col-sm-6{flex:0 0 auto;width:50%}html .col-sm-7,html[data-netbox-color-mode=dark] .col-sm-7,html[data-netbox-color-mode=light] .col-sm-7{flex:0 0 auto;width:58.33333333%}html .col-sm-8,html[data-netbox-color-mode=dark] .col-sm-8,html[data-netbox-color-mode=light] .col-sm-8{flex:0 0 auto;width:66.66666667%}html .col-sm-9,html[data-netbox-color-mode=dark] .col-sm-9,html[data-netbox-color-mode=light] .col-sm-9{flex:0 0 auto;width:75%}html .col-sm-10,html[data-netbox-color-mode=dark] .col-sm-10,html[data-netbox-color-mode=light] .col-sm-10{flex:0 0 auto;width:83.33333333%}html .col-sm-11,html[data-netbox-color-mode=dark] .col-sm-11,html[data-netbox-color-mode=light] .col-sm-11{flex:0 0 auto;width:91.66666667%}html .col-sm-12,html[data-netbox-color-mode=dark] .col-sm-12,html[data-netbox-color-mode=light] .col-sm-12{flex:0 0 auto;width:100%}html .offset-sm-0,html[data-netbox-color-mode=dark] .offset-sm-0,html[data-netbox-color-mode=light] .offset-sm-0{margin-left:0}html .offset-sm-1,html[data-netbox-color-mode=dark] .offset-sm-1,html[data-netbox-color-mode=light] .offset-sm-1{margin-left:8.33333333%}html .offset-sm-2,html[data-netbox-color-mode=dark] .offset-sm-2,html[data-netbox-color-mode=light] .offset-sm-2{margin-left:16.66666667%}html .offset-sm-3,html[data-netbox-color-mode=dark] .offset-sm-3,html[data-netbox-color-mode=light] .offset-sm-3{margin-left:25%}html .offset-sm-4,html[data-netbox-color-mode=dark] .offset-sm-4,html[data-netbox-color-mode=light] .offset-sm-4{margin-left:33.33333333%}html .offset-sm-5,html[data-netbox-color-mode=dark] .offset-sm-5,html[data-netbox-color-mode=light] .offset-sm-5{margin-left:41.66666667%}html .offset-sm-6,html[data-netbox-color-mode=dark] .offset-sm-6,html[data-netbox-color-mode=light] .offset-sm-6{margin-left:50%}html .offset-sm-7,html[data-netbox-color-mode=dark] .offset-sm-7,html[data-netbox-color-mode=light] .offset-sm-7{margin-left:58.33333333%}html .offset-sm-8,html[data-netbox-color-mode=dark] .offset-sm-8,html[data-netbox-color-mode=light] .offset-sm-8{margin-left:66.66666667%}html .offset-sm-9,html[data-netbox-color-mode=dark] .offset-sm-9,html[data-netbox-color-mode=light] .offset-sm-9{margin-left:75%}html .offset-sm-10,html[data-netbox-color-mode=dark] .offset-sm-10,html[data-netbox-color-mode=light] .offset-sm-10{margin-left:83.33333333%}html .offset-sm-11,html[data-netbox-color-mode=dark] .offset-sm-11,html[data-netbox-color-mode=light] .offset-sm-11{margin-left:91.66666667%}html .g-sm-0,html .gx-sm-0,html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gx-sm-0,html[data-netbox-color-mode=light] .g-sm-0,html[data-netbox-color-mode=light] .gx-sm-0{--bs-gutter-x: 0}html .g-sm-0,html .gy-sm-0,html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gy-sm-0,html[data-netbox-color-mode=light] .g-sm-0,html[data-netbox-color-mode=light] .gy-sm-0{--bs-gutter-y: 0}html .g-sm-1,html .gx-sm-1,html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gx-sm-1,html[data-netbox-color-mode=light] .g-sm-1,html[data-netbox-color-mode=light] .gx-sm-1{--bs-gutter-x: .25rem}html .g-sm-1,html .gy-sm-1,html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gy-sm-1,html[data-netbox-color-mode=light] .g-sm-1,html[data-netbox-color-mode=light] .gy-sm-1{--bs-gutter-y: .25rem}html .g-sm-2,html .gx-sm-2,html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gx-sm-2,html[data-netbox-color-mode=light] .g-sm-2,html[data-netbox-color-mode=light] .gx-sm-2{--bs-gutter-x: .5rem}html .g-sm-2,html .gy-sm-2,html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gy-sm-2,html[data-netbox-color-mode=light] .g-sm-2,html[data-netbox-color-mode=light] .gy-sm-2{--bs-gutter-y: .5rem}html .g-sm-3,html .gx-sm-3,html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gx-sm-3,html[data-netbox-color-mode=light] .g-sm-3,html[data-netbox-color-mode=light] .gx-sm-3{--bs-gutter-x: 1rem}html .g-sm-3,html .gy-sm-3,html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gy-sm-3,html[data-netbox-color-mode=light] .g-sm-3,html[data-netbox-color-mode=light] .gy-sm-3{--bs-gutter-y: 1rem}html .g-sm-4,html .gx-sm-4,html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gx-sm-4,html[data-netbox-color-mode=light] .g-sm-4,html[data-netbox-color-mode=light] .gx-sm-4{--bs-gutter-x: 1.5rem}html .g-sm-4,html .gy-sm-4,html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gy-sm-4,html[data-netbox-color-mode=light] .g-sm-4,html[data-netbox-color-mode=light] .gy-sm-4{--bs-gutter-y: 1.5rem}html .g-sm-5,html .gx-sm-5,html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gx-sm-5,html[data-netbox-color-mode=light] .g-sm-5,html[data-netbox-color-mode=light] .gx-sm-5{--bs-gutter-x: 3rem}html .g-sm-5,html .gy-sm-5,html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gy-sm-5,html[data-netbox-color-mode=light] .g-sm-5,html[data-netbox-color-mode=light] .gy-sm-5{--bs-gutter-y: 3rem}}@media print and (min-width: 768px){html .col-md-auto,html[data-netbox-color-mode=dark] .col-md-auto,html[data-netbox-color-mode=light] .col-md-auto{flex:0 0 auto;width:auto}html .col-md-1,html[data-netbox-color-mode=dark] .col-md-1,html[data-netbox-color-mode=light] .col-md-1{flex:0 0 auto;width:8.33333333%}html .col-md-2,html[data-netbox-color-mode=dark] .col-md-2,html[data-netbox-color-mode=light] .col-md-2{flex:0 0 auto;width:16.66666667%}html .col-md-3,html[data-netbox-color-mode=dark] .col-md-3,html[data-netbox-color-mode=light] .col-md-3{flex:0 0 auto;width:25%}html .col-md-4,html[data-netbox-color-mode=dark] .col-md-4,html[data-netbox-color-mode=light] .col-md-4{flex:0 0 auto;width:33.33333333%}html .col-md-5,html[data-netbox-color-mode=dark] .col-md-5,html[data-netbox-color-mode=light] .col-md-5{flex:0 0 auto;width:41.66666667%}html .col-md-6,html[data-netbox-color-mode=dark] .col-md-6,html[data-netbox-color-mode=light] .col-md-6{flex:0 0 auto;width:50%}html .col-md-7,html[data-netbox-color-mode=dark] .col-md-7,html[data-netbox-color-mode=light] .col-md-7{flex:0 0 auto;width:58.33333333%}html .col-md-8,html[data-netbox-color-mode=dark] .col-md-8,html[data-netbox-color-mode=light] .col-md-8{flex:0 0 auto;width:66.66666667%}html .col-md-9,html[data-netbox-color-mode=dark] .col-md-9,html[data-netbox-color-mode=light] .col-md-9{flex:0 0 auto;width:75%}html .col-md-10,html[data-netbox-color-mode=dark] .col-md-10,html[data-netbox-color-mode=light] .col-md-10{flex:0 0 auto;width:83.33333333%}html .col-md-11,html[data-netbox-color-mode=dark] .col-md-11,html[data-netbox-color-mode=light] .col-md-11{flex:0 0 auto;width:91.66666667%}html .col-md-12,html[data-netbox-color-mode=dark] .col-md-12,html[data-netbox-color-mode=light] .col-md-12{flex:0 0 auto;width:100%}html .offset-md-0,html[data-netbox-color-mode=dark] .offset-md-0,html[data-netbox-color-mode=light] .offset-md-0{margin-left:0}html .offset-md-1,html[data-netbox-color-mode=dark] .offset-md-1,html[data-netbox-color-mode=light] .offset-md-1{margin-left:8.33333333%}html .offset-md-2,html[data-netbox-color-mode=dark] .offset-md-2,html[data-netbox-color-mode=light] .offset-md-2{margin-left:16.66666667%}html .offset-md-3,html[data-netbox-color-mode=dark] .offset-md-3,html[data-netbox-color-mode=light] .offset-md-3{margin-left:25%}html .offset-md-4,html[data-netbox-color-mode=dark] .offset-md-4,html[data-netbox-color-mode=light] .offset-md-4{margin-left:33.33333333%}html .offset-md-5,html[data-netbox-color-mode=dark] .offset-md-5,html[data-netbox-color-mode=light] .offset-md-5{margin-left:41.66666667%}html .offset-md-6,html[data-netbox-color-mode=dark] .offset-md-6,html[data-netbox-color-mode=light] .offset-md-6{margin-left:50%}html .offset-md-7,html[data-netbox-color-mode=dark] .offset-md-7,html[data-netbox-color-mode=light] .offset-md-7{margin-left:58.33333333%}html .offset-md-8,html[data-netbox-color-mode=dark] .offset-md-8,html[data-netbox-color-mode=light] .offset-md-8{margin-left:66.66666667%}html .offset-md-9,html[data-netbox-color-mode=dark] .offset-md-9,html[data-netbox-color-mode=light] .offset-md-9{margin-left:75%}html .offset-md-10,html[data-netbox-color-mode=dark] .offset-md-10,html[data-netbox-color-mode=light] .offset-md-10{margin-left:83.33333333%}html .offset-md-11,html[data-netbox-color-mode=dark] .offset-md-11,html[data-netbox-color-mode=light] .offset-md-11{margin-left:91.66666667%}html .g-md-0,html .gx-md-0,html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gx-md-0,html[data-netbox-color-mode=light] .g-md-0,html[data-netbox-color-mode=light] .gx-md-0{--bs-gutter-x: 0}html .g-md-0,html .gy-md-0,html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gy-md-0,html[data-netbox-color-mode=light] .g-md-0,html[data-netbox-color-mode=light] .gy-md-0{--bs-gutter-y: 0}html .g-md-1,html .gx-md-1,html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gx-md-1,html[data-netbox-color-mode=light] .g-md-1,html[data-netbox-color-mode=light] .gx-md-1{--bs-gutter-x: .25rem}html .g-md-1,html .gy-md-1,html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gy-md-1,html[data-netbox-color-mode=light] .g-md-1,html[data-netbox-color-mode=light] .gy-md-1{--bs-gutter-y: .25rem}html .g-md-2,html .gx-md-2,html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gx-md-2,html[data-netbox-color-mode=light] .g-md-2,html[data-netbox-color-mode=light] .gx-md-2{--bs-gutter-x: .5rem}html .g-md-2,html .gy-md-2,html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gy-md-2,html[data-netbox-color-mode=light] .g-md-2,html[data-netbox-color-mode=light] .gy-md-2{--bs-gutter-y: .5rem}html .g-md-3,html .gx-md-3,html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gx-md-3,html[data-netbox-color-mode=light] .g-md-3,html[data-netbox-color-mode=light] .gx-md-3{--bs-gutter-x: 1rem}html .g-md-3,html .gy-md-3,html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gy-md-3,html[data-netbox-color-mode=light] .g-md-3,html[data-netbox-color-mode=light] .gy-md-3{--bs-gutter-y: 1rem}html .g-md-4,html .gx-md-4,html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gx-md-4,html[data-netbox-color-mode=light] .g-md-4,html[data-netbox-color-mode=light] .gx-md-4{--bs-gutter-x: 1.5rem}html .g-md-4,html .gy-md-4,html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gy-md-4,html[data-netbox-color-mode=light] .g-md-4,html[data-netbox-color-mode=light] .gy-md-4{--bs-gutter-y: 1.5rem}html .g-md-5,html .gx-md-5,html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gx-md-5,html[data-netbox-color-mode=light] .g-md-5,html[data-netbox-color-mode=light] .gx-md-5{--bs-gutter-x: 3rem}html .g-md-5,html .gy-md-5,html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gy-md-5,html[data-netbox-color-mode=light] .g-md-5,html[data-netbox-color-mode=light] .gy-md-5{--bs-gutter-y: 3rem}}@media print and (min-width: 992px){html .col-lg-auto,html[data-netbox-color-mode=dark] .col-lg-auto,html[data-netbox-color-mode=light] .col-lg-auto{flex:0 0 auto;width:auto}html .col-lg-1,html[data-netbox-color-mode=dark] .col-lg-1,html[data-netbox-color-mode=light] .col-lg-1{flex:0 0 auto;width:8.33333333%}html .col-lg-2,html[data-netbox-color-mode=dark] .col-lg-2,html[data-netbox-color-mode=light] .col-lg-2{flex:0 0 auto;width:16.66666667%}html .col-lg-3,html[data-netbox-color-mode=dark] .col-lg-3,html[data-netbox-color-mode=light] .col-lg-3{flex:0 0 auto;width:25%}html .col-lg-4,html[data-netbox-color-mode=dark] .col-lg-4,html[data-netbox-color-mode=light] .col-lg-4{flex:0 0 auto;width:33.33333333%}html .col-lg-5,html[data-netbox-color-mode=dark] .col-lg-5,html[data-netbox-color-mode=light] .col-lg-5{flex:0 0 auto;width:41.66666667%}html .col-lg-6,html[data-netbox-color-mode=dark] .col-lg-6,html[data-netbox-color-mode=light] .col-lg-6{flex:0 0 auto;width:50%}html .col-lg-7,html[data-netbox-color-mode=dark] .col-lg-7,html[data-netbox-color-mode=light] .col-lg-7{flex:0 0 auto;width:58.33333333%}html .col-lg-8,html[data-netbox-color-mode=dark] .col-lg-8,html[data-netbox-color-mode=light] .col-lg-8{flex:0 0 auto;width:66.66666667%}html .col-lg-9,html[data-netbox-color-mode=dark] .col-lg-9,html[data-netbox-color-mode=light] .col-lg-9{flex:0 0 auto;width:75%}html .col-lg-10,html[data-netbox-color-mode=dark] .col-lg-10,html[data-netbox-color-mode=light] .col-lg-10{flex:0 0 auto;width:83.33333333%}html .col-lg-11,html[data-netbox-color-mode=dark] .col-lg-11,html[data-netbox-color-mode=light] .col-lg-11{flex:0 0 auto;width:91.66666667%}html .col-lg-12,html[data-netbox-color-mode=dark] .col-lg-12,html[data-netbox-color-mode=light] .col-lg-12{flex:0 0 auto;width:100%}html .offset-lg-0,html[data-netbox-color-mode=dark] .offset-lg-0,html[data-netbox-color-mode=light] .offset-lg-0{margin-left:0}html .offset-lg-1,html[data-netbox-color-mode=dark] .offset-lg-1,html[data-netbox-color-mode=light] .offset-lg-1{margin-left:8.33333333%}html .offset-lg-2,html[data-netbox-color-mode=dark] .offset-lg-2,html[data-netbox-color-mode=light] .offset-lg-2{margin-left:16.66666667%}html .offset-lg-3,html[data-netbox-color-mode=dark] .offset-lg-3,html[data-netbox-color-mode=light] .offset-lg-3{margin-left:25%}html .offset-lg-4,html[data-netbox-color-mode=dark] .offset-lg-4,html[data-netbox-color-mode=light] .offset-lg-4{margin-left:33.33333333%}html .offset-lg-5,html[data-netbox-color-mode=dark] .offset-lg-5,html[data-netbox-color-mode=light] .offset-lg-5{margin-left:41.66666667%}html .offset-lg-6,html[data-netbox-color-mode=dark] .offset-lg-6,html[data-netbox-color-mode=light] .offset-lg-6{margin-left:50%}html .offset-lg-7,html[data-netbox-color-mode=dark] .offset-lg-7,html[data-netbox-color-mode=light] .offset-lg-7{margin-left:58.33333333%}html .offset-lg-8,html[data-netbox-color-mode=dark] .offset-lg-8,html[data-netbox-color-mode=light] .offset-lg-8{margin-left:66.66666667%}html .offset-lg-9,html[data-netbox-color-mode=dark] .offset-lg-9,html[data-netbox-color-mode=light] .offset-lg-9{margin-left:75%}html .offset-lg-10,html[data-netbox-color-mode=dark] .offset-lg-10,html[data-netbox-color-mode=light] .offset-lg-10{margin-left:83.33333333%}html .offset-lg-11,html[data-netbox-color-mode=dark] .offset-lg-11,html[data-netbox-color-mode=light] .offset-lg-11{margin-left:91.66666667%}html .g-lg-0,html .gx-lg-0,html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gx-lg-0,html[data-netbox-color-mode=light] .g-lg-0,html[data-netbox-color-mode=light] .gx-lg-0{--bs-gutter-x: 0}html .g-lg-0,html .gy-lg-0,html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gy-lg-0,html[data-netbox-color-mode=light] .g-lg-0,html[data-netbox-color-mode=light] .gy-lg-0{--bs-gutter-y: 0}html .g-lg-1,html .gx-lg-1,html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gx-lg-1,html[data-netbox-color-mode=light] .g-lg-1,html[data-netbox-color-mode=light] .gx-lg-1{--bs-gutter-x: .25rem}html .g-lg-1,html .gy-lg-1,html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gy-lg-1,html[data-netbox-color-mode=light] .g-lg-1,html[data-netbox-color-mode=light] .gy-lg-1{--bs-gutter-y: .25rem}html .g-lg-2,html .gx-lg-2,html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gx-lg-2,html[data-netbox-color-mode=light] .g-lg-2,html[data-netbox-color-mode=light] .gx-lg-2{--bs-gutter-x: .5rem}html .g-lg-2,html .gy-lg-2,html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gy-lg-2,html[data-netbox-color-mode=light] .g-lg-2,html[data-netbox-color-mode=light] .gy-lg-2{--bs-gutter-y: .5rem}html .g-lg-3,html .gx-lg-3,html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gx-lg-3,html[data-netbox-color-mode=light] .g-lg-3,html[data-netbox-color-mode=light] .gx-lg-3{--bs-gutter-x: 1rem}html .g-lg-3,html .gy-lg-3,html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gy-lg-3,html[data-netbox-color-mode=light] .g-lg-3,html[data-netbox-color-mode=light] .gy-lg-3{--bs-gutter-y: 1rem}html .g-lg-4,html .gx-lg-4,html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gx-lg-4,html[data-netbox-color-mode=light] .g-lg-4,html[data-netbox-color-mode=light] .gx-lg-4{--bs-gutter-x: 1.5rem}html .g-lg-4,html .gy-lg-4,html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gy-lg-4,html[data-netbox-color-mode=light] .g-lg-4,html[data-netbox-color-mode=light] .gy-lg-4{--bs-gutter-y: 1.5rem}html .g-lg-5,html .gx-lg-5,html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gx-lg-5,html[data-netbox-color-mode=light] .g-lg-5,html[data-netbox-color-mode=light] .gx-lg-5{--bs-gutter-x: 3rem}html .g-lg-5,html .gy-lg-5,html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gy-lg-5,html[data-netbox-color-mode=light] .g-lg-5,html[data-netbox-color-mode=light] .gy-lg-5{--bs-gutter-y: 3rem}}@media print and (min-width: 1200px){html .col-xl-auto,html[data-netbox-color-mode=dark] .col-xl-auto,html[data-netbox-color-mode=light] .col-xl-auto{flex:0 0 auto;width:auto}html .col-xl-1,html[data-netbox-color-mode=dark] .col-xl-1,html[data-netbox-color-mode=light] .col-xl-1{flex:0 0 auto;width:8.33333333%}html .col-xl-2,html[data-netbox-color-mode=dark] .col-xl-2,html[data-netbox-color-mode=light] .col-xl-2{flex:0 0 auto;width:16.66666667%}html .col-xl-3,html[data-netbox-color-mode=dark] .col-xl-3,html[data-netbox-color-mode=light] .col-xl-3{flex:0 0 auto;width:25%}html .col-xl-4,html[data-netbox-color-mode=dark] .col-xl-4,html[data-netbox-color-mode=light] .col-xl-4{flex:0 0 auto;width:33.33333333%}html .col-xl-5,html[data-netbox-color-mode=dark] .col-xl-5,html[data-netbox-color-mode=light] .col-xl-5{flex:0 0 auto;width:41.66666667%}html .col-xl-6,html[data-netbox-color-mode=dark] .col-xl-6,html[data-netbox-color-mode=light] .col-xl-6{flex:0 0 auto;width:50%}html .col-xl-7,html[data-netbox-color-mode=dark] .col-xl-7,html[data-netbox-color-mode=light] .col-xl-7{flex:0 0 auto;width:58.33333333%}html .col-xl-8,html[data-netbox-color-mode=dark] .col-xl-8,html[data-netbox-color-mode=light] .col-xl-8{flex:0 0 auto;width:66.66666667%}html .col-xl-9,html[data-netbox-color-mode=dark] .col-xl-9,html[data-netbox-color-mode=light] .col-xl-9{flex:0 0 auto;width:75%}html .col-xl-10,html[data-netbox-color-mode=dark] .col-xl-10,html[data-netbox-color-mode=light] .col-xl-10{flex:0 0 auto;width:83.33333333%}html .col-xl-11,html[data-netbox-color-mode=dark] .col-xl-11,html[data-netbox-color-mode=light] .col-xl-11{flex:0 0 auto;width:91.66666667%}html .col-xl-12,html[data-netbox-color-mode=dark] .col-xl-12,html[data-netbox-color-mode=light] .col-xl-12{flex:0 0 auto;width:100%}html .offset-xl-0,html[data-netbox-color-mode=dark] .offset-xl-0,html[data-netbox-color-mode=light] .offset-xl-0{margin-left:0}html .offset-xl-1,html[data-netbox-color-mode=dark] .offset-xl-1,html[data-netbox-color-mode=light] .offset-xl-1{margin-left:8.33333333%}html .offset-xl-2,html[data-netbox-color-mode=dark] .offset-xl-2,html[data-netbox-color-mode=light] .offset-xl-2{margin-left:16.66666667%}html .offset-xl-3,html[data-netbox-color-mode=dark] .offset-xl-3,html[data-netbox-color-mode=light] .offset-xl-3{margin-left:25%}html .offset-xl-4,html[data-netbox-color-mode=dark] .offset-xl-4,html[data-netbox-color-mode=light] .offset-xl-4{margin-left:33.33333333%}html .offset-xl-5,html[data-netbox-color-mode=dark] .offset-xl-5,html[data-netbox-color-mode=light] .offset-xl-5{margin-left:41.66666667%}html .offset-xl-6,html[data-netbox-color-mode=dark] .offset-xl-6,html[data-netbox-color-mode=light] .offset-xl-6{margin-left:50%}html .offset-xl-7,html[data-netbox-color-mode=dark] .offset-xl-7,html[data-netbox-color-mode=light] .offset-xl-7{margin-left:58.33333333%}html .offset-xl-8,html[data-netbox-color-mode=dark] .offset-xl-8,html[data-netbox-color-mode=light] .offset-xl-8{margin-left:66.66666667%}html .offset-xl-9,html[data-netbox-color-mode=dark] .offset-xl-9,html[data-netbox-color-mode=light] .offset-xl-9{margin-left:75%}html .offset-xl-10,html[data-netbox-color-mode=dark] .offset-xl-10,html[data-netbox-color-mode=light] .offset-xl-10{margin-left:83.33333333%}html .offset-xl-11,html[data-netbox-color-mode=dark] .offset-xl-11,html[data-netbox-color-mode=light] .offset-xl-11{margin-left:91.66666667%}html .g-xl-0,html .gx-xl-0,html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gx-xl-0,html[data-netbox-color-mode=light] .g-xl-0,html[data-netbox-color-mode=light] .gx-xl-0{--bs-gutter-x: 0}html .g-xl-0,html .gy-xl-0,html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gy-xl-0,html[data-netbox-color-mode=light] .g-xl-0,html[data-netbox-color-mode=light] .gy-xl-0{--bs-gutter-y: 0}html .g-xl-1,html .gx-xl-1,html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gx-xl-1,html[data-netbox-color-mode=light] .g-xl-1,html[data-netbox-color-mode=light] .gx-xl-1{--bs-gutter-x: .25rem}html .g-xl-1,html .gy-xl-1,html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gy-xl-1,html[data-netbox-color-mode=light] .g-xl-1,html[data-netbox-color-mode=light] .gy-xl-1{--bs-gutter-y: .25rem}html .g-xl-2,html .gx-xl-2,html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gx-xl-2,html[data-netbox-color-mode=light] .g-xl-2,html[data-netbox-color-mode=light] .gx-xl-2{--bs-gutter-x: .5rem}html .g-xl-2,html .gy-xl-2,html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gy-xl-2,html[data-netbox-color-mode=light] .g-xl-2,html[data-netbox-color-mode=light] .gy-xl-2{--bs-gutter-y: .5rem}html .g-xl-3,html .gx-xl-3,html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gx-xl-3,html[data-netbox-color-mode=light] .g-xl-3,html[data-netbox-color-mode=light] .gx-xl-3{--bs-gutter-x: 1rem}html .g-xl-3,html .gy-xl-3,html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gy-xl-3,html[data-netbox-color-mode=light] .g-xl-3,html[data-netbox-color-mode=light] .gy-xl-3{--bs-gutter-y: 1rem}html .g-xl-4,html .gx-xl-4,html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gx-xl-4,html[data-netbox-color-mode=light] .g-xl-4,html[data-netbox-color-mode=light] .gx-xl-4{--bs-gutter-x: 1.5rem}html .g-xl-4,html .gy-xl-4,html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gy-xl-4,html[data-netbox-color-mode=light] .g-xl-4,html[data-netbox-color-mode=light] .gy-xl-4{--bs-gutter-y: 1.5rem}html .g-xl-5,html .gx-xl-5,html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gx-xl-5,html[data-netbox-color-mode=light] .g-xl-5,html[data-netbox-color-mode=light] .gx-xl-5{--bs-gutter-x: 3rem}html .g-xl-5,html .gy-xl-5,html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gy-xl-5,html[data-netbox-color-mode=light] .g-xl-5,html[data-netbox-color-mode=light] .gy-xl-5{--bs-gutter-y: 3rem}}@media print and (min-width: 1400px){html .col-xxl-auto,html[data-netbox-color-mode=dark] .col-xxl-auto,html[data-netbox-color-mode=light] .col-xxl-auto{flex:0 0 auto;width:auto}html .col-xxl-1,html[data-netbox-color-mode=dark] .col-xxl-1,html[data-netbox-color-mode=light] .col-xxl-1{flex:0 0 auto;width:8.33333333%}html .col-xxl-2,html[data-netbox-color-mode=dark] .col-xxl-2,html[data-netbox-color-mode=light] .col-xxl-2{flex:0 0 auto;width:16.66666667%}html .col-xxl-3,html[data-netbox-color-mode=dark] .col-xxl-3,html[data-netbox-color-mode=light] .col-xxl-3{flex:0 0 auto;width:25%}html .col-xxl-4,html[data-netbox-color-mode=dark] .col-xxl-4,html[data-netbox-color-mode=light] .col-xxl-4{flex:0 0 auto;width:33.33333333%}html .col-xxl-5,html[data-netbox-color-mode=dark] .col-xxl-5,html[data-netbox-color-mode=light] .col-xxl-5{flex:0 0 auto;width:41.66666667%}html .col-xxl-6,html[data-netbox-color-mode=dark] .col-xxl-6,html[data-netbox-color-mode=light] .col-xxl-6{flex:0 0 auto;width:50%}html .col-xxl-7,html[data-netbox-color-mode=dark] .col-xxl-7,html[data-netbox-color-mode=light] .col-xxl-7{flex:0 0 auto;width:58.33333333%}html .col-xxl-8,html[data-netbox-color-mode=dark] .col-xxl-8,html[data-netbox-color-mode=light] .col-xxl-8{flex:0 0 auto;width:66.66666667%}html .col-xxl-9,html[data-netbox-color-mode=dark] .col-xxl-9,html[data-netbox-color-mode=light] .col-xxl-9{flex:0 0 auto;width:75%}html .col-xxl-10,html[data-netbox-color-mode=dark] .col-xxl-10,html[data-netbox-color-mode=light] .col-xxl-10{flex:0 0 auto;width:83.33333333%}html .col-xxl-11,html[data-netbox-color-mode=dark] .col-xxl-11,html[data-netbox-color-mode=light] .col-xxl-11{flex:0 0 auto;width:91.66666667%}html .col-xxl-12,html[data-netbox-color-mode=dark] .col-xxl-12,html[data-netbox-color-mode=light] .col-xxl-12{flex:0 0 auto;width:100%}html .offset-xxl-0,html[data-netbox-color-mode=dark] .offset-xxl-0,html[data-netbox-color-mode=light] .offset-xxl-0{margin-left:0}html .offset-xxl-1,html[data-netbox-color-mode=dark] .offset-xxl-1,html[data-netbox-color-mode=light] .offset-xxl-1{margin-left:8.33333333%}html .offset-xxl-2,html[data-netbox-color-mode=dark] .offset-xxl-2,html[data-netbox-color-mode=light] .offset-xxl-2{margin-left:16.66666667%}html .offset-xxl-3,html[data-netbox-color-mode=dark] .offset-xxl-3,html[data-netbox-color-mode=light] .offset-xxl-3{margin-left:25%}html .offset-xxl-4,html[data-netbox-color-mode=dark] .offset-xxl-4,html[data-netbox-color-mode=light] .offset-xxl-4{margin-left:33.33333333%}html .offset-xxl-5,html[data-netbox-color-mode=dark] .offset-xxl-5,html[data-netbox-color-mode=light] .offset-xxl-5{margin-left:41.66666667%}html .offset-xxl-6,html[data-netbox-color-mode=dark] .offset-xxl-6,html[data-netbox-color-mode=light] .offset-xxl-6{margin-left:50%}html .offset-xxl-7,html[data-netbox-color-mode=dark] .offset-xxl-7,html[data-netbox-color-mode=light] .offset-xxl-7{margin-left:58.33333333%}html .offset-xxl-8,html[data-netbox-color-mode=dark] .offset-xxl-8,html[data-netbox-color-mode=light] .offset-xxl-8{margin-left:66.66666667%}html .offset-xxl-9,html[data-netbox-color-mode=dark] .offset-xxl-9,html[data-netbox-color-mode=light] .offset-xxl-9{margin-left:75%}html .offset-xxl-10,html[data-netbox-color-mode=dark] .offset-xxl-10,html[data-netbox-color-mode=light] .offset-xxl-10{margin-left:83.33333333%}html .offset-xxl-11,html[data-netbox-color-mode=dark] .offset-xxl-11,html[data-netbox-color-mode=light] .offset-xxl-11{margin-left:91.66666667%}html .g-xxl-0,html .gx-xxl-0,html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gx-xxl-0,html[data-netbox-color-mode=light] .g-xxl-0,html[data-netbox-color-mode=light] .gx-xxl-0{--bs-gutter-x: 0}html .g-xxl-0,html .gy-xxl-0,html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gy-xxl-0,html[data-netbox-color-mode=light] .g-xxl-0,html[data-netbox-color-mode=light] .gy-xxl-0{--bs-gutter-y: 0}html .g-xxl-1,html .gx-xxl-1,html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gx-xxl-1,html[data-netbox-color-mode=light] .g-xxl-1,html[data-netbox-color-mode=light] .gx-xxl-1{--bs-gutter-x: .25rem}html .g-xxl-1,html .gy-xxl-1,html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gy-xxl-1,html[data-netbox-color-mode=light] .g-xxl-1,html[data-netbox-color-mode=light] .gy-xxl-1{--bs-gutter-y: .25rem}html .g-xxl-2,html .gx-xxl-2,html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gx-xxl-2,html[data-netbox-color-mode=light] .g-xxl-2,html[data-netbox-color-mode=light] .gx-xxl-2{--bs-gutter-x: .5rem}html .g-xxl-2,html .gy-xxl-2,html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gy-xxl-2,html[data-netbox-color-mode=light] .g-xxl-2,html[data-netbox-color-mode=light] .gy-xxl-2{--bs-gutter-y: .5rem}html .g-xxl-3,html .gx-xxl-3,html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gx-xxl-3,html[data-netbox-color-mode=light] .g-xxl-3,html[data-netbox-color-mode=light] .gx-xxl-3{--bs-gutter-x: 1rem}html .g-xxl-3,html .gy-xxl-3,html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gy-xxl-3,html[data-netbox-color-mode=light] .g-xxl-3,html[data-netbox-color-mode=light] .gy-xxl-3{--bs-gutter-y: 1rem}html .g-xxl-4,html .gx-xxl-4,html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gx-xxl-4,html[data-netbox-color-mode=light] .g-xxl-4,html[data-netbox-color-mode=light] .gx-xxl-4{--bs-gutter-x: 1.5rem}html .g-xxl-4,html .gy-xxl-4,html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gy-xxl-4,html[data-netbox-color-mode=light] .g-xxl-4,html[data-netbox-color-mode=light] .gy-xxl-4{--bs-gutter-y: 1.5rem}html .g-xxl-5,html .gx-xxl-5,html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gx-xxl-5,html[data-netbox-color-mode=light] .g-xxl-5,html[data-netbox-color-mode=light] .gx-xxl-5{--bs-gutter-x: 3rem}html .g-xxl-5,html .gy-xxl-5,html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gy-xxl-5,html[data-netbox-color-mode=light] .g-xxl-5,html[data-netbox-color-mode=light] .gy-xxl-5{--bs-gutter-y: 3rem}}@media print{html .table,html[data-netbox-color-mode=dark] .table,html[data-netbox-color-mode=light] .table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, .05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, .1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, .075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}html .table>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table>:not(caption)>*>*,html[data-netbox-color-mode=light] .table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}html .table>tbody,html[data-netbox-color-mode=dark] .table>tbody,html[data-netbox-color-mode=light] .table>tbody{vertical-align:inherit}html .table>thead,html[data-netbox-color-mode=dark] .table>thead,html[data-netbox-color-mode=light] .table>thead{vertical-align:bottom}html .table>:not(:last-child)>:last-child>*,html[data-netbox-color-mode=dark] .table>:not(:last-child)>:last-child>*,html[data-netbox-color-mode=light] .table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}}@media print{html .caption-top,html[data-netbox-color-mode=dark] .caption-top,html[data-netbox-color-mode=light] .caption-top{caption-side:top}}@media print{html .table-sm>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-sm>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-sm>:not(caption)>*>*{padding:.25rem}}@media print{html .table-bordered>:not(caption)>*,html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*,html[data-netbox-color-mode=light] .table-bordered>:not(caption)>*{border-width:1px 0}html .table-bordered>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-bordered>:not(caption)>*>*{border-width:0 1px}}@media print{html .table-borderless>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-borderless>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-borderless>:not(caption)>*>*{border-bottom-width:0}}@media print{html .table-striped>tbody>tr:nth-of-type(odd),html[data-netbox-color-mode=dark] .table-striped>tbody>tr:nth-of-type(odd),html[data-netbox-color-mode=light] .table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}}@media print{html .table-active,html[data-netbox-color-mode=dark] .table-active,html[data-netbox-color-mode=light] .table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}}@media print{html .table-hover>tbody>tr:hover,html[data-netbox-color-mode=dark] .table-hover>tbody>tr:hover,html[data-netbox-color-mode=light] .table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}}@media print{html .table-primary,html[data-netbox-color-mode=dark] .table-primary,html[data-netbox-color-mode=light] .table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}}@media print{html .table-secondary,html[data-netbox-color-mode=dark] .table-secondary,html[data-netbox-color-mode=light] .table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}}@media print{html .table-success,html[data-netbox-color-mode=dark] .table-success,html[data-netbox-color-mode=light] .table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}}@media print{html .table-info,html[data-netbox-color-mode=dark] .table-info,html[data-netbox-color-mode=light] .table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}}@media print{html .table-warning,html[data-netbox-color-mode=dark] .table-warning,html[data-netbox-color-mode=light] .table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}}@media print{html .table-danger,html[data-netbox-color-mode=dark] .table-danger,html[data-netbox-color-mode=light] .table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}}@media print{html .table-light,html[data-netbox-color-mode=dark] .table-light,html[data-netbox-color-mode=light] .table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}}@media print{html .table-dark,html[data-netbox-color-mode=dark] .table-dark,html[data-netbox-color-mode=light] .table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}}@media print{html .table-responsive,html[data-netbox-color-mode=dark] .table-responsive,html[data-netbox-color-mode=light] .table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 575.98px){html .table-responsive-sm,html[data-netbox-color-mode=dark] .table-responsive-sm,html[data-netbox-color-mode=light] .table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 767.98px){html .table-responsive-md,html[data-netbox-color-mode=dark] .table-responsive-md,html[data-netbox-color-mode=light] .table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 991.98px){html .table-responsive-lg,html[data-netbox-color-mode=dark] .table-responsive-lg,html[data-netbox-color-mode=light] .table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 1199.98px){html .table-responsive-xl,html[data-netbox-color-mode=dark] .table-responsive-xl,html[data-netbox-color-mode=light] .table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 1399.98px){html .table-responsive-xxl,html[data-netbox-color-mode=dark] .table-responsive-xxl,html[data-netbox-color-mode=light] .table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print{html .form-label,html[data-netbox-color-mode=dark] .form-label,html[data-netbox-color-mode=light] .form-label{margin-bottom:.5rem}}@media print{html .col-form-label,html[data-netbox-color-mode=dark] .col-form-label,html[data-netbox-color-mode=light] .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}}@media print{html .col-form-label-lg,html[data-netbox-color-mode=dark] .col-form-label-lg,html[data-netbox-color-mode=light] .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}}@media print{html .col-form-label-sm,html[data-netbox-color-mode=dark] .col-form-label-sm,html[data-netbox-color-mode=light] .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}}@media print{html .form-text,html[data-netbox-color-mode=dark] .form-text,html[data-netbox-color-mode=light] .form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}}@media print{html .form-control,html[data-netbox-color-mode=dark] .form-control,html[data-netbox-color-mode=light] .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #e9ecef;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control,html[data-netbox-color-mode=dark] .form-control,html[data-netbox-color-mode=light] .form-control{transition:none}}@media print{html .form-control[type=file],html[data-netbox-color-mode=dark] .form-control[type=file],html[data-netbox-color-mode=light] .form-control[type=file]{overflow:hidden}html .form-control[type=file]:not(:disabled):not([readonly]),html[data-netbox-color-mode=dark] .form-control[type=file]:not(:disabled):not([readonly]),html[data-netbox-color-mode=light] .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}}@media print{html .form-control:focus,html[data-netbox-color-mode=dark] .form-control:focus,html[data-netbox-color-mode=light] .form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .form-control::-webkit-date-and-time-value,html[data-netbox-color-mode=dark] .form-control::-webkit-date-and-time-value,html[data-netbox-color-mode=light] .form-control::-webkit-date-and-time-value{height:1.5em}}@media print{html .form-control::placeholder,html[data-netbox-color-mode=dark] .form-control::placeholder,html[data-netbox-color-mode=light] .form-control::placeholder{color:#adb5bd;opacity:1}}@media print{html .form-control:disabled,html .form-control[readonly],html[data-netbox-color-mode=dark] .form-control:disabled,html[data-netbox-color-mode=dark] .form-control[readonly],html[data-netbox-color-mode=light] .form-control:disabled,html[data-netbox-color-mode=light] .form-control[readonly]{background-color:#e9ecef;opacity:1}}@media print{html .form-control::file-selector-button,html[data-netbox-color-mode=dark] .form-control::file-selector-button,html[data-netbox-color-mode=light] .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control::file-selector-button,html[data-netbox-color-mode=dark] .form-control::file-selector-button,html[data-netbox-color-mode=light] .form-control::file-selector-button{transition:none}}@media print{html .form-control:hover:not(:disabled):not([readonly])::file-selector-button,html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::file-selector-button,html[data-netbox-color-mode=light] .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}}@media print{html .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control::-webkit-file-upload-button{transition:none}}@media print{html .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}}@media print{html .form-control-plaintext,html[data-netbox-color-mode=dark] .form-control-plaintext,html[data-netbox-color-mode=light] .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}html .form-control-plaintext.form-control-sm,html .form-control-plaintext.form-control-lg,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-lg,html[data-netbox-color-mode=light] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=light] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}}@media print{html .form-control-sm,html[data-netbox-color-mode=dark] .form-control-sm,html[data-netbox-color-mode=light] .form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html .form-control-sm::file-selector-button,html[data-netbox-color-mode=dark] .form-control-sm::file-selector-button,html[data-netbox-color-mode=light] .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html .form-control-sm::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control-sm::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}}@media print{html .form-control-lg,html[data-netbox-color-mode=dark] .form-control-lg,html[data-netbox-color-mode=light] .form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html .form-control-lg::file-selector-button,html[data-netbox-color-mode=dark] .form-control-lg::file-selector-button,html[data-netbox-color-mode=light] .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html .form-control-lg::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control-lg::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}}@media print{html textarea.form-control,html[data-netbox-color-mode=dark] textarea.form-control,html[data-netbox-color-mode=light] textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}html textarea.form-control-sm,html[data-netbox-color-mode=dark] textarea.form-control-sm,html[data-netbox-color-mode=light] textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}html textarea.form-control-lg,html[data-netbox-color-mode=dark] textarea.form-control-lg,html[data-netbox-color-mode=light] textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}}@media print{html .form-control-color,html[data-netbox-color-mode=dark] .form-control-color,html[data-netbox-color-mode=light] .form-control-color{max-width:3rem;height:auto;padding:.375rem}html .form-control-color:not(:disabled):not([readonly]),html[data-netbox-color-mode=dark] .form-control-color:not(:disabled):not([readonly]),html[data-netbox-color-mode=light] .form-control-color:not(:disabled):not([readonly]){cursor:pointer}html .form-control-color::-moz-color-swatch,html[data-netbox-color-mode=dark] .form-control-color::-moz-color-swatch,html[data-netbox-color-mode=light] .form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}html .form-control-color::-webkit-color-swatch,html[data-netbox-color-mode=dark] .form-control-color::-webkit-color-swatch,html[data-netbox-color-mode=light] .form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}}@media print{html .form-select,html[data-netbox-color-mode=dark] .form-select,html[data-netbox-color-mode=light] .form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-select,html[data-netbox-color-mode=dark] .form-select,html[data-netbox-color-mode=light] .form-select{transition:none}}@media print{html .form-select:focus,html[data-netbox-color-mode=dark] .form-select:focus,html[data-netbox-color-mode=light] .form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .form-select[multiple],html .form-select[size]:not([size="1"]),html[data-netbox-color-mode=dark] .form-select[multiple],html[data-netbox-color-mode=dark] .form-select[size]:not([size="1"]),html[data-netbox-color-mode=light] .form-select[multiple],html[data-netbox-color-mode=light] .form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}}@media print{html .form-select:disabled,html[data-netbox-color-mode=dark] .form-select:disabled,html[data-netbox-color-mode=light] .form-select:disabled{color:#6c757d;background-color:#e9ecef}}@media print{html .form-select:-moz-focusring,html[data-netbox-color-mode=dark] .form-select:-moz-focusring,html[data-netbox-color-mode=light] .form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}}@media print{html .form-select-sm,html[data-netbox-color-mode=dark] .form-select-sm,html[data-netbox-color-mode=light] .form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}}@media print{html .form-select-lg,html[data-netbox-color-mode=dark] .form-select-lg,html[data-netbox-color-mode=light] .form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}}@media print{html .form-check,html[data-netbox-color-mode=dark] .form-check,html[data-netbox-color-mode=light] .form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}html .form-check .form-check-input,html[data-netbox-color-mode=dark] .form-check .form-check-input,html[data-netbox-color-mode=light] .form-check .form-check-input{float:left;margin-left:-1.5em}}@media print{html .form-check-input,html[data-netbox-color-mode=dark] .form-check-input,html[data-netbox-color-mode=light] .form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact}html .form-check-input[type=checkbox],html[data-netbox-color-mode=dark] .form-check-input[type=checkbox],html[data-netbox-color-mode=light] .form-check-input[type=checkbox]{border-radius:.25em}html .form-check-input[type=radio],html[data-netbox-color-mode=dark] .form-check-input[type=radio],html[data-netbox-color-mode=light] .form-check-input[type=radio]{border-radius:50%}html .form-check-input:active,html[data-netbox-color-mode=dark] .form-check-input:active,html[data-netbox-color-mode=light] .form-check-input:active{filter:brightness(90%)}html .form-check-input:focus,html[data-netbox-color-mode=dark] .form-check-input:focus,html[data-netbox-color-mode=light] .form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html .form-check-input:checked,html[data-netbox-color-mode=dark] .form-check-input:checked,html[data-netbox-color-mode=light] .form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}html .form-check-input:checked[type=checkbox],html[data-netbox-color-mode=dark] .form-check-input:checked[type=checkbox],html[data-netbox-color-mode=light] .form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}html .form-check-input:checked[type=radio],html[data-netbox-color-mode=dark] .form-check-input:checked[type=radio],html[data-netbox-color-mode=light] .form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}html .form-check-input[type=checkbox]:indeterminate,html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]:indeterminate,html[data-netbox-color-mode=light] .form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}html .form-check-input:disabled,html[data-netbox-color-mode=dark] .form-check-input:disabled,html[data-netbox-color-mode=light] .form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}html .form-check-input[disabled]~.form-check-label,html .form-check-input:disabled~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input:disabled~.form-check-label,html[data-netbox-color-mode=light] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=light] .form-check-input:disabled~.form-check-label{opacity:.5}}@media print{html .form-switch,html[data-netbox-color-mode=dark] .form-switch,html[data-netbox-color-mode=light] .form-switch{padding-left:2.5em}html .form-switch .form-check-input,html[data-netbox-color-mode=dark] .form-switch .form-check-input,html[data-netbox-color-mode=light] .form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-switch .form-check-input,html[data-netbox-color-mode=dark] .form-switch .form-check-input,html[data-netbox-color-mode=light] .form-switch .form-check-input{transition:none}}@media print{html .form-switch .form-check-input:focus,html[data-netbox-color-mode=dark] .form-switch .form-check-input:focus,html[data-netbox-color-mode=light] .form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}}@media print{html .form-switch .form-check-input:checked,html[data-netbox-color-mode=dark] .form-switch .form-check-input:checked,html[data-netbox-color-mode=light] .form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}}@media print{html .form-check-inline,html[data-netbox-color-mode=dark] .form-check-inline,html[data-netbox-color-mode=light] .form-check-inline{display:inline-block;margin-right:1rem}}@media print{html .btn-check,html[data-netbox-color-mode=dark] .btn-check,html[data-netbox-color-mode=light] .btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html .btn-check[disabled]+.btn,html .btn-check:disabled+.btn,html[data-netbox-color-mode=dark] .btn-check[disabled]+.btn,html[data-netbox-color-mode=dark] .btn-check:disabled+.btn,html[data-netbox-color-mode=light] .btn-check[disabled]+.btn,html[data-netbox-color-mode=light] .btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}}@media print{html .form-range,html[data-netbox-color-mode=dark] .form-range,html[data-netbox-color-mode=light] .form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}html .form-range:focus,html[data-netbox-color-mode=dark] .form-range:focus,html[data-netbox-color-mode=light] .form-range:focus{outline:0}html .form-range:focus::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range:focus::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}html .form-range:focus::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range:focus::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}html .form-range::-moz-focus-outer,html[data-netbox-color-mode=dark] .form-range::-moz-focus-outer,html[data-netbox-color-mode=light] .form-range::-moz-focus-outer{border:0}html .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb{transition:none}}@media print{html .form-range::-webkit-slider-thumb:active,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb:active,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}}@media print{html .form-range::-webkit-slider-runnable-track,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-runnable-track,html[data-netbox-color-mode=light] .form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}}@media print{html .form-range::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-range::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb{transition:none}}@media print{html .form-range::-moz-range-thumb:active,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb:active,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb:active{background-color:#b6d4fe}}@media print{html .form-range::-moz-range-track,html[data-netbox-color-mode=dark] .form-range::-moz-range-track,html[data-netbox-color-mode=light] .form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}}@media print{html .form-range:disabled,html[data-netbox-color-mode=dark] .form-range:disabled,html[data-netbox-color-mode=light] .form-range:disabled{pointer-events:none}html .form-range:disabled::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range:disabled::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html .form-range:disabled::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range:disabled::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range:disabled::-moz-range-thumb{background-color:#adb5bd}}@media print{html .form-floating,html[data-netbox-color-mode=dark] .form-floating,html[data-netbox-color-mode=light] .form-floating{position:relative}html .form-floating>.form-control,html .form-floating>.form-select,html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-select,html[data-netbox-color-mode=light] .form-floating>.form-control,html[data-netbox-color-mode=light] .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}html .form-floating>label,html[data-netbox-color-mode=dark] .form-floating>label,html[data-netbox-color-mode=light] .form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-floating>label,html[data-netbox-color-mode=dark] .form-floating>label,html[data-netbox-color-mode=light] .form-floating>label{transition:none}}@media print{html .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=light] .form-floating>.form-control{padding:1rem .75rem}html .form-floating>.form-control::placeholder,html[data-netbox-color-mode=dark] .form-floating>.form-control::placeholder,html[data-netbox-color-mode=light] .form-floating>.form-control::placeholder{color:transparent}html .form-floating>.form-control:focus,html .form-floating>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=dark] .form-floating>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=light] .form-floating>.form-control:focus,html[data-netbox-color-mode=light] .form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html .form-floating>.form-control:-webkit-autofill,html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill,html[data-netbox-color-mode=light] .form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.form-select,html[data-netbox-color-mode=dark] .form-floating>.form-select,html[data-netbox-color-mode=light] .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.form-control:focus~label,html .form-floating>.form-control:not(:placeholder-shown)~label,html .form-floating>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.form-select~label,html[data-netbox-color-mode=light] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=light] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=light] .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .form-floating>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=light] .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .input-group,html[data-netbox-color-mode=dark] .input-group,html[data-netbox-color-mode=light] .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html .input-group>.form-control,html .input-group>.form-select,html[data-netbox-color-mode=dark] .input-group>.form-control,html[data-netbox-color-mode=dark] .input-group>.form-select,html[data-netbox-color-mode=light] .input-group>.form-control,html[data-netbox-color-mode=light] .input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}html .input-group>.form-control:focus,html .input-group>.form-select:focus,html[data-netbox-color-mode=dark] .input-group>.form-control:focus,html[data-netbox-color-mode=dark] .input-group>.form-select:focus,html[data-netbox-color-mode=light] .input-group>.form-control:focus,html[data-netbox-color-mode=light] .input-group>.form-select:focus{z-index:3}html .input-group .btn,html[data-netbox-color-mode=dark] .input-group .btn,html[data-netbox-color-mode=light] .input-group .btn{position:relative;z-index:2}html .input-group .btn:focus,html[data-netbox-color-mode=dark] .input-group .btn:focus,html[data-netbox-color-mode=light] .input-group .btn:focus{z-index:3}}@media print{html .input-group-text,html[data-netbox-color-mode=dark] .input-group-text,html[data-netbox-color-mode=light] .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}}@media print{html .input-group-lg>.form-control,html .input-group-lg>.form-select,html .input-group-lg>.input-group-text,html .input-group-lg>.btn,html[data-netbox-color-mode=dark] .input-group-lg>.form-control,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.input-group-text,html[data-netbox-color-mode=dark] .input-group-lg>.btn,html[data-netbox-color-mode=light] .input-group-lg>.form-control,html[data-netbox-color-mode=light] .input-group-lg>.form-select,html[data-netbox-color-mode=light] .input-group-lg>.input-group-text,html[data-netbox-color-mode=light] .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}}@media print{html .input-group-sm>.form-control,html .input-group-sm>.form-select,html .input-group-sm>.input-group-text,html .input-group-sm>.btn,html[data-netbox-color-mode=dark] .input-group-sm>.form-control,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.input-group-text,html[data-netbox-color-mode=dark] .input-group-sm>.btn,html[data-netbox-color-mode=light] .input-group-sm>.form-control,html[data-netbox-color-mode=light] .input-group-sm>.form-select,html[data-netbox-color-mode=light] .input-group-sm>.input-group-text,html[data-netbox-color-mode=light] .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html .input-group-lg>.form-select,html .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=light] .input-group-lg>.form-select,html[data-netbox-color-mode=light] .input-group-sm>.form-select{padding-right:3rem}}@media print{html .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),html[data-netbox-color-mode=light] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=light] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}html .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),html[data-netbox-color-mode=dark] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),html[data-netbox-color-mode=light] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=light] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}html .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),html[data-netbox-color-mode=dark] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),html[data-netbox-color-mode=light] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}}@media print{html .valid-feedback,html[data-netbox-color-mode=dark] .valid-feedback,html[data-netbox-color-mode=light] .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}}@media print{html .valid-tooltip,html[data-netbox-color-mode=dark] .valid-tooltip,html[data-netbox-color-mode=light] .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}}@media print{.was-validated html:valid~.valid-feedback,.was-validated html:valid~.valid-tooltip,html.is-valid~.valid-feedback,html.is-valid~.valid-tooltip,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-tooltip,html[data-netbox-color-mode=dark].is-valid~.valid-feedback,html[data-netbox-color-mode=dark].is-valid~.valid-tooltip,.was-validated html[data-netbox-color-mode=light]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=light]:valid~.valid-tooltip,html[data-netbox-color-mode=light].is-valid~.valid-feedback,html[data-netbox-color-mode=light].is-valid~.valid-tooltip{display:block}}@media print{.was-validated html .form-control:valid,html .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-control:valid,html[data-netbox-color-mode=dark] .form-control.is-valid,.was-validated html[data-netbox-color-mode=light] .form-control:valid,html[data-netbox-color-mode=light] .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-control:valid:focus,html .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-control:valid:focus,html[data-netbox-color-mode=dark] .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-control:valid:focus,html[data-netbox-color-mode=light] .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}}@media print{.was-validated html textarea.form-control:valid,html textarea.form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] textarea.form-control:valid,html[data-netbox-color-mode=dark] textarea.form-control.is-valid,.was-validated html[data-netbox-color-mode=light] textarea.form-control:valid,html[data-netbox-color-mode=light] textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}}@media print{.was-validated html .form-select:valid,html .form-select.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-select:valid,html[data-netbox-color-mode=dark] .form-select.is-valid,.was-validated html[data-netbox-color-mode=light] .form-select:valid,html[data-netbox-color-mode=light] .form-select.is-valid{border-color:#198754}.was-validated html .form-select:valid:not([multiple]):not([size]),.was-validated html .form-select:valid:not([multiple])[size="1"],html .form-select.is-valid:not([multiple]):not([size]),html .form-select.is-valid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=light] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=light] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=light] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=light] .form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-select:valid:focus,html .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-select:valid:focus,html[data-netbox-color-mode=dark] .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-select:valid:focus,html[data-netbox-color-mode=light] .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}}@media print{.was-validated html .form-check-input:valid,html .form-check-input.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid,html[data-netbox-color-mode=dark] .form-check-input.is-valid,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid,html[data-netbox-color-mode=light] .form-check-input.is-valid{border-color:#198754}.was-validated html .form-check-input:valid:checked,html .form-check-input.is-valid:checked,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-valid:checked,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid:checked,html[data-netbox-color-mode=light] .form-check-input.is-valid:checked{background-color:#198754}.was-validated html .form-check-input:valid:focus,html .form-check-input.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid:focus,html[data-netbox-color-mode=light] .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated html .form-check-input:valid~.form-check-label,html .form-check-input.is-valid~.form-check-label,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-valid~.form-check-label,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=light] .form-check-input.is-valid~.form-check-label{color:#198754}}@media print{html .form-check-inline .form-check-input~.valid-feedback,html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.valid-feedback,html[data-netbox-color-mode=light] .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}}@media print{.was-validated html .input-group .form-control:valid,html .input-group .form-control.is-valid,.was-validated html .input-group .form-select:valid,html .input-group .form-select.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:valid,html[data-netbox-color-mode=light] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:valid,html[data-netbox-color-mode=light] .input-group .form-select.is-valid{z-index:1}.was-validated html .input-group .form-control:valid:focus,html .input-group .form-control.is-valid:focus,.was-validated html .input-group .form-select:valid:focus,html .input-group .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:valid:focus,html[data-netbox-color-mode=light] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:valid:focus,html[data-netbox-color-mode=light] .input-group .form-select.is-valid:focus{z-index:3}}@media print{html .invalid-feedback,html[data-netbox-color-mode=dark] .invalid-feedback,html[data-netbox-color-mode=light] .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}}@media print{html .invalid-tooltip,html[data-netbox-color-mode=dark] .invalid-tooltip,html[data-netbox-color-mode=light] .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}}@media print{.was-validated html:invalid~.invalid-feedback,.was-validated html:invalid~.invalid-tooltip,html.is-invalid~.invalid-feedback,html.is-invalid~.invalid-tooltip,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-tooltip,html[data-netbox-color-mode=dark].is-invalid~.invalid-feedback,html[data-netbox-color-mode=dark].is-invalid~.invalid-tooltip,.was-validated html[data-netbox-color-mode=light]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=light]:invalid~.invalid-tooltip,html[data-netbox-color-mode=light].is-invalid~.invalid-feedback,html[data-netbox-color-mode=light].is-invalid~.invalid-tooltip{display:block}}@media print{.was-validated html .form-control:invalid,html .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-control:invalid,html[data-netbox-color-mode=dark] .form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-control:invalid,html[data-netbox-color-mode=light] .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-control:invalid:focus,html .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-control:invalid:focus,html[data-netbox-color-mode=dark] .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-control:invalid:focus,html[data-netbox-color-mode=light] .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}}@media print{.was-validated html textarea.form-control:invalid,html textarea.form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] textarea.form-control:invalid,html[data-netbox-color-mode=dark] textarea.form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] textarea.form-control:invalid,html[data-netbox-color-mode=light] textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}}@media print{.was-validated html .form-select:invalid,html .form-select.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-select:invalid,html[data-netbox-color-mode=dark] .form-select.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-select:invalid,html[data-netbox-color-mode=light] .form-select.is-invalid{border-color:#dc3545}.was-validated html .form-select:invalid:not([multiple]):not([size]),.was-validated html .form-select:invalid:not([multiple])[size="1"],html .form-select.is-invalid:not([multiple]):not([size]),html .form-select.is-invalid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=light] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=light] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=light] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=light] .form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-select:invalid:focus,html .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:focus,html[data-netbox-color-mode=dark] .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-select:invalid:focus,html[data-netbox-color-mode=light] .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}}@media print{.was-validated html .form-check-input:invalid,html .form-check-input.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid,html[data-netbox-color-mode=dark] .form-check-input.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid,html[data-netbox-color-mode=light] .form-check-input.is-invalid{border-color:#dc3545}.was-validated html .form-check-input:invalid:checked,html .form-check-input.is-invalid:checked,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:checked,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid:checked,html[data-netbox-color-mode=light] .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated html .form-check-input:invalid:focus,html .form-check-input.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid:focus,html[data-netbox-color-mode=light] .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated html .form-check-input:invalid~.form-check-label,html .form-check-input.is-invalid~.form-check-label,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-invalid~.form-check-label,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=light] .form-check-input.is-invalid~.form-check-label{color:#dc3545}}@media print{html .form-check-inline .form-check-input~.invalid-feedback,html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.invalid-feedback,html[data-netbox-color-mode=light] .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}}@media print{.was-validated html .input-group .form-control:invalid,html .input-group .form-control.is-invalid,.was-validated html .input-group .form-select:invalid,html .input-group .form-select.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:invalid,html[data-netbox-color-mode=light] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:invalid,html[data-netbox-color-mode=light] .input-group .form-select.is-invalid{z-index:2}.was-validated html .input-group .form-control:invalid:focus,html .input-group .form-control.is-invalid:focus,.was-validated html .input-group .form-select:invalid:focus,html .input-group .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=light] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=light] .input-group .form-select.is-invalid:focus{z-index:3}}@media print{html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{transition:none}}@media print{html .btn:hover,html[data-netbox-color-mode=dark] .btn:hover,html[data-netbox-color-mode=light] .btn:hover{color:#212529}}@media print{.btn-check:focus+html .btn,html .btn:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=dark] .btn:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn,html[data-netbox-color-mode=light] .btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .btn:disabled,html .btn.disabled,fieldset:disabled html .btn,html[data-netbox-color-mode=dark] .btn:disabled,html[data-netbox-color-mode=dark] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn:disabled,html[data-netbox-color-mode=light] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=light] .btn{pointer-events:none;opacity:.65}}@media print{html .btn-primary,html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=light] .btn-primary{color:#fff;background-color:#337ab7;border-color:#337ab7}html .btn-primary:hover,html[data-netbox-color-mode=dark] .btn-primary:hover,html[data-netbox-color-mode=light] .btn-primary:hover{color:#fff;background-color:#2b689c;border-color:#296292}.btn-check:focus+html .btn-primary,html .btn-primary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-primary,html[data-netbox-color-mode=light] .btn-primary:focus{color:#fff;background-color:#2b689c;border-color:#296292;box-shadow:0 0 0 .25rem #528ec280}.btn-check:checked+html .btn-primary,.btn-check:active+html .btn-primary,html .btn-primary:active,html .btn-primary.active,.show>html .btn-primary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:active,html[data-netbox-color-mode=dark] .btn-primary.active,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-primary,.btn-check:active+html[data-netbox-color-mode=light] .btn-primary,html[data-netbox-color-mode=light] .btn-primary:active,html[data-netbox-color-mode=light] .btn-primary.active,.show>html[data-netbox-color-mode=light] .btn-primary.dropdown-toggle{color:#fff;background-color:#296292;border-color:#265c89}.btn-check:checked+html .btn-primary:focus,.btn-check:active+html .btn-primary:focus,html .btn-primary:active:focus,html .btn-primary.active:focus,.show>html .btn-primary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary:focus,html[data-netbox-color-mode=dark] .btn-primary:active:focus,html[data-netbox-color-mode=dark] .btn-primary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-primary:focus,html[data-netbox-color-mode=light] .btn-primary:active:focus,html[data-netbox-color-mode=light] .btn-primary.active:focus,.show>html[data-netbox-color-mode=light] .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #528ec280}html .btn-primary:disabled,html .btn-primary.disabled,html[data-netbox-color-mode=dark] .btn-primary:disabled,html[data-netbox-color-mode=dark] .btn-primary.disabled,html[data-netbox-color-mode=light] .btn-primary:disabled,html[data-netbox-color-mode=light] .btn-primary.disabled{color:#fff;background-color:#337ab7;border-color:#337ab7}}@media print{html .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html .btn-secondary:hover,html[data-netbox-color-mode=dark] .btn-secondary:hover,html[data-netbox-color-mode=light] .btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html .btn-secondary,html .btn-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html .btn-secondary,.btn-check:active+html .btn-secondary,html .btn-secondary:active,html .btn-secondary.active,.show>html .btn-secondary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:active,html[data-netbox-color-mode=dark] .btn-secondary.active,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=light] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary:active,html[data-netbox-color-mode=light] .btn-secondary.active,.show>html[data-netbox-color-mode=light] .btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html .btn-secondary:focus,.btn-check:active+html .btn-secondary:focus,html .btn-secondary:active:focus,html .btn-secondary.active:focus,.show>html .btn-secondary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary:focus,html[data-netbox-color-mode=dark] .btn-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-secondary:focus,html[data-netbox-color-mode=light] .btn-secondary:active:focus,html[data-netbox-color-mode=light] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=light] .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html .btn-secondary:disabled,html .btn-secondary.disabled,html[data-netbox-color-mode=dark] .btn-secondary:disabled,html[data-netbox-color-mode=dark] .btn-secondary.disabled,html[data-netbox-color-mode=light] .btn-secondary:disabled,html[data-netbox-color-mode=light] .btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}}@media print{html .btn-success,html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=light] .btn-success{color:#fff;background-color:#198754;border-color:#198754}html .btn-success:hover,html[data-netbox-color-mode=dark] .btn-success:hover,html[data-netbox-color-mode=light] .btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-success,html .btn-success:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-success,html[data-netbox-color-mode=light] .btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-success,.btn-check:active+html .btn-success,html .btn-success:active,html .btn-success.active,.show>html .btn-success.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:active,html[data-netbox-color-mode=dark] .btn-success.active,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-success,.btn-check:active+html[data-netbox-color-mode=light] .btn-success,html[data-netbox-color-mode=light] .btn-success:active,html[data-netbox-color-mode=light] .btn-success.active,.show>html[data-netbox-color-mode=light] .btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-success:focus,.btn-check:active+html .btn-success:focus,html .btn-success:active:focus,html .btn-success.active:focus,.show>html .btn-success.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success:focus,html[data-netbox-color-mode=dark] .btn-success:active:focus,html[data-netbox-color-mode=dark] .btn-success.active:focus,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-success:focus,html[data-netbox-color-mode=light] .btn-success:active:focus,html[data-netbox-color-mode=light] .btn-success.active:focus,.show>html[data-netbox-color-mode=light] .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-success:disabled,html .btn-success.disabled,html[data-netbox-color-mode=dark] .btn-success:disabled,html[data-netbox-color-mode=dark] .btn-success.disabled,html[data-netbox-color-mode=light] .btn-success:disabled,html[data-netbox-color-mode=light] .btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-info,html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=light] .btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-info:hover,html[data-netbox-color-mode=dark] .btn-info:hover,html[data-netbox-color-mode=light] .btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-info,html .btn-info:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-info,html[data-netbox-color-mode=light] .btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-info,.btn-check:active+html .btn-info,html .btn-info:active,html .btn-info.active,.show>html .btn-info.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:active,html[data-netbox-color-mode=dark] .btn-info.active,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-info,.btn-check:active+html[data-netbox-color-mode=light] .btn-info,html[data-netbox-color-mode=light] .btn-info:active,html[data-netbox-color-mode=light] .btn-info.active,.show>html[data-netbox-color-mode=light] .btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-info:focus,.btn-check:active+html .btn-info:focus,html .btn-info:active:focus,html .btn-info.active:focus,.show>html .btn-info.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info:focus,html[data-netbox-color-mode=dark] .btn-info:active:focus,html[data-netbox-color-mode=dark] .btn-info.active:focus,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-info:focus,html[data-netbox-color-mode=light] .btn-info:active:focus,html[data-netbox-color-mode=light] .btn-info.active:focus,.show>html[data-netbox-color-mode=light] .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-info:disabled,html .btn-info.disabled,html[data-netbox-color-mode=dark] .btn-info:disabled,html[data-netbox-color-mode=dark] .btn-info.disabled,html[data-netbox-color-mode=light] .btn-info:disabled,html[data-netbox-color-mode=light] .btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-warning,html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=light] .btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-warning:hover,html[data-netbox-color-mode=dark] .btn-warning:hover,html[data-netbox-color-mode=light] .btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-warning,html .btn-warning:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-warning,html[data-netbox-color-mode=light] .btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-warning,.btn-check:active+html .btn-warning,html .btn-warning:active,html .btn-warning.active,.show>html .btn-warning.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:active,html[data-netbox-color-mode=dark] .btn-warning.active,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-warning,.btn-check:active+html[data-netbox-color-mode=light] .btn-warning,html[data-netbox-color-mode=light] .btn-warning:active,html[data-netbox-color-mode=light] .btn-warning.active,.show>html[data-netbox-color-mode=light] .btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-warning:focus,.btn-check:active+html .btn-warning:focus,html .btn-warning:active:focus,html .btn-warning.active:focus,.show>html .btn-warning.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning:focus,html[data-netbox-color-mode=dark] .btn-warning:active:focus,html[data-netbox-color-mode=dark] .btn-warning.active:focus,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-warning:focus,html[data-netbox-color-mode=light] .btn-warning:active:focus,html[data-netbox-color-mode=light] .btn-warning.active:focus,.show>html[data-netbox-color-mode=light] .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-warning:disabled,html .btn-warning.disabled,html[data-netbox-color-mode=dark] .btn-warning:disabled,html[data-netbox-color-mode=dark] .btn-warning.disabled,html[data-netbox-color-mode=light] .btn-warning:disabled,html[data-netbox-color-mode=light] .btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-danger,html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=light] .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-danger:hover,html[data-netbox-color-mode=dark] .btn-danger:hover,html[data-netbox-color-mode=light] .btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-danger,html .btn-danger:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-danger,html[data-netbox-color-mode=light] .btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-danger,.btn-check:active+html .btn-danger,html .btn-danger:active,html .btn-danger.active,.show>html .btn-danger.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:active,html[data-netbox-color-mode=dark] .btn-danger.active,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-danger,.btn-check:active+html[data-netbox-color-mode=light] .btn-danger,html[data-netbox-color-mode=light] .btn-danger:active,html[data-netbox-color-mode=light] .btn-danger.active,.show>html[data-netbox-color-mode=light] .btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-danger:focus,.btn-check:active+html .btn-danger:focus,html .btn-danger:active:focus,html .btn-danger.active:focus,.show>html .btn-danger.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger:focus,html[data-netbox-color-mode=dark] .btn-danger:active:focus,html[data-netbox-color-mode=dark] .btn-danger.active:focus,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-danger:focus,html[data-netbox-color-mode=light] .btn-danger:active:focus,html[data-netbox-color-mode=light] .btn-danger.active:focus,.show>html[data-netbox-color-mode=light] .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-danger:disabled,html .btn-danger.disabled,html[data-netbox-color-mode=dark] .btn-danger:disabled,html[data-netbox-color-mode=dark] .btn-danger.disabled,html[data-netbox-color-mode=light] .btn-danger:disabled,html[data-netbox-color-mode=light] .btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-light,html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=light] .btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html .btn-light:hover,html[data-netbox-color-mode=dark] .btn-light:hover,html[data-netbox-color-mode=light] .btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html .btn-light,html .btn-light:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-light,html[data-netbox-color-mode=light] .btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html .btn-light,.btn-check:active+html .btn-light,html .btn-light:active,html .btn-light.active,.show>html .btn-light.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:active,html[data-netbox-color-mode=dark] .btn-light.active,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-light,.btn-check:active+html[data-netbox-color-mode=light] .btn-light,html[data-netbox-color-mode=light] .btn-light:active,html[data-netbox-color-mode=light] .btn-light.active,.show>html[data-netbox-color-mode=light] .btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html .btn-light:focus,.btn-check:active+html .btn-light:focus,html .btn-light:active:focus,html .btn-light.active:focus,.show>html .btn-light.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light:focus,html[data-netbox-color-mode=dark] .btn-light:active:focus,html[data-netbox-color-mode=dark] .btn-light.active:focus,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-light:focus,html[data-netbox-color-mode=light] .btn-light:active:focus,html[data-netbox-color-mode=light] .btn-light.active:focus,.show>html[data-netbox-color-mode=light] .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html .btn-light:disabled,html .btn-light.disabled,html[data-netbox-color-mode=dark] .btn-light:disabled,html[data-netbox-color-mode=dark] .btn-light.disabled,html[data-netbox-color-mode=light] .btn-light:disabled,html[data-netbox-color-mode=light] .btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}}@media print{html .btn-dark,html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=light] .btn-dark{color:#fff;background-color:#212529;border-color:#212529}html .btn-dark:hover,html[data-netbox-color-mode=dark] .btn-dark:hover,html[data-netbox-color-mode=light] .btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html .btn-dark,html .btn-dark:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-dark,html[data-netbox-color-mode=light] .btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html .btn-dark,.btn-check:active+html .btn-dark,html .btn-dark:active,html .btn-dark.active,.show>html .btn-dark.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:active,html[data-netbox-color-mode=dark] .btn-dark.active,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-dark,.btn-check:active+html[data-netbox-color-mode=light] .btn-dark,html[data-netbox-color-mode=light] .btn-dark:active,html[data-netbox-color-mode=light] .btn-dark.active,.show>html[data-netbox-color-mode=light] .btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html .btn-dark:focus,.btn-check:active+html .btn-dark:focus,html .btn-dark:active:focus,html .btn-dark.active:focus,.show>html .btn-dark.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark:focus,html[data-netbox-color-mode=dark] .btn-dark:active:focus,html[data-netbox-color-mode=dark] .btn-dark.active:focus,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-dark:focus,html[data-netbox-color-mode=light] .btn-dark:active:focus,html[data-netbox-color-mode=light] .btn-dark.active:focus,.show>html[data-netbox-color-mode=light] .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html .btn-dark:disabled,html .btn-dark.disabled,html[data-netbox-color-mode=dark] .btn-dark:disabled,html[data-netbox-color-mode=dark] .btn-dark.disabled,html[data-netbox-color-mode=light] .btn-dark:disabled,html[data-netbox-color-mode=light] .btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}}@media print{html .btn-red,html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=light] .btn-red{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-red:hover,html[data-netbox-color-mode=dark] .btn-red:hover,html[data-netbox-color-mode=light] .btn-red:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-red,html .btn-red:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red,html[data-netbox-color-mode=light] .btn-red:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-red,.btn-check:active+html .btn-red,html .btn-red:active,html .btn-red.active,.show>html .btn-red.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:active,html[data-netbox-color-mode=dark] .btn-red.active,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red,.btn-check:active+html[data-netbox-color-mode=light] .btn-red,html[data-netbox-color-mode=light] .btn-red:active,html[data-netbox-color-mode=light] .btn-red.active,.show>html[data-netbox-color-mode=light] .btn-red.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-red:focus,.btn-check:active+html .btn-red:focus,html .btn-red:active:focus,html .btn-red.active:focus,.show>html .btn-red.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red:focus,html[data-netbox-color-mode=dark] .btn-red:active:focus,html[data-netbox-color-mode=dark] .btn-red.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red:focus,html[data-netbox-color-mode=light] .btn-red:active:focus,html[data-netbox-color-mode=light] .btn-red.active:focus,.show>html[data-netbox-color-mode=light] .btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-red:disabled,html .btn-red.disabled,html[data-netbox-color-mode=dark] .btn-red:disabled,html[data-netbox-color-mode=dark] .btn-red.disabled,html[data-netbox-color-mode=light] .btn-red:disabled,html[data-netbox-color-mode=light] .btn-red.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-yellow:hover,html[data-netbox-color-mode=dark] .btn-yellow:hover,html[data-netbox-color-mode=light] .btn-yellow:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-yellow,html .btn-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-yellow,.btn-check:active+html .btn-yellow,html .btn-yellow:active,html .btn-yellow.active,.show>html .btn-yellow.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:active,html[data-netbox-color-mode=dark] .btn-yellow.active,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow:active,html[data-netbox-color-mode=light] .btn-yellow.active,.show>html[data-netbox-color-mode=light] .btn-yellow.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-yellow:focus,.btn-check:active+html .btn-yellow:focus,html .btn-yellow:active:focus,html .btn-yellow.active:focus,.show>html .btn-yellow.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow:focus,html[data-netbox-color-mode=dark] .btn-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow:focus,html[data-netbox-color-mode=light] .btn-yellow:active:focus,html[data-netbox-color-mode=light] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-yellow:disabled,html .btn-yellow.disabled,html[data-netbox-color-mode=dark] .btn-yellow:disabled,html[data-netbox-color-mode=dark] .btn-yellow.disabled,html[data-netbox-color-mode=light] .btn-yellow:disabled,html[data-netbox-color-mode=light] .btn-yellow.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-green,html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=light] .btn-green{color:#fff;background-color:#198754;border-color:#198754}html .btn-green:hover,html[data-netbox-color-mode=dark] .btn-green:hover,html[data-netbox-color-mode=light] .btn-green:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-green,html .btn-green:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green,html[data-netbox-color-mode=light] .btn-green:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-green,.btn-check:active+html .btn-green,html .btn-green:active,html .btn-green.active,.show>html .btn-green.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:active,html[data-netbox-color-mode=dark] .btn-green.active,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green,.btn-check:active+html[data-netbox-color-mode=light] .btn-green,html[data-netbox-color-mode=light] .btn-green:active,html[data-netbox-color-mode=light] .btn-green.active,.show>html[data-netbox-color-mode=light] .btn-green.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-green:focus,.btn-check:active+html .btn-green:focus,html .btn-green:active:focus,html .btn-green.active:focus,.show>html .btn-green.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green:focus,html[data-netbox-color-mode=dark] .btn-green:active:focus,html[data-netbox-color-mode=dark] .btn-green.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green:focus,html[data-netbox-color-mode=light] .btn-green:active:focus,html[data-netbox-color-mode=light] .btn-green.active:focus,.show>html[data-netbox-color-mode=light] .btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-green:disabled,html .btn-green.disabled,html[data-netbox-color-mode=dark] .btn-green:disabled,html[data-netbox-color-mode=dark] .btn-green.disabled,html[data-netbox-color-mode=light] .btn-green:disabled,html[data-netbox-color-mode=light] .btn-green.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-blue,html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=light] .btn-blue{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .btn-blue:hover,html[data-netbox-color-mode=dark] .btn-blue:hover,html[data-netbox-color-mode=light] .btn-blue:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html .btn-blue,html .btn-blue:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue,html[data-netbox-color-mode=light] .btn-blue:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html .btn-blue,.btn-check:active+html .btn-blue,html .btn-blue:active,html .btn-blue.active,.show>html .btn-blue.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:active,html[data-netbox-color-mode=dark] .btn-blue.active,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue,html[data-netbox-color-mode=light] .btn-blue:active,html[data-netbox-color-mode=light] .btn-blue.active,.show>html[data-netbox-color-mode=light] .btn-blue.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html .btn-blue:focus,.btn-check:active+html .btn-blue:focus,html .btn-blue:active:focus,html .btn-blue.active:focus,.show>html .btn-blue.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue:focus,html[data-netbox-color-mode=dark] .btn-blue:active:focus,html[data-netbox-color-mode=dark] .btn-blue.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue:focus,html[data-netbox-color-mode=light] .btn-blue:active:focus,html[data-netbox-color-mode=light] .btn-blue.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html .btn-blue:disabled,html .btn-blue.disabled,html[data-netbox-color-mode=dark] .btn-blue:disabled,html[data-netbox-color-mode=dark] .btn-blue.disabled,html[data-netbox-color-mode=light] .btn-blue:disabled,html[data-netbox-color-mode=light] .btn-blue.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}}@media print{html .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-cyan:hover,html[data-netbox-color-mode=dark] .btn-cyan:hover,html[data-netbox-color-mode=light] .btn-cyan:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-cyan,html .btn-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-cyan,.btn-check:active+html .btn-cyan,html .btn-cyan:active,html .btn-cyan.active,.show>html .btn-cyan.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:active,html[data-netbox-color-mode=dark] .btn-cyan.active,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan:active,html[data-netbox-color-mode=light] .btn-cyan.active,.show>html[data-netbox-color-mode=light] .btn-cyan.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-cyan:focus,.btn-check:active+html .btn-cyan:focus,html .btn-cyan:active:focus,html .btn-cyan.active:focus,.show>html .btn-cyan.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan:focus,html[data-netbox-color-mode=dark] .btn-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan:focus,html[data-netbox-color-mode=light] .btn-cyan:active:focus,html[data-netbox-color-mode=light] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-cyan:disabled,html .btn-cyan.disabled,html[data-netbox-color-mode=dark] .btn-cyan:disabled,html[data-netbox-color-mode=dark] .btn-cyan.disabled,html[data-netbox-color-mode=light] .btn-cyan:disabled,html[data-netbox-color-mode=light] .btn-cyan.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo{color:#fff;background-color:#6610f2;border-color:#6610f2}html .btn-indigo:hover,html[data-netbox-color-mode=dark] .btn-indigo:hover,html[data-netbox-color-mode=light] .btn-indigo:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html .btn-indigo,html .btn-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html .btn-indigo,.btn-check:active+html .btn-indigo,html .btn-indigo:active,html .btn-indigo.active,.show>html .btn-indigo.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:active,html[data-netbox-color-mode=dark] .btn-indigo.active,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo:active,html[data-netbox-color-mode=light] .btn-indigo.active,.show>html[data-netbox-color-mode=light] .btn-indigo.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html .btn-indigo:focus,.btn-check:active+html .btn-indigo:focus,html .btn-indigo:active:focus,html .btn-indigo.active:focus,.show>html .btn-indigo.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo:focus,html[data-netbox-color-mode=dark] .btn-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo:focus,html[data-netbox-color-mode=light] .btn-indigo:active:focus,html[data-netbox-color-mode=light] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html .btn-indigo:disabled,html .btn-indigo.disabled,html[data-netbox-color-mode=dark] .btn-indigo:disabled,html[data-netbox-color-mode=dark] .btn-indigo.disabled,html[data-netbox-color-mode=light] .btn-indigo:disabled,html[data-netbox-color-mode=light] .btn-indigo.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}}@media print{html .btn-purple,html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=light] .btn-purple{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html .btn-purple:hover,html[data-netbox-color-mode=dark] .btn-purple:hover,html[data-netbox-color-mode=light] .btn-purple:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html .btn-purple,html .btn-purple:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple,html[data-netbox-color-mode=light] .btn-purple:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html .btn-purple,.btn-check:active+html .btn-purple,html .btn-purple:active,html .btn-purple.active,.show>html .btn-purple.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:active,html[data-netbox-color-mode=dark] .btn-purple.active,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple,html[data-netbox-color-mode=light] .btn-purple:active,html[data-netbox-color-mode=light] .btn-purple.active,.show>html[data-netbox-color-mode=light] .btn-purple.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html .btn-purple:focus,.btn-check:active+html .btn-purple:focus,html .btn-purple:active:focus,html .btn-purple.active:focus,.show>html .btn-purple.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple:focus,html[data-netbox-color-mode=dark] .btn-purple:active:focus,html[data-netbox-color-mode=dark] .btn-purple.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple:focus,html[data-netbox-color-mode=light] .btn-purple:active:focus,html[data-netbox-color-mode=light] .btn-purple.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html .btn-purple:disabled,html .btn-purple.disabled,html[data-netbox-color-mode=dark] .btn-purple:disabled,html[data-netbox-color-mode=dark] .btn-purple.disabled,html[data-netbox-color-mode=light] .btn-purple:disabled,html[data-netbox-color-mode=light] .btn-purple.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}}@media print{html .btn-pink,html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=light] .btn-pink{color:#fff;background-color:#d63384;border-color:#d63384}html .btn-pink:hover,html[data-netbox-color-mode=dark] .btn-pink:hover,html[data-netbox-color-mode=light] .btn-pink:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html .btn-pink,html .btn-pink:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink,html[data-netbox-color-mode=light] .btn-pink:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html .btn-pink,.btn-check:active+html .btn-pink,html .btn-pink:active,html .btn-pink.active,.show>html .btn-pink.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:active,html[data-netbox-color-mode=dark] .btn-pink.active,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink,html[data-netbox-color-mode=light] .btn-pink:active,html[data-netbox-color-mode=light] .btn-pink.active,.show>html[data-netbox-color-mode=light] .btn-pink.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html .btn-pink:focus,.btn-check:active+html .btn-pink:focus,html .btn-pink:active:focus,html .btn-pink.active:focus,.show>html .btn-pink.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink:focus,html[data-netbox-color-mode=dark] .btn-pink:active:focus,html[data-netbox-color-mode=dark] .btn-pink.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink:focus,html[data-netbox-color-mode=light] .btn-pink:active:focus,html[data-netbox-color-mode=light] .btn-pink.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html .btn-pink:disabled,html .btn-pink.disabled,html[data-netbox-color-mode=dark] .btn-pink:disabled,html[data-netbox-color-mode=dark] .btn-pink.disabled,html[data-netbox-color-mode=light] .btn-pink:disabled,html[data-netbox-color-mode=light] .btn-pink.disabled{color:#fff;background-color:#d63384;border-color:#d63384}}@media print{html .btn-darker,html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=light] .btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html .btn-darker:hover,html[data-netbox-color-mode=dark] .btn-darker:hover,html[data-netbox-color-mode=light] .btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+html .btn-darker,html .btn-darker:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-darker,html[data-netbox-color-mode=light] .btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+html .btn-darker,.btn-check:active+html .btn-darker,html .btn-darker:active,html .btn-darker.active,.show>html .btn-darker.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:active,html[data-netbox-color-mode=dark] .btn-darker.active,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darker,.btn-check:active+html[data-netbox-color-mode=light] .btn-darker,html[data-netbox-color-mode=light] .btn-darker:active,html[data-netbox-color-mode=light] .btn-darker.active,.show>html[data-netbox-color-mode=light] .btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+html .btn-darker:focus,.btn-check:active+html .btn-darker:focus,html .btn-darker:active:focus,html .btn-darker.active:focus,.show>html .btn-darker.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker:focus,html[data-netbox-color-mode=dark] .btn-darker:active:focus,html[data-netbox-color-mode=dark] .btn-darker.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-darker:focus,html[data-netbox-color-mode=light] .btn-darker:active:focus,html[data-netbox-color-mode=light] .btn-darker.active:focus,.show>html[data-netbox-color-mode=light] .btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}html .btn-darker:disabled,html .btn-darker.disabled,html[data-netbox-color-mode=dark] .btn-darker:disabled,html[data-netbox-color-mode=dark] .btn-darker.disabled,html[data-netbox-color-mode=light] .btn-darker:disabled,html[data-netbox-color-mode=light] .btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}}@media print{html .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}html .btn-darkest:hover,html[data-netbox-color-mode=dark] .btn-darkest:hover,html[data-netbox-color-mode=light] .btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+html .btn-darkest,html .btn-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+html .btn-darkest,.btn-check:active+html .btn-darkest,html .btn-darkest:active,html .btn-darkest.active,.show>html .btn-darkest.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:active,html[data-netbox-color-mode=dark] .btn-darkest.active,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=light] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest:active,html[data-netbox-color-mode=light] .btn-darkest.active,.show>html[data-netbox-color-mode=light] .btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+html .btn-darkest:focus,.btn-check:active+html .btn-darkest:focus,html .btn-darkest:active:focus,html .btn-darkest.active:focus,.show>html .btn-darkest.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest:focus,html[data-netbox-color-mode=dark] .btn-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-darkest:focus,html[data-netbox-color-mode=light] .btn-darkest:active:focus,html[data-netbox-color-mode=light] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=light] .btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}html .btn-darkest:disabled,html .btn-darkest.disabled,html[data-netbox-color-mode=dark] .btn-darkest:disabled,html[data-netbox-color-mode=dark] .btn-darkest.disabled,html[data-netbox-color-mode=light] .btn-darkest:disabled,html[data-netbox-color-mode=light] .btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}}@media print{html .btn-gray,html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=light] .btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}html .btn-gray:hover,html[data-netbox-color-mode=dark] .btn-gray:hover,html[data-netbox-color-mode=light] .btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html .btn-gray,html .btn-gray:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray,html[data-netbox-color-mode=light] .btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html .btn-gray,.btn-check:active+html .btn-gray,html .btn-gray:active,html .btn-gray.active,.show>html .btn-gray.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:active,html[data-netbox-color-mode=dark] .btn-gray.active,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray,html[data-netbox-color-mode=light] .btn-gray:active,html[data-netbox-color-mode=light] .btn-gray.active,.show>html[data-netbox-color-mode=light] .btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html .btn-gray:focus,.btn-check:active+html .btn-gray:focus,html .btn-gray:active:focus,html .btn-gray.active:focus,.show>html .btn-gray.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray:focus,html[data-netbox-color-mode=dark] .btn-gray:active:focus,html[data-netbox-color-mode=dark] .btn-gray.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray:focus,html[data-netbox-color-mode=light] .btn-gray:active:focus,html[data-netbox-color-mode=light] .btn-gray.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html .btn-gray:disabled,html .btn-gray.disabled,html[data-netbox-color-mode=dark] .btn-gray:disabled,html[data-netbox-color-mode=dark] .btn-gray.disabled,html[data-netbox-color-mode=light] .btn-gray:disabled,html[data-netbox-color-mode=light] .btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}}@media print{html .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html .btn-gray-100:hover,html[data-netbox-color-mode=dark] .btn-gray-100:hover,html[data-netbox-color-mode=light] .btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html .btn-gray-100,html .btn-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html .btn-gray-100,.btn-check:active+html .btn-gray-100,html .btn-gray-100:active,html .btn-gray-100.active,.show>html .btn-gray-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:active,html[data-netbox-color-mode=dark] .btn-gray-100.active,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100:active,html[data-netbox-color-mode=light] .btn-gray-100.active,.show>html[data-netbox-color-mode=light] .btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html .btn-gray-100:focus,.btn-check:active+html .btn-gray-100:focus,html .btn-gray-100:active:focus,html .btn-gray-100.active:focus,.show>html .btn-gray-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100:focus,html[data-netbox-color-mode=dark] .btn-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-100:focus,html[data-netbox-color-mode=light] .btn-gray-100:active:focus,html[data-netbox-color-mode=light] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html .btn-gray-100:disabled,html .btn-gray-100.disabled,html[data-netbox-color-mode=dark] .btn-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-gray-100.disabled,html[data-netbox-color-mode=light] .btn-gray-100:disabled,html[data-netbox-color-mode=light] .btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}}@media print{html .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}html .btn-gray-200:hover,html[data-netbox-color-mode=dark] .btn-gray-200:hover,html[data-netbox-color-mode=light] .btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+html .btn-gray-200,html .btn-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+html .btn-gray-200,.btn-check:active+html .btn-gray-200,html .btn-gray-200:active,html .btn-gray-200.active,.show>html .btn-gray-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:active,html[data-netbox-color-mode=dark] .btn-gray-200.active,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200:active,html[data-netbox-color-mode=light] .btn-gray-200.active,.show>html[data-netbox-color-mode=light] .btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+html .btn-gray-200:focus,.btn-check:active+html .btn-gray-200:focus,html .btn-gray-200:active:focus,html .btn-gray-200.active:focus,.show>html .btn-gray-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200:focus,html[data-netbox-color-mode=dark] .btn-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-200:focus,html[data-netbox-color-mode=light] .btn-gray-200:active:focus,html[data-netbox-color-mode=light] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}html .btn-gray-200:disabled,html .btn-gray-200.disabled,html[data-netbox-color-mode=dark] .btn-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-gray-200.disabled,html[data-netbox-color-mode=light] .btn-gray-200:disabled,html[data-netbox-color-mode=light] .btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}}@media print{html .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}html .btn-gray-300:hover,html[data-netbox-color-mode=dark] .btn-gray-300:hover,html[data-netbox-color-mode=light] .btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html .btn-gray-300,html .btn-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html .btn-gray-300,.btn-check:active+html .btn-gray-300,html .btn-gray-300:active,html .btn-gray-300.active,.show>html .btn-gray-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:active,html[data-netbox-color-mode=dark] .btn-gray-300.active,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300:active,html[data-netbox-color-mode=light] .btn-gray-300.active,.show>html[data-netbox-color-mode=light] .btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html .btn-gray-300:focus,.btn-check:active+html .btn-gray-300:focus,html .btn-gray-300:active:focus,html .btn-gray-300.active:focus,.show>html .btn-gray-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300:focus,html[data-netbox-color-mode=dark] .btn-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-300:focus,html[data-netbox-color-mode=light] .btn-gray-300:active:focus,html[data-netbox-color-mode=light] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html .btn-gray-300:disabled,html .btn-gray-300.disabled,html[data-netbox-color-mode=dark] .btn-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-gray-300.disabled,html[data-netbox-color-mode=light] .btn-gray-300:disabled,html[data-netbox-color-mode=light] .btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}}@media print{html .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}html .btn-gray-400:hover,html[data-netbox-color-mode=dark] .btn-gray-400:hover,html[data-netbox-color-mode=light] .btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html .btn-gray-400,html .btn-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html .btn-gray-400,.btn-check:active+html .btn-gray-400,html .btn-gray-400:active,html .btn-gray-400.active,.show>html .btn-gray-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:active,html[data-netbox-color-mode=dark] .btn-gray-400.active,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400:active,html[data-netbox-color-mode=light] .btn-gray-400.active,.show>html[data-netbox-color-mode=light] .btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html .btn-gray-400:focus,.btn-check:active+html .btn-gray-400:focus,html .btn-gray-400:active:focus,html .btn-gray-400.active:focus,.show>html .btn-gray-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400:focus,html[data-netbox-color-mode=dark] .btn-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-400:focus,html[data-netbox-color-mode=light] .btn-gray-400:active:focus,html[data-netbox-color-mode=light] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html .btn-gray-400:disabled,html .btn-gray-400.disabled,html[data-netbox-color-mode=dark] .btn-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-gray-400.disabled,html[data-netbox-color-mode=light] .btn-gray-400:disabled,html[data-netbox-color-mode=light] .btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}}@media print{html .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}html .btn-gray-500:hover,html[data-netbox-color-mode=dark] .btn-gray-500:hover,html[data-netbox-color-mode=light] .btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html .btn-gray-500,html .btn-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html .btn-gray-500,.btn-check:active+html .btn-gray-500,html .btn-gray-500:active,html .btn-gray-500.active,.show>html .btn-gray-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:active,html[data-netbox-color-mode=dark] .btn-gray-500.active,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500:active,html[data-netbox-color-mode=light] .btn-gray-500.active,.show>html[data-netbox-color-mode=light] .btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html .btn-gray-500:focus,.btn-check:active+html .btn-gray-500:focus,html .btn-gray-500:active:focus,html .btn-gray-500.active:focus,.show>html .btn-gray-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500:focus,html[data-netbox-color-mode=dark] .btn-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-500:focus,html[data-netbox-color-mode=light] .btn-gray-500:active:focus,html[data-netbox-color-mode=light] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html .btn-gray-500:disabled,html .btn-gray-500.disabled,html[data-netbox-color-mode=dark] .btn-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-gray-500.disabled,html[data-netbox-color-mode=light] .btn-gray-500:disabled,html[data-netbox-color-mode=light] .btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}}@media print{html .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}html .btn-gray-600:hover,html[data-netbox-color-mode=dark] .btn-gray-600:hover,html[data-netbox-color-mode=light] .btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html .btn-gray-600,html .btn-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html .btn-gray-600,.btn-check:active+html .btn-gray-600,html .btn-gray-600:active,html .btn-gray-600.active,.show>html .btn-gray-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:active,html[data-netbox-color-mode=dark] .btn-gray-600.active,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600:active,html[data-netbox-color-mode=light] .btn-gray-600.active,.show>html[data-netbox-color-mode=light] .btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html .btn-gray-600:focus,.btn-check:active+html .btn-gray-600:focus,html .btn-gray-600:active:focus,html .btn-gray-600.active:focus,.show>html .btn-gray-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600:focus,html[data-netbox-color-mode=dark] .btn-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-600:focus,html[data-netbox-color-mode=light] .btn-gray-600:active:focus,html[data-netbox-color-mode=light] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html .btn-gray-600:disabled,html .btn-gray-600.disabled,html[data-netbox-color-mode=dark] .btn-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-gray-600.disabled,html[data-netbox-color-mode=light] .btn-gray-600:disabled,html[data-netbox-color-mode=light] .btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}}@media print{html .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}html .btn-gray-700:hover,html[data-netbox-color-mode=dark] .btn-gray-700:hover,html[data-netbox-color-mode=light] .btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html .btn-gray-700,html .btn-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html .btn-gray-700,.btn-check:active+html .btn-gray-700,html .btn-gray-700:active,html .btn-gray-700.active,.show>html .btn-gray-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:active,html[data-netbox-color-mode=dark] .btn-gray-700.active,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700:active,html[data-netbox-color-mode=light] .btn-gray-700.active,.show>html[data-netbox-color-mode=light] .btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html .btn-gray-700:focus,.btn-check:active+html .btn-gray-700:focus,html .btn-gray-700:active:focus,html .btn-gray-700.active:focus,.show>html .btn-gray-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700:focus,html[data-netbox-color-mode=dark] .btn-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-700:focus,html[data-netbox-color-mode=light] .btn-gray-700:active:focus,html[data-netbox-color-mode=light] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html .btn-gray-700:disabled,html .btn-gray-700.disabled,html[data-netbox-color-mode=dark] .btn-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-gray-700.disabled,html[data-netbox-color-mode=light] .btn-gray-700:disabled,html[data-netbox-color-mode=light] .btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}}@media print{html .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}html .btn-gray-800:hover,html[data-netbox-color-mode=dark] .btn-gray-800:hover,html[data-netbox-color-mode=light] .btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+html .btn-gray-800,html .btn-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+html .btn-gray-800,.btn-check:active+html .btn-gray-800,html .btn-gray-800:active,html .btn-gray-800.active,.show>html .btn-gray-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:active,html[data-netbox-color-mode=dark] .btn-gray-800.active,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800:active,html[data-netbox-color-mode=light] .btn-gray-800.active,.show>html[data-netbox-color-mode=light] .btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+html .btn-gray-800:focus,.btn-check:active+html .btn-gray-800:focus,html .btn-gray-800:active:focus,html .btn-gray-800.active:focus,.show>html .btn-gray-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800:focus,html[data-netbox-color-mode=dark] .btn-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-800:focus,html[data-netbox-color-mode=light] .btn-gray-800:active:focus,html[data-netbox-color-mode=light] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}html .btn-gray-800:disabled,html .btn-gray-800.disabled,html[data-netbox-color-mode=dark] .btn-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-gray-800.disabled,html[data-netbox-color-mode=light] .btn-gray-800:disabled,html[data-netbox-color-mode=light] .btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}}@media print{html .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}html .btn-gray-900:hover,html[data-netbox-color-mode=dark] .btn-gray-900:hover,html[data-netbox-color-mode=light] .btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html .btn-gray-900,html .btn-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html .btn-gray-900,.btn-check:active+html .btn-gray-900,html .btn-gray-900:active,html .btn-gray-900.active,.show>html .btn-gray-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:active,html[data-netbox-color-mode=dark] .btn-gray-900.active,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900:active,html[data-netbox-color-mode=light] .btn-gray-900.active,.show>html[data-netbox-color-mode=light] .btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html .btn-gray-900:focus,.btn-check:active+html .btn-gray-900:focus,html .btn-gray-900:active:focus,html .btn-gray-900.active:focus,.show>html .btn-gray-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900:focus,html[data-netbox-color-mode=dark] .btn-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-900:focus,html[data-netbox-color-mode=light] .btn-gray-900:active:focus,html[data-netbox-color-mode=light] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html .btn-gray-900:disabled,html .btn-gray-900.disabled,html[data-netbox-color-mode=dark] .btn-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-gray-900.disabled,html[data-netbox-color-mode=light] .btn-gray-900:disabled,html[data-netbox-color-mode=light] .btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}}@media print{html .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}html .btn-red-100:hover,html[data-netbox-color-mode=dark] .btn-red-100:hover,html[data-netbox-color-mode=light] .btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+html .btn-red-100,html .btn-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+html .btn-red-100,.btn-check:active+html .btn-red-100,html .btn-red-100:active,html .btn-red-100.active,.show>html .btn-red-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:active,html[data-netbox-color-mode=dark] .btn-red-100.active,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100:active,html[data-netbox-color-mode=light] .btn-red-100.active,.show>html[data-netbox-color-mode=light] .btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+html .btn-red-100:focus,.btn-check:active+html .btn-red-100:focus,html .btn-red-100:active:focus,html .btn-red-100.active:focus,.show>html .btn-red-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100:focus,html[data-netbox-color-mode=dark] .btn-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-100:focus,html[data-netbox-color-mode=light] .btn-red-100:active:focus,html[data-netbox-color-mode=light] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}html .btn-red-100:disabled,html .btn-red-100.disabled,html[data-netbox-color-mode=dark] .btn-red-100:disabled,html[data-netbox-color-mode=dark] .btn-red-100.disabled,html[data-netbox-color-mode=light] .btn-red-100:disabled,html[data-netbox-color-mode=light] .btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}}@media print{html .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html .btn-red-200:hover,html[data-netbox-color-mode=dark] .btn-red-200:hover,html[data-netbox-color-mode=light] .btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+html .btn-red-200,html .btn-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+html .btn-red-200,.btn-check:active+html .btn-red-200,html .btn-red-200:active,html .btn-red-200.active,.show>html .btn-red-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:active,html[data-netbox-color-mode=dark] .btn-red-200.active,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200:active,html[data-netbox-color-mode=light] .btn-red-200.active,.show>html[data-netbox-color-mode=light] .btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+html .btn-red-200:focus,.btn-check:active+html .btn-red-200:focus,html .btn-red-200:active:focus,html .btn-red-200.active:focus,.show>html .btn-red-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200:focus,html[data-netbox-color-mode=dark] .btn-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-200:focus,html[data-netbox-color-mode=light] .btn-red-200:active:focus,html[data-netbox-color-mode=light] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}html .btn-red-200:disabled,html .btn-red-200.disabled,html[data-netbox-color-mode=dark] .btn-red-200:disabled,html[data-netbox-color-mode=dark] .btn-red-200.disabled,html[data-netbox-color-mode=light] .btn-red-200:disabled,html[data-netbox-color-mode=light] .btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}}@media print{html .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}html .btn-red-300:hover,html[data-netbox-color-mode=dark] .btn-red-300:hover,html[data-netbox-color-mode=light] .btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html .btn-red-300,html .btn-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html .btn-red-300,.btn-check:active+html .btn-red-300,html .btn-red-300:active,html .btn-red-300.active,.show>html .btn-red-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:active,html[data-netbox-color-mode=dark] .btn-red-300.active,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300:active,html[data-netbox-color-mode=light] .btn-red-300.active,.show>html[data-netbox-color-mode=light] .btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html .btn-red-300:focus,.btn-check:active+html .btn-red-300:focus,html .btn-red-300:active:focus,html .btn-red-300.active:focus,.show>html .btn-red-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300:focus,html[data-netbox-color-mode=dark] .btn-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-300:focus,html[data-netbox-color-mode=light] .btn-red-300:active:focus,html[data-netbox-color-mode=light] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html .btn-red-300:disabled,html .btn-red-300.disabled,html[data-netbox-color-mode=dark] .btn-red-300:disabled,html[data-netbox-color-mode=dark] .btn-red-300.disabled,html[data-netbox-color-mode=light] .btn-red-300:disabled,html[data-netbox-color-mode=light] .btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}}@media print{html .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}html .btn-red-400:hover,html[data-netbox-color-mode=dark] .btn-red-400:hover,html[data-netbox-color-mode=light] .btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+html .btn-red-400,html .btn-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+html .btn-red-400,.btn-check:active+html .btn-red-400,html .btn-red-400:active,html .btn-red-400.active,.show>html .btn-red-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:active,html[data-netbox-color-mode=dark] .btn-red-400.active,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400:active,html[data-netbox-color-mode=light] .btn-red-400.active,.show>html[data-netbox-color-mode=light] .btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+html .btn-red-400:focus,.btn-check:active+html .btn-red-400:focus,html .btn-red-400:active:focus,html .btn-red-400.active:focus,.show>html .btn-red-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400:focus,html[data-netbox-color-mode=dark] .btn-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-400:focus,html[data-netbox-color-mode=light] .btn-red-400:active:focus,html[data-netbox-color-mode=light] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}html .btn-red-400:disabled,html .btn-red-400.disabled,html[data-netbox-color-mode=dark] .btn-red-400:disabled,html[data-netbox-color-mode=dark] .btn-red-400.disabled,html[data-netbox-color-mode=light] .btn-red-400:disabled,html[data-netbox-color-mode=light] .btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}}@media print{html .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-red-500:hover,html[data-netbox-color-mode=dark] .btn-red-500:hover,html[data-netbox-color-mode=light] .btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-red-500,html .btn-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-red-500,.btn-check:active+html .btn-red-500,html .btn-red-500:active,html .btn-red-500.active,.show>html .btn-red-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:active,html[data-netbox-color-mode=dark] .btn-red-500.active,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500:active,html[data-netbox-color-mode=light] .btn-red-500.active,.show>html[data-netbox-color-mode=light] .btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-red-500:focus,.btn-check:active+html .btn-red-500:focus,html .btn-red-500:active:focus,html .btn-red-500.active:focus,.show>html .btn-red-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500:focus,html[data-netbox-color-mode=dark] .btn-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-500:focus,html[data-netbox-color-mode=light] .btn-red-500:active:focus,html[data-netbox-color-mode=light] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-red-500:disabled,html .btn-red-500.disabled,html[data-netbox-color-mode=dark] .btn-red-500:disabled,html[data-netbox-color-mode=dark] .btn-red-500.disabled,html[data-netbox-color-mode=light] .btn-red-500:disabled,html[data-netbox-color-mode=light] .btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}html .btn-red-600:hover,html[data-netbox-color-mode=dark] .btn-red-600:hover,html[data-netbox-color-mode=light] .btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+html .btn-red-600,html .btn-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+html .btn-red-600,.btn-check:active+html .btn-red-600,html .btn-red-600:active,html .btn-red-600.active,.show>html .btn-red-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:active,html[data-netbox-color-mode=dark] .btn-red-600.active,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600:active,html[data-netbox-color-mode=light] .btn-red-600.active,.show>html[data-netbox-color-mode=light] .btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+html .btn-red-600:focus,.btn-check:active+html .btn-red-600:focus,html .btn-red-600:active:focus,html .btn-red-600.active:focus,.show>html .btn-red-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600:focus,html[data-netbox-color-mode=dark] .btn-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-600:focus,html[data-netbox-color-mode=light] .btn-red-600:active:focus,html[data-netbox-color-mode=light] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}html .btn-red-600:disabled,html .btn-red-600.disabled,html[data-netbox-color-mode=dark] .btn-red-600:disabled,html[data-netbox-color-mode=dark] .btn-red-600.disabled,html[data-netbox-color-mode=light] .btn-red-600:disabled,html[data-netbox-color-mode=light] .btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}}@media print{html .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700{color:#fff;background-color:#842029;border-color:#842029}html .btn-red-700:hover,html[data-netbox-color-mode=dark] .btn-red-700:hover,html[data-netbox-color-mode=light] .btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+html .btn-red-700,html .btn-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+html .btn-red-700,.btn-check:active+html .btn-red-700,html .btn-red-700:active,html .btn-red-700.active,.show>html .btn-red-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:active,html[data-netbox-color-mode=dark] .btn-red-700.active,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700:active,html[data-netbox-color-mode=light] .btn-red-700.active,.show>html[data-netbox-color-mode=light] .btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+html .btn-red-700:focus,.btn-check:active+html .btn-red-700:focus,html .btn-red-700:active:focus,html .btn-red-700.active:focus,.show>html .btn-red-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700:focus,html[data-netbox-color-mode=dark] .btn-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-700:focus,html[data-netbox-color-mode=light] .btn-red-700:active:focus,html[data-netbox-color-mode=light] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}html .btn-red-700:disabled,html .btn-red-700.disabled,html[data-netbox-color-mode=dark] .btn-red-700:disabled,html[data-netbox-color-mode=dark] .btn-red-700.disabled,html[data-netbox-color-mode=light] .btn-red-700:disabled,html[data-netbox-color-mode=light] .btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}html .btn-red-800:hover,html[data-netbox-color-mode=dark] .btn-red-800:hover,html[data-netbox-color-mode=light] .btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+html .btn-red-800,html .btn-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+html .btn-red-800,.btn-check:active+html .btn-red-800,html .btn-red-800:active,html .btn-red-800.active,.show>html .btn-red-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:active,html[data-netbox-color-mode=dark] .btn-red-800.active,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800:active,html[data-netbox-color-mode=light] .btn-red-800.active,.show>html[data-netbox-color-mode=light] .btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+html .btn-red-800:focus,.btn-check:active+html .btn-red-800:focus,html .btn-red-800:active:focus,html .btn-red-800.active:focus,.show>html .btn-red-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800:focus,html[data-netbox-color-mode=dark] .btn-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-800:focus,html[data-netbox-color-mode=light] .btn-red-800:active:focus,html[data-netbox-color-mode=light] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}html .btn-red-800:disabled,html .btn-red-800.disabled,html[data-netbox-color-mode=dark] .btn-red-800:disabled,html[data-netbox-color-mode=dark] .btn-red-800.disabled,html[data-netbox-color-mode=light] .btn-red-800:disabled,html[data-netbox-color-mode=light] .btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}}@media print{html .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html .btn-red-900:hover,html[data-netbox-color-mode=dark] .btn-red-900:hover,html[data-netbox-color-mode=light] .btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+html .btn-red-900,html .btn-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+html .btn-red-900,.btn-check:active+html .btn-red-900,html .btn-red-900:active,html .btn-red-900.active,.show>html .btn-red-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:active,html[data-netbox-color-mode=dark] .btn-red-900.active,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900:active,html[data-netbox-color-mode=light] .btn-red-900.active,.show>html[data-netbox-color-mode=light] .btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+html .btn-red-900:focus,.btn-check:active+html .btn-red-900:focus,html .btn-red-900:active:focus,html .btn-red-900.active:focus,.show>html .btn-red-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900:focus,html[data-netbox-color-mode=dark] .btn-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-900:focus,html[data-netbox-color-mode=light] .btn-red-900:active:focus,html[data-netbox-color-mode=light] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}html .btn-red-900:disabled,html .btn-red-900.disabled,html[data-netbox-color-mode=dark] .btn-red-900:disabled,html[data-netbox-color-mode=dark] .btn-red-900.disabled,html[data-netbox-color-mode=light] .btn-red-900:disabled,html[data-netbox-color-mode=light] .btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}}@media print{html .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}html .btn-yellow-100:hover,html[data-netbox-color-mode=dark] .btn-yellow-100:hover,html[data-netbox-color-mode=light] .btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+html .btn-yellow-100,html .btn-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+html .btn-yellow-100,.btn-check:active+html .btn-yellow-100,html .btn-yellow-100:active,html .btn-yellow-100.active,.show>html .btn-yellow-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:active,html[data-netbox-color-mode=dark] .btn-yellow-100.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100:active,html[data-netbox-color-mode=light] .btn-yellow-100.active,.show>html[data-netbox-color-mode=light] .btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+html .btn-yellow-100:focus,.btn-check:active+html .btn-yellow-100:focus,html .btn-yellow-100:active:focus,html .btn-yellow-100.active:focus,.show>html .btn-yellow-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-100:focus,html[data-netbox-color-mode=light] .btn-yellow-100:active:focus,html[data-netbox-color-mode=light] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}html .btn-yellow-100:disabled,html .btn-yellow-100.disabled,html[data-netbox-color-mode=dark] .btn-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-yellow-100.disabled,html[data-netbox-color-mode=light] .btn-yellow-100:disabled,html[data-netbox-color-mode=light] .btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}}@media print{html .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}html .btn-yellow-200:hover,html[data-netbox-color-mode=dark] .btn-yellow-200:hover,html[data-netbox-color-mode=light] .btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+html .btn-yellow-200,html .btn-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+html .btn-yellow-200,.btn-check:active+html .btn-yellow-200,html .btn-yellow-200:active,html .btn-yellow-200.active,.show>html .btn-yellow-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:active,html[data-netbox-color-mode=dark] .btn-yellow-200.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200:active,html[data-netbox-color-mode=light] .btn-yellow-200.active,.show>html[data-netbox-color-mode=light] .btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+html .btn-yellow-200:focus,.btn-check:active+html .btn-yellow-200:focus,html .btn-yellow-200:active:focus,html .btn-yellow-200.active:focus,.show>html .btn-yellow-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-200:focus,html[data-netbox-color-mode=light] .btn-yellow-200:active:focus,html[data-netbox-color-mode=light] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}html .btn-yellow-200:disabled,html .btn-yellow-200.disabled,html[data-netbox-color-mode=dark] .btn-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-yellow-200.disabled,html[data-netbox-color-mode=light] .btn-yellow-200:disabled,html[data-netbox-color-mode=light] .btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}}@media print{html .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}html .btn-yellow-300:hover,html[data-netbox-color-mode=dark] .btn-yellow-300:hover,html[data-netbox-color-mode=light] .btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html .btn-yellow-300,html .btn-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html .btn-yellow-300,.btn-check:active+html .btn-yellow-300,html .btn-yellow-300:active,html .btn-yellow-300.active,.show>html .btn-yellow-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:active,html[data-netbox-color-mode=dark] .btn-yellow-300.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300:active,html[data-netbox-color-mode=light] .btn-yellow-300.active,.show>html[data-netbox-color-mode=light] .btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html .btn-yellow-300:focus,.btn-check:active+html .btn-yellow-300:focus,html .btn-yellow-300:active:focus,html .btn-yellow-300.active:focus,.show>html .btn-yellow-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-300:focus,html[data-netbox-color-mode=light] .btn-yellow-300:active:focus,html[data-netbox-color-mode=light] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html .btn-yellow-300:disabled,html .btn-yellow-300.disabled,html[data-netbox-color-mode=dark] .btn-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-yellow-300.disabled,html[data-netbox-color-mode=light] .btn-yellow-300:disabled,html[data-netbox-color-mode=light] .btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}}@media print{html .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}html .btn-yellow-400:hover,html[data-netbox-color-mode=dark] .btn-yellow-400:hover,html[data-netbox-color-mode=light] .btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+html .btn-yellow-400,html .btn-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+html .btn-yellow-400,.btn-check:active+html .btn-yellow-400,html .btn-yellow-400:active,html .btn-yellow-400.active,.show>html .btn-yellow-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:active,html[data-netbox-color-mode=dark] .btn-yellow-400.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400:active,html[data-netbox-color-mode=light] .btn-yellow-400.active,.show>html[data-netbox-color-mode=light] .btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+html .btn-yellow-400:focus,.btn-check:active+html .btn-yellow-400:focus,html .btn-yellow-400:active:focus,html .btn-yellow-400.active:focus,.show>html .btn-yellow-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-400:focus,html[data-netbox-color-mode=light] .btn-yellow-400:active:focus,html[data-netbox-color-mode=light] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}html .btn-yellow-400:disabled,html .btn-yellow-400.disabled,html[data-netbox-color-mode=dark] .btn-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-yellow-400.disabled,html[data-netbox-color-mode=light] .btn-yellow-400:disabled,html[data-netbox-color-mode=light] .btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}}@media print{html .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-yellow-500:hover,html[data-netbox-color-mode=dark] .btn-yellow-500:hover,html[data-netbox-color-mode=light] .btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-yellow-500,html .btn-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-yellow-500,.btn-check:active+html .btn-yellow-500,html .btn-yellow-500:active,html .btn-yellow-500.active,.show>html .btn-yellow-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:active,html[data-netbox-color-mode=dark] .btn-yellow-500.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500:active,html[data-netbox-color-mode=light] .btn-yellow-500.active,.show>html[data-netbox-color-mode=light] .btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-yellow-500:focus,.btn-check:active+html .btn-yellow-500:focus,html .btn-yellow-500:active:focus,html .btn-yellow-500.active:focus,.show>html .btn-yellow-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-500:focus,html[data-netbox-color-mode=light] .btn-yellow-500:active:focus,html[data-netbox-color-mode=light] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-yellow-500:disabled,html .btn-yellow-500.disabled,html[data-netbox-color-mode=dark] .btn-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-yellow-500.disabled,html[data-netbox-color-mode=light] .btn-yellow-500:disabled,html[data-netbox-color-mode=light] .btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}html .btn-yellow-600:hover,html[data-netbox-color-mode=dark] .btn-yellow-600:hover,html[data-netbox-color-mode=light] .btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+html .btn-yellow-600,html .btn-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+html .btn-yellow-600,.btn-check:active+html .btn-yellow-600,html .btn-yellow-600:active,html .btn-yellow-600.active,.show>html .btn-yellow-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:active,html[data-netbox-color-mode=dark] .btn-yellow-600.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600:active,html[data-netbox-color-mode=light] .btn-yellow-600.active,.show>html[data-netbox-color-mode=light] .btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+html .btn-yellow-600:focus,.btn-check:active+html .btn-yellow-600:focus,html .btn-yellow-600:active:focus,html .btn-yellow-600.active:focus,.show>html .btn-yellow-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-600:focus,html[data-netbox-color-mode=light] .btn-yellow-600:active:focus,html[data-netbox-color-mode=light] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}html .btn-yellow-600:disabled,html .btn-yellow-600.disabled,html[data-netbox-color-mode=dark] .btn-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-yellow-600.disabled,html[data-netbox-color-mode=light] .btn-yellow-600:disabled,html[data-netbox-color-mode=light] .btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}}@media print{html .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}html .btn-yellow-700:hover,html[data-netbox-color-mode=dark] .btn-yellow-700:hover,html[data-netbox-color-mode=light] .btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+html .btn-yellow-700,html .btn-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+html .btn-yellow-700,.btn-check:active+html .btn-yellow-700,html .btn-yellow-700:active,html .btn-yellow-700.active,.show>html .btn-yellow-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:active,html[data-netbox-color-mode=dark] .btn-yellow-700.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700:active,html[data-netbox-color-mode=light] .btn-yellow-700.active,.show>html[data-netbox-color-mode=light] .btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+html .btn-yellow-700:focus,.btn-check:active+html .btn-yellow-700:focus,html .btn-yellow-700:active:focus,html .btn-yellow-700.active:focus,.show>html .btn-yellow-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-700:focus,html[data-netbox-color-mode=light] .btn-yellow-700:active:focus,html[data-netbox-color-mode=light] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}html .btn-yellow-700:disabled,html .btn-yellow-700.disabled,html[data-netbox-color-mode=dark] .btn-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-yellow-700.disabled,html[data-netbox-color-mode=light] .btn-yellow-700:disabled,html[data-netbox-color-mode=light] .btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}}@media print{html .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}html .btn-yellow-800:hover,html[data-netbox-color-mode=dark] .btn-yellow-800:hover,html[data-netbox-color-mode=light] .btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+html .btn-yellow-800,html .btn-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+html .btn-yellow-800,.btn-check:active+html .btn-yellow-800,html .btn-yellow-800:active,html .btn-yellow-800.active,.show>html .btn-yellow-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:active,html[data-netbox-color-mode=dark] .btn-yellow-800.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800:active,html[data-netbox-color-mode=light] .btn-yellow-800.active,.show>html[data-netbox-color-mode=light] .btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+html .btn-yellow-800:focus,.btn-check:active+html .btn-yellow-800:focus,html .btn-yellow-800:active:focus,html .btn-yellow-800.active:focus,.show>html .btn-yellow-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-800:focus,html[data-netbox-color-mode=light] .btn-yellow-800:active:focus,html[data-netbox-color-mode=light] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}html .btn-yellow-800:disabled,html .btn-yellow-800.disabled,html[data-netbox-color-mode=dark] .btn-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-yellow-800.disabled,html[data-netbox-color-mode=light] .btn-yellow-800:disabled,html[data-netbox-color-mode=light] .btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}html .btn-yellow-900:hover,html[data-netbox-color-mode=dark] .btn-yellow-900:hover,html[data-netbox-color-mode=light] .btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+html .btn-yellow-900,html .btn-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+html .btn-yellow-900,.btn-check:active+html .btn-yellow-900,html .btn-yellow-900:active,html .btn-yellow-900.active,.show>html .btn-yellow-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:active,html[data-netbox-color-mode=dark] .btn-yellow-900.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900:active,html[data-netbox-color-mode=light] .btn-yellow-900.active,.show>html[data-netbox-color-mode=light] .btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+html .btn-yellow-900:focus,.btn-check:active+html .btn-yellow-900:focus,html .btn-yellow-900:active:focus,html .btn-yellow-900.active:focus,.show>html .btn-yellow-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-900:focus,html[data-netbox-color-mode=light] .btn-yellow-900:active:focus,html[data-netbox-color-mode=light] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}html .btn-yellow-900:disabled,html .btn-yellow-900.disabled,html[data-netbox-color-mode=dark] .btn-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-yellow-900.disabled,html[data-netbox-color-mode=light] .btn-yellow-900:disabled,html[data-netbox-color-mode=light] .btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}}@media print{html .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html .btn-green-100:hover,html[data-netbox-color-mode=dark] .btn-green-100:hover,html[data-netbox-color-mode=light] .btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+html .btn-green-100,html .btn-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+html .btn-green-100,.btn-check:active+html .btn-green-100,html .btn-green-100:active,html .btn-green-100.active,.show>html .btn-green-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:active,html[data-netbox-color-mode=dark] .btn-green-100.active,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100:active,html[data-netbox-color-mode=light] .btn-green-100.active,.show>html[data-netbox-color-mode=light] .btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+html .btn-green-100:focus,.btn-check:active+html .btn-green-100:focus,html .btn-green-100:active:focus,html .btn-green-100.active:focus,.show>html .btn-green-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100:focus,html[data-netbox-color-mode=dark] .btn-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-100:focus,html[data-netbox-color-mode=light] .btn-green-100:active:focus,html[data-netbox-color-mode=light] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}html .btn-green-100:disabled,html .btn-green-100.disabled,html[data-netbox-color-mode=dark] .btn-green-100:disabled,html[data-netbox-color-mode=dark] .btn-green-100.disabled,html[data-netbox-color-mode=light] .btn-green-100:disabled,html[data-netbox-color-mode=light] .btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}}@media print{html .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html .btn-green-200:hover,html[data-netbox-color-mode=dark] .btn-green-200:hover,html[data-netbox-color-mode=light] .btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+html .btn-green-200,html .btn-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+html .btn-green-200,.btn-check:active+html .btn-green-200,html .btn-green-200:active,html .btn-green-200.active,.show>html .btn-green-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:active,html[data-netbox-color-mode=dark] .btn-green-200.active,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200:active,html[data-netbox-color-mode=light] .btn-green-200.active,.show>html[data-netbox-color-mode=light] .btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+html .btn-green-200:focus,.btn-check:active+html .btn-green-200:focus,html .btn-green-200:active:focus,html .btn-green-200.active:focus,.show>html .btn-green-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200:focus,html[data-netbox-color-mode=dark] .btn-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-200:focus,html[data-netbox-color-mode=light] .btn-green-200:active:focus,html[data-netbox-color-mode=light] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}html .btn-green-200:disabled,html .btn-green-200.disabled,html[data-netbox-color-mode=dark] .btn-green-200:disabled,html[data-netbox-color-mode=dark] .btn-green-200.disabled,html[data-netbox-color-mode=light] .btn-green-200:disabled,html[data-netbox-color-mode=light] .btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}}@media print{html .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}html .btn-green-300:hover,html[data-netbox-color-mode=dark] .btn-green-300:hover,html[data-netbox-color-mode=light] .btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html .btn-green-300,html .btn-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html .btn-green-300,.btn-check:active+html .btn-green-300,html .btn-green-300:active,html .btn-green-300.active,.show>html .btn-green-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:active,html[data-netbox-color-mode=dark] .btn-green-300.active,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300:active,html[data-netbox-color-mode=light] .btn-green-300.active,.show>html[data-netbox-color-mode=light] .btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html .btn-green-300:focus,.btn-check:active+html .btn-green-300:focus,html .btn-green-300:active:focus,html .btn-green-300.active:focus,.show>html .btn-green-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300:focus,html[data-netbox-color-mode=dark] .btn-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-300:focus,html[data-netbox-color-mode=light] .btn-green-300:active:focus,html[data-netbox-color-mode=light] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html .btn-green-300:disabled,html .btn-green-300.disabled,html[data-netbox-color-mode=dark] .btn-green-300:disabled,html[data-netbox-color-mode=dark] .btn-green-300.disabled,html[data-netbox-color-mode=light] .btn-green-300:disabled,html[data-netbox-color-mode=light] .btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}}@media print{html .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}html .btn-green-400:hover,html[data-netbox-color-mode=dark] .btn-green-400:hover,html[data-netbox-color-mode=light] .btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+html .btn-green-400,html .btn-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+html .btn-green-400,.btn-check:active+html .btn-green-400,html .btn-green-400:active,html .btn-green-400.active,.show>html .btn-green-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:active,html[data-netbox-color-mode=dark] .btn-green-400.active,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400:active,html[data-netbox-color-mode=light] .btn-green-400.active,.show>html[data-netbox-color-mode=light] .btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+html .btn-green-400:focus,.btn-check:active+html .btn-green-400:focus,html .btn-green-400:active:focus,html .btn-green-400.active:focus,.show>html .btn-green-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400:focus,html[data-netbox-color-mode=dark] .btn-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-400:focus,html[data-netbox-color-mode=light] .btn-green-400:active:focus,html[data-netbox-color-mode=light] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}html .btn-green-400:disabled,html .btn-green-400.disabled,html[data-netbox-color-mode=dark] .btn-green-400:disabled,html[data-netbox-color-mode=dark] .btn-green-400.disabled,html[data-netbox-color-mode=light] .btn-green-400:disabled,html[data-netbox-color-mode=light] .btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}}@media print{html .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500{color:#fff;background-color:#198754;border-color:#198754}html .btn-green-500:hover,html[data-netbox-color-mode=dark] .btn-green-500:hover,html[data-netbox-color-mode=light] .btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-green-500,html .btn-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-green-500,.btn-check:active+html .btn-green-500,html .btn-green-500:active,html .btn-green-500.active,.show>html .btn-green-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:active,html[data-netbox-color-mode=dark] .btn-green-500.active,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500:active,html[data-netbox-color-mode=light] .btn-green-500.active,.show>html[data-netbox-color-mode=light] .btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-green-500:focus,.btn-check:active+html .btn-green-500:focus,html .btn-green-500:active:focus,html .btn-green-500.active:focus,.show>html .btn-green-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500:focus,html[data-netbox-color-mode=dark] .btn-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-500:focus,html[data-netbox-color-mode=light] .btn-green-500:active:focus,html[data-netbox-color-mode=light] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-green-500:disabled,html .btn-green-500.disabled,html[data-netbox-color-mode=dark] .btn-green-500:disabled,html[data-netbox-color-mode=dark] .btn-green-500.disabled,html[data-netbox-color-mode=light] .btn-green-500:disabled,html[data-netbox-color-mode=light] .btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}html .btn-green-600:hover,html[data-netbox-color-mode=dark] .btn-green-600:hover,html[data-netbox-color-mode=light] .btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+html .btn-green-600,html .btn-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+html .btn-green-600,.btn-check:active+html .btn-green-600,html .btn-green-600:active,html .btn-green-600.active,.show>html .btn-green-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:active,html[data-netbox-color-mode=dark] .btn-green-600.active,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600:active,html[data-netbox-color-mode=light] .btn-green-600.active,.show>html[data-netbox-color-mode=light] .btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+html .btn-green-600:focus,.btn-check:active+html .btn-green-600:focus,html .btn-green-600:active:focus,html .btn-green-600.active:focus,.show>html .btn-green-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600:focus,html[data-netbox-color-mode=dark] .btn-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-600:focus,html[data-netbox-color-mode=light] .btn-green-600:active:focus,html[data-netbox-color-mode=light] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}html .btn-green-600:disabled,html .btn-green-600.disabled,html[data-netbox-color-mode=dark] .btn-green-600:disabled,html[data-netbox-color-mode=dark] .btn-green-600.disabled,html[data-netbox-color-mode=light] .btn-green-600:disabled,html[data-netbox-color-mode=light] .btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}}@media print{html .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}html .btn-green-700:hover,html[data-netbox-color-mode=dark] .btn-green-700:hover,html[data-netbox-color-mode=light] .btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+html .btn-green-700,html .btn-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+html .btn-green-700,.btn-check:active+html .btn-green-700,html .btn-green-700:active,html .btn-green-700.active,.show>html .btn-green-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:active,html[data-netbox-color-mode=dark] .btn-green-700.active,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700:active,html[data-netbox-color-mode=light] .btn-green-700.active,.show>html[data-netbox-color-mode=light] .btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+html .btn-green-700:focus,.btn-check:active+html .btn-green-700:focus,html .btn-green-700:active:focus,html .btn-green-700.active:focus,.show>html .btn-green-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700:focus,html[data-netbox-color-mode=dark] .btn-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-700:focus,html[data-netbox-color-mode=light] .btn-green-700:active:focus,html[data-netbox-color-mode=light] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}html .btn-green-700:disabled,html .btn-green-700.disabled,html[data-netbox-color-mode=dark] .btn-green-700:disabled,html[data-netbox-color-mode=dark] .btn-green-700.disabled,html[data-netbox-color-mode=light] .btn-green-700:disabled,html[data-netbox-color-mode=light] .btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}html .btn-green-800:hover,html[data-netbox-color-mode=dark] .btn-green-800:hover,html[data-netbox-color-mode=light] .btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+html .btn-green-800,html .btn-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+html .btn-green-800,.btn-check:active+html .btn-green-800,html .btn-green-800:active,html .btn-green-800.active,.show>html .btn-green-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:active,html[data-netbox-color-mode=dark] .btn-green-800.active,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800:active,html[data-netbox-color-mode=light] .btn-green-800.active,.show>html[data-netbox-color-mode=light] .btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+html .btn-green-800:focus,.btn-check:active+html .btn-green-800:focus,html .btn-green-800:active:focus,html .btn-green-800.active:focus,.show>html .btn-green-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800:focus,html[data-netbox-color-mode=dark] .btn-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-800:focus,html[data-netbox-color-mode=light] .btn-green-800:active:focus,html[data-netbox-color-mode=light] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}html .btn-green-800:disabled,html .btn-green-800.disabled,html[data-netbox-color-mode=dark] .btn-green-800:disabled,html[data-netbox-color-mode=dark] .btn-green-800.disabled,html[data-netbox-color-mode=light] .btn-green-800:disabled,html[data-netbox-color-mode=light] .btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}}@media print{html .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}html .btn-green-900:hover,html[data-netbox-color-mode=dark] .btn-green-900:hover,html[data-netbox-color-mode=light] .btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+html .btn-green-900,html .btn-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+html .btn-green-900,.btn-check:active+html .btn-green-900,html .btn-green-900:active,html .btn-green-900.active,.show>html .btn-green-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:active,html[data-netbox-color-mode=dark] .btn-green-900.active,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900:active,html[data-netbox-color-mode=light] .btn-green-900.active,.show>html[data-netbox-color-mode=light] .btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+html .btn-green-900:focus,.btn-check:active+html .btn-green-900:focus,html .btn-green-900:active:focus,html .btn-green-900.active:focus,.show>html .btn-green-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900:focus,html[data-netbox-color-mode=dark] .btn-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-900:focus,html[data-netbox-color-mode=light] .btn-green-900:active:focus,html[data-netbox-color-mode=light] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}html .btn-green-900:disabled,html .btn-green-900.disabled,html[data-netbox-color-mode=dark] .btn-green-900:disabled,html[data-netbox-color-mode=dark] .btn-green-900.disabled,html[data-netbox-color-mode=light] .btn-green-900:disabled,html[data-netbox-color-mode=light] .btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}}@media print{html .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html .btn-blue-100:hover,html[data-netbox-color-mode=dark] .btn-blue-100:hover,html[data-netbox-color-mode=light] .btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+html .btn-blue-100,html .btn-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+html .btn-blue-100,.btn-check:active+html .btn-blue-100,html .btn-blue-100:active,html .btn-blue-100.active,.show>html .btn-blue-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:active,html[data-netbox-color-mode=dark] .btn-blue-100.active,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100:active,html[data-netbox-color-mode=light] .btn-blue-100.active,.show>html[data-netbox-color-mode=light] .btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+html .btn-blue-100:focus,.btn-check:active+html .btn-blue-100:focus,html .btn-blue-100:active:focus,html .btn-blue-100.active:focus,.show>html .btn-blue-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100:focus,html[data-netbox-color-mode=dark] .btn-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-100:focus,html[data-netbox-color-mode=light] .btn-blue-100:active:focus,html[data-netbox-color-mode=light] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}html .btn-blue-100:disabled,html .btn-blue-100.disabled,html[data-netbox-color-mode=dark] .btn-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-blue-100.disabled,html[data-netbox-color-mode=light] .btn-blue-100:disabled,html[data-netbox-color-mode=light] .btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}}@media print{html .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html .btn-blue-200:hover,html[data-netbox-color-mode=dark] .btn-blue-200:hover,html[data-netbox-color-mode=light] .btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+html .btn-blue-200,html .btn-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+html .btn-blue-200,.btn-check:active+html .btn-blue-200,html .btn-blue-200:active,html .btn-blue-200.active,.show>html .btn-blue-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:active,html[data-netbox-color-mode=dark] .btn-blue-200.active,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200:active,html[data-netbox-color-mode=light] .btn-blue-200.active,.show>html[data-netbox-color-mode=light] .btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+html .btn-blue-200:focus,.btn-check:active+html .btn-blue-200:focus,html .btn-blue-200:active:focus,html .btn-blue-200.active:focus,.show>html .btn-blue-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200:focus,html[data-netbox-color-mode=dark] .btn-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-200:focus,html[data-netbox-color-mode=light] .btn-blue-200:active:focus,html[data-netbox-color-mode=light] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}html .btn-blue-200:disabled,html .btn-blue-200.disabled,html[data-netbox-color-mode=dark] .btn-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-blue-200.disabled,html[data-netbox-color-mode=light] .btn-blue-200:disabled,html[data-netbox-color-mode=light] .btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}}@media print{html .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html .btn-blue-300:hover,html[data-netbox-color-mode=dark] .btn-blue-300:hover,html[data-netbox-color-mode=light] .btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html .btn-blue-300,html .btn-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html .btn-blue-300,.btn-check:active+html .btn-blue-300,html .btn-blue-300:active,html .btn-blue-300.active,.show>html .btn-blue-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:active,html[data-netbox-color-mode=dark] .btn-blue-300.active,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300:active,html[data-netbox-color-mode=light] .btn-blue-300.active,.show>html[data-netbox-color-mode=light] .btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html .btn-blue-300:focus,.btn-check:active+html .btn-blue-300:focus,html .btn-blue-300:active:focus,html .btn-blue-300.active:focus,.show>html .btn-blue-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300:focus,html[data-netbox-color-mode=dark] .btn-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-300:focus,html[data-netbox-color-mode=light] .btn-blue-300:active:focus,html[data-netbox-color-mode=light] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html .btn-blue-300:disabled,html .btn-blue-300.disabled,html[data-netbox-color-mode=dark] .btn-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-blue-300.disabled,html[data-netbox-color-mode=light] .btn-blue-300:disabled,html[data-netbox-color-mode=light] .btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}}@media print{html .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html .btn-blue-400:hover,html[data-netbox-color-mode=dark] .btn-blue-400:hover,html[data-netbox-color-mode=light] .btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+html .btn-blue-400,html .btn-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+html .btn-blue-400,.btn-check:active+html .btn-blue-400,html .btn-blue-400:active,html .btn-blue-400.active,.show>html .btn-blue-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:active,html[data-netbox-color-mode=dark] .btn-blue-400.active,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400:active,html[data-netbox-color-mode=light] .btn-blue-400.active,.show>html[data-netbox-color-mode=light] .btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+html .btn-blue-400:focus,.btn-check:active+html .btn-blue-400:focus,html .btn-blue-400:active:focus,html .btn-blue-400.active:focus,.show>html .btn-blue-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400:focus,html[data-netbox-color-mode=dark] .btn-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-400:focus,html[data-netbox-color-mode=light] .btn-blue-400:active:focus,html[data-netbox-color-mode=light] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}html .btn-blue-400:disabled,html .btn-blue-400.disabled,html[data-netbox-color-mode=dark] .btn-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-blue-400.disabled,html[data-netbox-color-mode=light] .btn-blue-400:disabled,html[data-netbox-color-mode=light] .btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}}@media print{html .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .btn-blue-500:hover,html[data-netbox-color-mode=dark] .btn-blue-500:hover,html[data-netbox-color-mode=light] .btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html .btn-blue-500,html .btn-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html .btn-blue-500,.btn-check:active+html .btn-blue-500,html .btn-blue-500:active,html .btn-blue-500.active,.show>html .btn-blue-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:active,html[data-netbox-color-mode=dark] .btn-blue-500.active,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500:active,html[data-netbox-color-mode=light] .btn-blue-500.active,.show>html[data-netbox-color-mode=light] .btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html .btn-blue-500:focus,.btn-check:active+html .btn-blue-500:focus,html .btn-blue-500:active:focus,html .btn-blue-500.active:focus,.show>html .btn-blue-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500:focus,html[data-netbox-color-mode=dark] .btn-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-500:focus,html[data-netbox-color-mode=light] .btn-blue-500:active:focus,html[data-netbox-color-mode=light] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html .btn-blue-500:disabled,html .btn-blue-500.disabled,html[data-netbox-color-mode=dark] .btn-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-blue-500.disabled,html[data-netbox-color-mode=light] .btn-blue-500:disabled,html[data-netbox-color-mode=light] .btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}}@media print{html .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html .btn-blue-600:hover,html[data-netbox-color-mode=dark] .btn-blue-600:hover,html[data-netbox-color-mode=light] .btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+html .btn-blue-600,html .btn-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+html .btn-blue-600,.btn-check:active+html .btn-blue-600,html .btn-blue-600:active,html .btn-blue-600.active,.show>html .btn-blue-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:active,html[data-netbox-color-mode=dark] .btn-blue-600.active,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600:active,html[data-netbox-color-mode=light] .btn-blue-600.active,.show>html[data-netbox-color-mode=light] .btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+html .btn-blue-600:focus,.btn-check:active+html .btn-blue-600:focus,html .btn-blue-600:active:focus,html .btn-blue-600.active:focus,.show>html .btn-blue-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600:focus,html[data-netbox-color-mode=dark] .btn-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-600:focus,html[data-netbox-color-mode=light] .btn-blue-600:active:focus,html[data-netbox-color-mode=light] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}html .btn-blue-600:disabled,html .btn-blue-600.disabled,html[data-netbox-color-mode=dark] .btn-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-blue-600.disabled,html[data-netbox-color-mode=light] .btn-blue-600:disabled,html[data-netbox-color-mode=light] .btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}}@media print{html .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}html .btn-blue-700:hover,html[data-netbox-color-mode=dark] .btn-blue-700:hover,html[data-netbox-color-mode=light] .btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+html .btn-blue-700,html .btn-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+html .btn-blue-700,.btn-check:active+html .btn-blue-700,html .btn-blue-700:active,html .btn-blue-700.active,.show>html .btn-blue-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:active,html[data-netbox-color-mode=dark] .btn-blue-700.active,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700:active,html[data-netbox-color-mode=light] .btn-blue-700.active,.show>html[data-netbox-color-mode=light] .btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+html .btn-blue-700:focus,.btn-check:active+html .btn-blue-700:focus,html .btn-blue-700:active:focus,html .btn-blue-700.active:focus,.show>html .btn-blue-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700:focus,html[data-netbox-color-mode=dark] .btn-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-700:focus,html[data-netbox-color-mode=light] .btn-blue-700:active:focus,html[data-netbox-color-mode=light] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}html .btn-blue-700:disabled,html .btn-blue-700.disabled,html[data-netbox-color-mode=dark] .btn-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-blue-700.disabled,html[data-netbox-color-mode=light] .btn-blue-700:disabled,html[data-netbox-color-mode=light] .btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}html .btn-blue-800:hover,html[data-netbox-color-mode=dark] .btn-blue-800:hover,html[data-netbox-color-mode=light] .btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+html .btn-blue-800,html .btn-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+html .btn-blue-800,.btn-check:active+html .btn-blue-800,html .btn-blue-800:active,html .btn-blue-800.active,.show>html .btn-blue-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:active,html[data-netbox-color-mode=dark] .btn-blue-800.active,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800:active,html[data-netbox-color-mode=light] .btn-blue-800.active,.show>html[data-netbox-color-mode=light] .btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+html .btn-blue-800:focus,.btn-check:active+html .btn-blue-800:focus,html .btn-blue-800:active:focus,html .btn-blue-800.active:focus,.show>html .btn-blue-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800:focus,html[data-netbox-color-mode=dark] .btn-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-800:focus,html[data-netbox-color-mode=light] .btn-blue-800:active:focus,html[data-netbox-color-mode=light] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}html .btn-blue-800:disabled,html .btn-blue-800.disabled,html[data-netbox-color-mode=dark] .btn-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-blue-800.disabled,html[data-netbox-color-mode=light] .btn-blue-800:disabled,html[data-netbox-color-mode=light] .btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}}@media print{html .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}html .btn-blue-900:hover,html[data-netbox-color-mode=dark] .btn-blue-900:hover,html[data-netbox-color-mode=light] .btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+html .btn-blue-900,html .btn-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+html .btn-blue-900,.btn-check:active+html .btn-blue-900,html .btn-blue-900:active,html .btn-blue-900.active,.show>html .btn-blue-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:active,html[data-netbox-color-mode=dark] .btn-blue-900.active,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900:active,html[data-netbox-color-mode=light] .btn-blue-900.active,.show>html[data-netbox-color-mode=light] .btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+html .btn-blue-900:focus,.btn-check:active+html .btn-blue-900:focus,html .btn-blue-900:active:focus,html .btn-blue-900.active:focus,.show>html .btn-blue-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900:focus,html[data-netbox-color-mode=dark] .btn-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-900:focus,html[data-netbox-color-mode=light] .btn-blue-900:active:focus,html[data-netbox-color-mode=light] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}html .btn-blue-900:disabled,html .btn-blue-900.disabled,html[data-netbox-color-mode=dark] .btn-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-blue-900.disabled,html[data-netbox-color-mode=light] .btn-blue-900:disabled,html[data-netbox-color-mode=light] .btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}}@media print{html .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}html .btn-cyan-100:hover,html[data-netbox-color-mode=dark] .btn-cyan-100:hover,html[data-netbox-color-mode=light] .btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+html .btn-cyan-100,html .btn-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+html .btn-cyan-100,.btn-check:active+html .btn-cyan-100,html .btn-cyan-100:active,html .btn-cyan-100.active,.show>html .btn-cyan-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:active,html[data-netbox-color-mode=dark] .btn-cyan-100.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100:active,html[data-netbox-color-mode=light] .btn-cyan-100.active,.show>html[data-netbox-color-mode=light] .btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+html .btn-cyan-100:focus,.btn-check:active+html .btn-cyan-100:focus,html .btn-cyan-100:active:focus,html .btn-cyan-100.active:focus,.show>html .btn-cyan-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-100:focus,html[data-netbox-color-mode=light] .btn-cyan-100:active:focus,html[data-netbox-color-mode=light] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}html .btn-cyan-100:disabled,html .btn-cyan-100.disabled,html[data-netbox-color-mode=dark] .btn-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-cyan-100.disabled,html[data-netbox-color-mode=light] .btn-cyan-100:disabled,html[data-netbox-color-mode=light] .btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}}@media print{html .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html .btn-cyan-200:hover,html[data-netbox-color-mode=dark] .btn-cyan-200:hover,html[data-netbox-color-mode=light] .btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+html .btn-cyan-200,html .btn-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+html .btn-cyan-200,.btn-check:active+html .btn-cyan-200,html .btn-cyan-200:active,html .btn-cyan-200.active,.show>html .btn-cyan-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:active,html[data-netbox-color-mode=dark] .btn-cyan-200.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200:active,html[data-netbox-color-mode=light] .btn-cyan-200.active,.show>html[data-netbox-color-mode=light] .btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+html .btn-cyan-200:focus,.btn-check:active+html .btn-cyan-200:focus,html .btn-cyan-200:active:focus,html .btn-cyan-200.active:focus,.show>html .btn-cyan-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-200:focus,html[data-netbox-color-mode=light] .btn-cyan-200:active:focus,html[data-netbox-color-mode=light] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}html .btn-cyan-200:disabled,html .btn-cyan-200.disabled,html[data-netbox-color-mode=dark] .btn-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-cyan-200.disabled,html[data-netbox-color-mode=light] .btn-cyan-200:disabled,html[data-netbox-color-mode=light] .btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}}@media print{html .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}html .btn-cyan-300:hover,html[data-netbox-color-mode=dark] .btn-cyan-300:hover,html[data-netbox-color-mode=light] .btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html .btn-cyan-300,html .btn-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html .btn-cyan-300,.btn-check:active+html .btn-cyan-300,html .btn-cyan-300:active,html .btn-cyan-300.active,.show>html .btn-cyan-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:active,html[data-netbox-color-mode=dark] .btn-cyan-300.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300:active,html[data-netbox-color-mode=light] .btn-cyan-300.active,.show>html[data-netbox-color-mode=light] .btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html .btn-cyan-300:focus,.btn-check:active+html .btn-cyan-300:focus,html .btn-cyan-300:active:focus,html .btn-cyan-300.active:focus,.show>html .btn-cyan-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-300:focus,html[data-netbox-color-mode=light] .btn-cyan-300:active:focus,html[data-netbox-color-mode=light] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html .btn-cyan-300:disabled,html .btn-cyan-300.disabled,html[data-netbox-color-mode=dark] .btn-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-cyan-300.disabled,html[data-netbox-color-mode=light] .btn-cyan-300:disabled,html[data-netbox-color-mode=light] .btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}}@media print{html .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html .btn-cyan-400:hover,html[data-netbox-color-mode=dark] .btn-cyan-400:hover,html[data-netbox-color-mode=light] .btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+html .btn-cyan-400,html .btn-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+html .btn-cyan-400,.btn-check:active+html .btn-cyan-400,html .btn-cyan-400:active,html .btn-cyan-400.active,.show>html .btn-cyan-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:active,html[data-netbox-color-mode=dark] .btn-cyan-400.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400:active,html[data-netbox-color-mode=light] .btn-cyan-400.active,.show>html[data-netbox-color-mode=light] .btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+html .btn-cyan-400:focus,.btn-check:active+html .btn-cyan-400:focus,html .btn-cyan-400:active:focus,html .btn-cyan-400.active:focus,.show>html .btn-cyan-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-400:focus,html[data-netbox-color-mode=light] .btn-cyan-400:active:focus,html[data-netbox-color-mode=light] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}html .btn-cyan-400:disabled,html .btn-cyan-400.disabled,html[data-netbox-color-mode=dark] .btn-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-cyan-400.disabled,html[data-netbox-color-mode=light] .btn-cyan-400:disabled,html[data-netbox-color-mode=light] .btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}}@media print{html .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-cyan-500:hover,html[data-netbox-color-mode=dark] .btn-cyan-500:hover,html[data-netbox-color-mode=light] .btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-cyan-500,html .btn-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-cyan-500,.btn-check:active+html .btn-cyan-500,html .btn-cyan-500:active,html .btn-cyan-500.active,.show>html .btn-cyan-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:active,html[data-netbox-color-mode=dark] .btn-cyan-500.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500:active,html[data-netbox-color-mode=light] .btn-cyan-500.active,.show>html[data-netbox-color-mode=light] .btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-cyan-500:focus,.btn-check:active+html .btn-cyan-500:focus,html .btn-cyan-500:active:focus,html .btn-cyan-500.active:focus,.show>html .btn-cyan-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-500:focus,html[data-netbox-color-mode=light] .btn-cyan-500:active:focus,html[data-netbox-color-mode=light] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-cyan-500:disabled,html .btn-cyan-500.disabled,html[data-netbox-color-mode=dark] .btn-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-cyan-500.disabled,html[data-netbox-color-mode=light] .btn-cyan-500:disabled,html[data-netbox-color-mode=light] .btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html .btn-cyan-600:hover,html[data-netbox-color-mode=dark] .btn-cyan-600:hover,html[data-netbox-color-mode=light] .btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+html .btn-cyan-600,html .btn-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+html .btn-cyan-600,.btn-check:active+html .btn-cyan-600,html .btn-cyan-600:active,html .btn-cyan-600.active,.show>html .btn-cyan-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:active,html[data-netbox-color-mode=dark] .btn-cyan-600.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600:active,html[data-netbox-color-mode=light] .btn-cyan-600.active,.show>html[data-netbox-color-mode=light] .btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+html .btn-cyan-600:focus,.btn-check:active+html .btn-cyan-600:focus,html .btn-cyan-600:active:focus,html .btn-cyan-600.active:focus,.show>html .btn-cyan-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-600:focus,html[data-netbox-color-mode=light] .btn-cyan-600:active:focus,html[data-netbox-color-mode=light] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}html .btn-cyan-600:disabled,html .btn-cyan-600.disabled,html[data-netbox-color-mode=dark] .btn-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-cyan-600.disabled,html[data-netbox-color-mode=light] .btn-cyan-600:disabled,html[data-netbox-color-mode=light] .btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}}@media print{html .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}html .btn-cyan-700:hover,html[data-netbox-color-mode=dark] .btn-cyan-700:hover,html[data-netbox-color-mode=light] .btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+html .btn-cyan-700,html .btn-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+html .btn-cyan-700,.btn-check:active+html .btn-cyan-700,html .btn-cyan-700:active,html .btn-cyan-700.active,.show>html .btn-cyan-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:active,html[data-netbox-color-mode=dark] .btn-cyan-700.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700:active,html[data-netbox-color-mode=light] .btn-cyan-700.active,.show>html[data-netbox-color-mode=light] .btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+html .btn-cyan-700:focus,.btn-check:active+html .btn-cyan-700:focus,html .btn-cyan-700:active:focus,html .btn-cyan-700.active:focus,.show>html .btn-cyan-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-700:focus,html[data-netbox-color-mode=light] .btn-cyan-700:active:focus,html[data-netbox-color-mode=light] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}html .btn-cyan-700:disabled,html .btn-cyan-700.disabled,html[data-netbox-color-mode=dark] .btn-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-cyan-700.disabled,html[data-netbox-color-mode=light] .btn-cyan-700:disabled,html[data-netbox-color-mode=light] .btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}}@media print{html .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}html .btn-cyan-800:hover,html[data-netbox-color-mode=dark] .btn-cyan-800:hover,html[data-netbox-color-mode=light] .btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+html .btn-cyan-800,html .btn-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+html .btn-cyan-800,.btn-check:active+html .btn-cyan-800,html .btn-cyan-800:active,html .btn-cyan-800.active,.show>html .btn-cyan-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:active,html[data-netbox-color-mode=dark] .btn-cyan-800.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800:active,html[data-netbox-color-mode=light] .btn-cyan-800.active,.show>html[data-netbox-color-mode=light] .btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+html .btn-cyan-800:focus,.btn-check:active+html .btn-cyan-800:focus,html .btn-cyan-800:active:focus,html .btn-cyan-800.active:focus,.show>html .btn-cyan-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-800:focus,html[data-netbox-color-mode=light] .btn-cyan-800:active:focus,html[data-netbox-color-mode=light] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}html .btn-cyan-800:disabled,html .btn-cyan-800.disabled,html[data-netbox-color-mode=dark] .btn-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-cyan-800.disabled,html[data-netbox-color-mode=light] .btn-cyan-800:disabled,html[data-netbox-color-mode=light] .btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}html .btn-cyan-900:hover,html[data-netbox-color-mode=dark] .btn-cyan-900:hover,html[data-netbox-color-mode=light] .btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+html .btn-cyan-900,html .btn-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+html .btn-cyan-900,.btn-check:active+html .btn-cyan-900,html .btn-cyan-900:active,html .btn-cyan-900.active,.show>html .btn-cyan-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:active,html[data-netbox-color-mode=dark] .btn-cyan-900.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900:active,html[data-netbox-color-mode=light] .btn-cyan-900.active,.show>html[data-netbox-color-mode=light] .btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+html .btn-cyan-900:focus,.btn-check:active+html .btn-cyan-900:focus,html .btn-cyan-900:active:focus,html .btn-cyan-900.active:focus,.show>html .btn-cyan-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-900:focus,html[data-netbox-color-mode=light] .btn-cyan-900:active:focus,html[data-netbox-color-mode=light] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}html .btn-cyan-900:disabled,html .btn-cyan-900.disabled,html[data-netbox-color-mode=dark] .btn-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-cyan-900.disabled,html[data-netbox-color-mode=light] .btn-cyan-900:disabled,html[data-netbox-color-mode=light] .btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}}@media print{html .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}html .btn-indigo-100:hover,html[data-netbox-color-mode=dark] .btn-indigo-100:hover,html[data-netbox-color-mode=light] .btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+html .btn-indigo-100,html .btn-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+html .btn-indigo-100,.btn-check:active+html .btn-indigo-100,html .btn-indigo-100:active,html .btn-indigo-100.active,.show>html .btn-indigo-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:active,html[data-netbox-color-mode=dark] .btn-indigo-100.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100:active,html[data-netbox-color-mode=light] .btn-indigo-100.active,.show>html[data-netbox-color-mode=light] .btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+html .btn-indigo-100:focus,.btn-check:active+html .btn-indigo-100:focus,html .btn-indigo-100:active:focus,html .btn-indigo-100.active:focus,.show>html .btn-indigo-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-100:focus,html[data-netbox-color-mode=light] .btn-indigo-100:active:focus,html[data-netbox-color-mode=light] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}html .btn-indigo-100:disabled,html .btn-indigo-100.disabled,html[data-netbox-color-mode=dark] .btn-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-indigo-100.disabled,html[data-netbox-color-mode=light] .btn-indigo-100:disabled,html[data-netbox-color-mode=light] .btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}}@media print{html .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}html .btn-indigo-200:hover,html[data-netbox-color-mode=dark] .btn-indigo-200:hover,html[data-netbox-color-mode=light] .btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+html .btn-indigo-200,html .btn-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+html .btn-indigo-200,.btn-check:active+html .btn-indigo-200,html .btn-indigo-200:active,html .btn-indigo-200.active,.show>html .btn-indigo-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:active,html[data-netbox-color-mode=dark] .btn-indigo-200.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200:active,html[data-netbox-color-mode=light] .btn-indigo-200.active,.show>html[data-netbox-color-mode=light] .btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+html .btn-indigo-200:focus,.btn-check:active+html .btn-indigo-200:focus,html .btn-indigo-200:active:focus,html .btn-indigo-200.active:focus,.show>html .btn-indigo-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-200:focus,html[data-netbox-color-mode=light] .btn-indigo-200:active:focus,html[data-netbox-color-mode=light] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}html .btn-indigo-200:disabled,html .btn-indigo-200.disabled,html[data-netbox-color-mode=dark] .btn-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-indigo-200.disabled,html[data-netbox-color-mode=light] .btn-indigo-200:disabled,html[data-netbox-color-mode=light] .btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}}@media print{html .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}html .btn-indigo-300:hover,html[data-netbox-color-mode=dark] .btn-indigo-300:hover,html[data-netbox-color-mode=light] .btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html .btn-indigo-300,html .btn-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html .btn-indigo-300,.btn-check:active+html .btn-indigo-300,html .btn-indigo-300:active,html .btn-indigo-300.active,.show>html .btn-indigo-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:active,html[data-netbox-color-mode=dark] .btn-indigo-300.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300:active,html[data-netbox-color-mode=light] .btn-indigo-300.active,.show>html[data-netbox-color-mode=light] .btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html .btn-indigo-300:focus,.btn-check:active+html .btn-indigo-300:focus,html .btn-indigo-300:active:focus,html .btn-indigo-300.active:focus,.show>html .btn-indigo-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-300:focus,html[data-netbox-color-mode=light] .btn-indigo-300:active:focus,html[data-netbox-color-mode=light] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html .btn-indigo-300:disabled,html .btn-indigo-300.disabled,html[data-netbox-color-mode=dark] .btn-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-indigo-300.disabled,html[data-netbox-color-mode=light] .btn-indigo-300:disabled,html[data-netbox-color-mode=light] .btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}}@media print{html .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}html .btn-indigo-400:hover,html[data-netbox-color-mode=dark] .btn-indigo-400:hover,html[data-netbox-color-mode=light] .btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+html .btn-indigo-400,html .btn-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+html .btn-indigo-400,.btn-check:active+html .btn-indigo-400,html .btn-indigo-400:active,html .btn-indigo-400.active,.show>html .btn-indigo-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:active,html[data-netbox-color-mode=dark] .btn-indigo-400.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400:active,html[data-netbox-color-mode=light] .btn-indigo-400.active,.show>html[data-netbox-color-mode=light] .btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+html .btn-indigo-400:focus,.btn-check:active+html .btn-indigo-400:focus,html .btn-indigo-400:active:focus,html .btn-indigo-400.active:focus,.show>html .btn-indigo-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-400:focus,html[data-netbox-color-mode=light] .btn-indigo-400:active:focus,html[data-netbox-color-mode=light] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}html .btn-indigo-400:disabled,html .btn-indigo-400.disabled,html[data-netbox-color-mode=dark] .btn-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-indigo-400.disabled,html[data-netbox-color-mode=light] .btn-indigo-400:disabled,html[data-netbox-color-mode=light] .btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}}@media print{html .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}html .btn-indigo-500:hover,html[data-netbox-color-mode=dark] .btn-indigo-500:hover,html[data-netbox-color-mode=light] .btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html .btn-indigo-500,html .btn-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html .btn-indigo-500,.btn-check:active+html .btn-indigo-500,html .btn-indigo-500:active,html .btn-indigo-500.active,.show>html .btn-indigo-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:active,html[data-netbox-color-mode=dark] .btn-indigo-500.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500:active,html[data-netbox-color-mode=light] .btn-indigo-500.active,.show>html[data-netbox-color-mode=light] .btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html .btn-indigo-500:focus,.btn-check:active+html .btn-indigo-500:focus,html .btn-indigo-500:active:focus,html .btn-indigo-500.active:focus,.show>html .btn-indigo-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-500:focus,html[data-netbox-color-mode=light] .btn-indigo-500:active:focus,html[data-netbox-color-mode=light] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html .btn-indigo-500:disabled,html .btn-indigo-500.disabled,html[data-netbox-color-mode=dark] .btn-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-indigo-500.disabled,html[data-netbox-color-mode=light] .btn-indigo-500:disabled,html[data-netbox-color-mode=light] .btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}}@media print{html .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}html .btn-indigo-600:hover,html[data-netbox-color-mode=dark] .btn-indigo-600:hover,html[data-netbox-color-mode=light] .btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+html .btn-indigo-600,html .btn-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+html .btn-indigo-600,.btn-check:active+html .btn-indigo-600,html .btn-indigo-600:active,html .btn-indigo-600.active,.show>html .btn-indigo-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:active,html[data-netbox-color-mode=dark] .btn-indigo-600.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600:active,html[data-netbox-color-mode=light] .btn-indigo-600.active,.show>html[data-netbox-color-mode=light] .btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+html .btn-indigo-600:focus,.btn-check:active+html .btn-indigo-600:focus,html .btn-indigo-600:active:focus,html .btn-indigo-600.active:focus,.show>html .btn-indigo-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-600:focus,html[data-netbox-color-mode=light] .btn-indigo-600:active:focus,html[data-netbox-color-mode=light] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}html .btn-indigo-600:disabled,html .btn-indigo-600.disabled,html[data-netbox-color-mode=dark] .btn-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-indigo-600.disabled,html[data-netbox-color-mode=light] .btn-indigo-600:disabled,html[data-netbox-color-mode=light] .btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}}@media print{html .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html .btn-indigo-700:hover,html[data-netbox-color-mode=dark] .btn-indigo-700:hover,html[data-netbox-color-mode=light] .btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+html .btn-indigo-700,html .btn-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+html .btn-indigo-700,.btn-check:active+html .btn-indigo-700,html .btn-indigo-700:active,html .btn-indigo-700.active,.show>html .btn-indigo-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:active,html[data-netbox-color-mode=dark] .btn-indigo-700.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700:active,html[data-netbox-color-mode=light] .btn-indigo-700.active,.show>html[data-netbox-color-mode=light] .btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+html .btn-indigo-700:focus,.btn-check:active+html .btn-indigo-700:focus,html .btn-indigo-700:active:focus,html .btn-indigo-700.active:focus,.show>html .btn-indigo-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-700:focus,html[data-netbox-color-mode=light] .btn-indigo-700:active:focus,html[data-netbox-color-mode=light] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}html .btn-indigo-700:disabled,html .btn-indigo-700.disabled,html[data-netbox-color-mode=dark] .btn-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-indigo-700.disabled,html[data-netbox-color-mode=light] .btn-indigo-700:disabled,html[data-netbox-color-mode=light] .btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}html .btn-indigo-800:hover,html[data-netbox-color-mode=dark] .btn-indigo-800:hover,html[data-netbox-color-mode=light] .btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+html .btn-indigo-800,html .btn-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+html .btn-indigo-800,.btn-check:active+html .btn-indigo-800,html .btn-indigo-800:active,html .btn-indigo-800.active,.show>html .btn-indigo-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:active,html[data-netbox-color-mode=dark] .btn-indigo-800.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800:active,html[data-netbox-color-mode=light] .btn-indigo-800.active,.show>html[data-netbox-color-mode=light] .btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+html .btn-indigo-800:focus,.btn-check:active+html .btn-indigo-800:focus,html .btn-indigo-800:active:focus,html .btn-indigo-800.active:focus,.show>html .btn-indigo-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-800:focus,html[data-netbox-color-mode=light] .btn-indigo-800:active:focus,html[data-netbox-color-mode=light] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}html .btn-indigo-800:disabled,html .btn-indigo-800.disabled,html[data-netbox-color-mode=dark] .btn-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-indigo-800.disabled,html[data-netbox-color-mode=light] .btn-indigo-800:disabled,html[data-netbox-color-mode=light] .btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}}@media print{html .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}html .btn-indigo-900:hover,html[data-netbox-color-mode=dark] .btn-indigo-900:hover,html[data-netbox-color-mode=light] .btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+html .btn-indigo-900,html .btn-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+html .btn-indigo-900,.btn-check:active+html .btn-indigo-900,html .btn-indigo-900:active,html .btn-indigo-900.active,.show>html .btn-indigo-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:active,html[data-netbox-color-mode=dark] .btn-indigo-900.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900:active,html[data-netbox-color-mode=light] .btn-indigo-900.active,.show>html[data-netbox-color-mode=light] .btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+html .btn-indigo-900:focus,.btn-check:active+html .btn-indigo-900:focus,html .btn-indigo-900:active:focus,html .btn-indigo-900.active:focus,.show>html .btn-indigo-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-900:focus,html[data-netbox-color-mode=light] .btn-indigo-900:active:focus,html[data-netbox-color-mode=light] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}html .btn-indigo-900:disabled,html .btn-indigo-900.disabled,html[data-netbox-color-mode=dark] .btn-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-indigo-900.disabled,html[data-netbox-color-mode=light] .btn-indigo-900:disabled,html[data-netbox-color-mode=light] .btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}}@media print{html .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html .btn-purple-100:hover,html[data-netbox-color-mode=dark] .btn-purple-100:hover,html[data-netbox-color-mode=light] .btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+html .btn-purple-100,html .btn-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+html .btn-purple-100,.btn-check:active+html .btn-purple-100,html .btn-purple-100:active,html .btn-purple-100.active,.show>html .btn-purple-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:active,html[data-netbox-color-mode=dark] .btn-purple-100.active,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100:active,html[data-netbox-color-mode=light] .btn-purple-100.active,.show>html[data-netbox-color-mode=light] .btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+html .btn-purple-100:focus,.btn-check:active+html .btn-purple-100:focus,html .btn-purple-100:active:focus,html .btn-purple-100.active:focus,.show>html .btn-purple-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100:focus,html[data-netbox-color-mode=dark] .btn-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-100:focus,html[data-netbox-color-mode=light] .btn-purple-100:active:focus,html[data-netbox-color-mode=light] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}html .btn-purple-100:disabled,html .btn-purple-100.disabled,html[data-netbox-color-mode=dark] .btn-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-purple-100.disabled,html[data-netbox-color-mode=light] .btn-purple-100:disabled,html[data-netbox-color-mode=light] .btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}}@media print{html .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html .btn-purple-200:hover,html[data-netbox-color-mode=dark] .btn-purple-200:hover,html[data-netbox-color-mode=light] .btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+html .btn-purple-200,html .btn-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+html .btn-purple-200,.btn-check:active+html .btn-purple-200,html .btn-purple-200:active,html .btn-purple-200.active,.show>html .btn-purple-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:active,html[data-netbox-color-mode=dark] .btn-purple-200.active,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200:active,html[data-netbox-color-mode=light] .btn-purple-200.active,.show>html[data-netbox-color-mode=light] .btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+html .btn-purple-200:focus,.btn-check:active+html .btn-purple-200:focus,html .btn-purple-200:active:focus,html .btn-purple-200.active:focus,.show>html .btn-purple-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200:focus,html[data-netbox-color-mode=dark] .btn-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-200:focus,html[data-netbox-color-mode=light] .btn-purple-200:active:focus,html[data-netbox-color-mode=light] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}html .btn-purple-200:disabled,html .btn-purple-200.disabled,html[data-netbox-color-mode=dark] .btn-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-purple-200.disabled,html[data-netbox-color-mode=light] .btn-purple-200:disabled,html[data-netbox-color-mode=light] .btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}}@media print{html .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}html .btn-purple-300:hover,html[data-netbox-color-mode=dark] .btn-purple-300:hover,html[data-netbox-color-mode=light] .btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html .btn-purple-300,html .btn-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html .btn-purple-300,.btn-check:active+html .btn-purple-300,html .btn-purple-300:active,html .btn-purple-300.active,.show>html .btn-purple-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:active,html[data-netbox-color-mode=dark] .btn-purple-300.active,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300:active,html[data-netbox-color-mode=light] .btn-purple-300.active,.show>html[data-netbox-color-mode=light] .btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html .btn-purple-300:focus,.btn-check:active+html .btn-purple-300:focus,html .btn-purple-300:active:focus,html .btn-purple-300.active:focus,.show>html .btn-purple-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300:focus,html[data-netbox-color-mode=dark] .btn-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-300:focus,html[data-netbox-color-mode=light] .btn-purple-300:active:focus,html[data-netbox-color-mode=light] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html .btn-purple-300:disabled,html .btn-purple-300.disabled,html[data-netbox-color-mode=dark] .btn-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-purple-300.disabled,html[data-netbox-color-mode=light] .btn-purple-300:disabled,html[data-netbox-color-mode=light] .btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}}@media print{html .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}html .btn-purple-400:hover,html[data-netbox-color-mode=dark] .btn-purple-400:hover,html[data-netbox-color-mode=light] .btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+html .btn-purple-400,html .btn-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+html .btn-purple-400,.btn-check:active+html .btn-purple-400,html .btn-purple-400:active,html .btn-purple-400.active,.show>html .btn-purple-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:active,html[data-netbox-color-mode=dark] .btn-purple-400.active,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400:active,html[data-netbox-color-mode=light] .btn-purple-400.active,.show>html[data-netbox-color-mode=light] .btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+html .btn-purple-400:focus,.btn-check:active+html .btn-purple-400:focus,html .btn-purple-400:active:focus,html .btn-purple-400.active:focus,.show>html .btn-purple-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400:focus,html[data-netbox-color-mode=dark] .btn-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-400:focus,html[data-netbox-color-mode=light] .btn-purple-400:active:focus,html[data-netbox-color-mode=light] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}html .btn-purple-400:disabled,html .btn-purple-400.disabled,html[data-netbox-color-mode=dark] .btn-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-purple-400.disabled,html[data-netbox-color-mode=light] .btn-purple-400:disabled,html[data-netbox-color-mode=light] .btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}}@media print{html .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html .btn-purple-500:hover,html[data-netbox-color-mode=dark] .btn-purple-500:hover,html[data-netbox-color-mode=light] .btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html .btn-purple-500,html .btn-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html .btn-purple-500,.btn-check:active+html .btn-purple-500,html .btn-purple-500:active,html .btn-purple-500.active,.show>html .btn-purple-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:active,html[data-netbox-color-mode=dark] .btn-purple-500.active,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500:active,html[data-netbox-color-mode=light] .btn-purple-500.active,.show>html[data-netbox-color-mode=light] .btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html .btn-purple-500:focus,.btn-check:active+html .btn-purple-500:focus,html .btn-purple-500:active:focus,html .btn-purple-500.active:focus,.show>html .btn-purple-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500:focus,html[data-netbox-color-mode=dark] .btn-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-500:focus,html[data-netbox-color-mode=light] .btn-purple-500:active:focus,html[data-netbox-color-mode=light] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html .btn-purple-500:disabled,html .btn-purple-500.disabled,html[data-netbox-color-mode=dark] .btn-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-purple-500.disabled,html[data-netbox-color-mode=light] .btn-purple-500:disabled,html[data-netbox-color-mode=light] .btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}}@media print{html .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}html .btn-purple-600:hover,html[data-netbox-color-mode=dark] .btn-purple-600:hover,html[data-netbox-color-mode=light] .btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+html .btn-purple-600,html .btn-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+html .btn-purple-600,.btn-check:active+html .btn-purple-600,html .btn-purple-600:active,html .btn-purple-600.active,.show>html .btn-purple-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:active,html[data-netbox-color-mode=dark] .btn-purple-600.active,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600:active,html[data-netbox-color-mode=light] .btn-purple-600.active,.show>html[data-netbox-color-mode=light] .btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+html .btn-purple-600:focus,.btn-check:active+html .btn-purple-600:focus,html .btn-purple-600:active:focus,html .btn-purple-600.active:focus,.show>html .btn-purple-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600:focus,html[data-netbox-color-mode=dark] .btn-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-600:focus,html[data-netbox-color-mode=light] .btn-purple-600:active:focus,html[data-netbox-color-mode=light] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}html .btn-purple-600:disabled,html .btn-purple-600.disabled,html[data-netbox-color-mode=dark] .btn-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-purple-600.disabled,html[data-netbox-color-mode=light] .btn-purple-600:disabled,html[data-netbox-color-mode=light] .btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}}@media print{html .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}html .btn-purple-700:hover,html[data-netbox-color-mode=dark] .btn-purple-700:hover,html[data-netbox-color-mode=light] .btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+html .btn-purple-700,html .btn-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+html .btn-purple-700,.btn-check:active+html .btn-purple-700,html .btn-purple-700:active,html .btn-purple-700.active,.show>html .btn-purple-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:active,html[data-netbox-color-mode=dark] .btn-purple-700.active,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700:active,html[data-netbox-color-mode=light] .btn-purple-700.active,.show>html[data-netbox-color-mode=light] .btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+html .btn-purple-700:focus,.btn-check:active+html .btn-purple-700:focus,html .btn-purple-700:active:focus,html .btn-purple-700.active:focus,.show>html .btn-purple-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700:focus,html[data-netbox-color-mode=dark] .btn-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-700:focus,html[data-netbox-color-mode=light] .btn-purple-700:active:focus,html[data-netbox-color-mode=light] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}html .btn-purple-700:disabled,html .btn-purple-700.disabled,html[data-netbox-color-mode=dark] .btn-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-purple-700.disabled,html[data-netbox-color-mode=light] .btn-purple-700:disabled,html[data-netbox-color-mode=light] .btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html .btn-purple-800:hover,html[data-netbox-color-mode=dark] .btn-purple-800:hover,html[data-netbox-color-mode=light] .btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+html .btn-purple-800,html .btn-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+html .btn-purple-800,.btn-check:active+html .btn-purple-800,html .btn-purple-800:active,html .btn-purple-800.active,.show>html .btn-purple-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:active,html[data-netbox-color-mode=dark] .btn-purple-800.active,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800:active,html[data-netbox-color-mode=light] .btn-purple-800.active,.show>html[data-netbox-color-mode=light] .btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+html .btn-purple-800:focus,.btn-check:active+html .btn-purple-800:focus,html .btn-purple-800:active:focus,html .btn-purple-800.active:focus,.show>html .btn-purple-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800:focus,html[data-netbox-color-mode=dark] .btn-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-800:focus,html[data-netbox-color-mode=light] .btn-purple-800:active:focus,html[data-netbox-color-mode=light] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}html .btn-purple-800:disabled,html .btn-purple-800.disabled,html[data-netbox-color-mode=dark] .btn-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-purple-800.disabled,html[data-netbox-color-mode=light] .btn-purple-800:disabled,html[data-netbox-color-mode=light] .btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}}@media print{html .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}html .btn-purple-900:hover,html[data-netbox-color-mode=dark] .btn-purple-900:hover,html[data-netbox-color-mode=light] .btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+html .btn-purple-900,html .btn-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+html .btn-purple-900,.btn-check:active+html .btn-purple-900,html .btn-purple-900:active,html .btn-purple-900.active,.show>html .btn-purple-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:active,html[data-netbox-color-mode=dark] .btn-purple-900.active,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900:active,html[data-netbox-color-mode=light] .btn-purple-900.active,.show>html[data-netbox-color-mode=light] .btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+html .btn-purple-900:focus,.btn-check:active+html .btn-purple-900:focus,html .btn-purple-900:active:focus,html .btn-purple-900.active:focus,.show>html .btn-purple-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900:focus,html[data-netbox-color-mode=dark] .btn-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-900:focus,html[data-netbox-color-mode=light] .btn-purple-900:active:focus,html[data-netbox-color-mode=light] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}html .btn-purple-900:disabled,html .btn-purple-900.disabled,html[data-netbox-color-mode=dark] .btn-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-purple-900.disabled,html[data-netbox-color-mode=light] .btn-purple-900:disabled,html[data-netbox-color-mode=light] .btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}}@media print{html .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html .btn-pink-100:hover,html[data-netbox-color-mode=dark] .btn-pink-100:hover,html[data-netbox-color-mode=light] .btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+html .btn-pink-100,html .btn-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+html .btn-pink-100,.btn-check:active+html .btn-pink-100,html .btn-pink-100:active,html .btn-pink-100.active,.show>html .btn-pink-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:active,html[data-netbox-color-mode=dark] .btn-pink-100.active,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100:active,html[data-netbox-color-mode=light] .btn-pink-100.active,.show>html[data-netbox-color-mode=light] .btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+html .btn-pink-100:focus,.btn-check:active+html .btn-pink-100:focus,html .btn-pink-100:active:focus,html .btn-pink-100.active:focus,.show>html .btn-pink-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100:focus,html[data-netbox-color-mode=dark] .btn-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-100:focus,html[data-netbox-color-mode=light] .btn-pink-100:active:focus,html[data-netbox-color-mode=light] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}html .btn-pink-100:disabled,html .btn-pink-100.disabled,html[data-netbox-color-mode=dark] .btn-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-pink-100.disabled,html[data-netbox-color-mode=light] .btn-pink-100:disabled,html[data-netbox-color-mode=light] .btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}}@media print{html .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}html .btn-pink-200:hover,html[data-netbox-color-mode=dark] .btn-pink-200:hover,html[data-netbox-color-mode=light] .btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+html .btn-pink-200,html .btn-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+html .btn-pink-200,.btn-check:active+html .btn-pink-200,html .btn-pink-200:active,html .btn-pink-200.active,.show>html .btn-pink-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:active,html[data-netbox-color-mode=dark] .btn-pink-200.active,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200:active,html[data-netbox-color-mode=light] .btn-pink-200.active,.show>html[data-netbox-color-mode=light] .btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+html .btn-pink-200:focus,.btn-check:active+html .btn-pink-200:focus,html .btn-pink-200:active:focus,html .btn-pink-200.active:focus,.show>html .btn-pink-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200:focus,html[data-netbox-color-mode=dark] .btn-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-200:focus,html[data-netbox-color-mode=light] .btn-pink-200:active:focus,html[data-netbox-color-mode=light] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}html .btn-pink-200:disabled,html .btn-pink-200.disabled,html[data-netbox-color-mode=dark] .btn-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-pink-200.disabled,html[data-netbox-color-mode=light] .btn-pink-200:disabled,html[data-netbox-color-mode=light] .btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}}@media print{html .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}html .btn-pink-300:hover,html[data-netbox-color-mode=dark] .btn-pink-300:hover,html[data-netbox-color-mode=light] .btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html .btn-pink-300,html .btn-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html .btn-pink-300,.btn-check:active+html .btn-pink-300,html .btn-pink-300:active,html .btn-pink-300.active,.show>html .btn-pink-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:active,html[data-netbox-color-mode=dark] .btn-pink-300.active,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300:active,html[data-netbox-color-mode=light] .btn-pink-300.active,.show>html[data-netbox-color-mode=light] .btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html .btn-pink-300:focus,.btn-check:active+html .btn-pink-300:focus,html .btn-pink-300:active:focus,html .btn-pink-300.active:focus,.show>html .btn-pink-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300:focus,html[data-netbox-color-mode=dark] .btn-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-300:focus,html[data-netbox-color-mode=light] .btn-pink-300:active:focus,html[data-netbox-color-mode=light] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html .btn-pink-300:disabled,html .btn-pink-300.disabled,html[data-netbox-color-mode=dark] .btn-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-pink-300.disabled,html[data-netbox-color-mode=light] .btn-pink-300:disabled,html[data-netbox-color-mode=light] .btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}}@media print{html .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}html .btn-pink-400:hover,html[data-netbox-color-mode=dark] .btn-pink-400:hover,html[data-netbox-color-mode=light] .btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+html .btn-pink-400,html .btn-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+html .btn-pink-400,.btn-check:active+html .btn-pink-400,html .btn-pink-400:active,html .btn-pink-400.active,.show>html .btn-pink-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:active,html[data-netbox-color-mode=dark] .btn-pink-400.active,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400:active,html[data-netbox-color-mode=light] .btn-pink-400.active,.show>html[data-netbox-color-mode=light] .btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+html .btn-pink-400:focus,.btn-check:active+html .btn-pink-400:focus,html .btn-pink-400:active:focus,html .btn-pink-400.active:focus,.show>html .btn-pink-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400:focus,html[data-netbox-color-mode=dark] .btn-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-400:focus,html[data-netbox-color-mode=light] .btn-pink-400:active:focus,html[data-netbox-color-mode=light] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}html .btn-pink-400:disabled,html .btn-pink-400.disabled,html[data-netbox-color-mode=dark] .btn-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-pink-400.disabled,html[data-netbox-color-mode=light] .btn-pink-400:disabled,html[data-netbox-color-mode=light] .btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}}@media print{html .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}html .btn-pink-500:hover,html[data-netbox-color-mode=dark] .btn-pink-500:hover,html[data-netbox-color-mode=light] .btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html .btn-pink-500,html .btn-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html .btn-pink-500,.btn-check:active+html .btn-pink-500,html .btn-pink-500:active,html .btn-pink-500.active,.show>html .btn-pink-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:active,html[data-netbox-color-mode=dark] .btn-pink-500.active,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500:active,html[data-netbox-color-mode=light] .btn-pink-500.active,.show>html[data-netbox-color-mode=light] .btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html .btn-pink-500:focus,.btn-check:active+html .btn-pink-500:focus,html .btn-pink-500:active:focus,html .btn-pink-500.active:focus,.show>html .btn-pink-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500:focus,html[data-netbox-color-mode=dark] .btn-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-500:focus,html[data-netbox-color-mode=light] .btn-pink-500:active:focus,html[data-netbox-color-mode=light] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html .btn-pink-500:disabled,html .btn-pink-500.disabled,html[data-netbox-color-mode=dark] .btn-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-pink-500.disabled,html[data-netbox-color-mode=light] .btn-pink-500:disabled,html[data-netbox-color-mode=light] .btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}}@media print{html .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}html .btn-pink-600:hover,html[data-netbox-color-mode=dark] .btn-pink-600:hover,html[data-netbox-color-mode=light] .btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+html .btn-pink-600,html .btn-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+html .btn-pink-600,.btn-check:active+html .btn-pink-600,html .btn-pink-600:active,html .btn-pink-600.active,.show>html .btn-pink-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:active,html[data-netbox-color-mode=dark] .btn-pink-600.active,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600:active,html[data-netbox-color-mode=light] .btn-pink-600.active,.show>html[data-netbox-color-mode=light] .btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+html .btn-pink-600:focus,.btn-check:active+html .btn-pink-600:focus,html .btn-pink-600:active:focus,html .btn-pink-600.active:focus,.show>html .btn-pink-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600:focus,html[data-netbox-color-mode=dark] .btn-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-600:focus,html[data-netbox-color-mode=light] .btn-pink-600:active:focus,html[data-netbox-color-mode=light] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}html .btn-pink-600:disabled,html .btn-pink-600.disabled,html[data-netbox-color-mode=dark] .btn-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-pink-600.disabled,html[data-netbox-color-mode=light] .btn-pink-600:disabled,html[data-netbox-color-mode=light] .btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}}@media print{html .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}html .btn-pink-700:hover,html[data-netbox-color-mode=dark] .btn-pink-700:hover,html[data-netbox-color-mode=light] .btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+html .btn-pink-700,html .btn-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+html .btn-pink-700,.btn-check:active+html .btn-pink-700,html .btn-pink-700:active,html .btn-pink-700.active,.show>html .btn-pink-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:active,html[data-netbox-color-mode=dark] .btn-pink-700.active,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700:active,html[data-netbox-color-mode=light] .btn-pink-700.active,.show>html[data-netbox-color-mode=light] .btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+html .btn-pink-700:focus,.btn-check:active+html .btn-pink-700:focus,html .btn-pink-700:active:focus,html .btn-pink-700.active:focus,.show>html .btn-pink-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700:focus,html[data-netbox-color-mode=dark] .btn-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-700:focus,html[data-netbox-color-mode=light] .btn-pink-700:active:focus,html[data-netbox-color-mode=light] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}html .btn-pink-700:disabled,html .btn-pink-700.disabled,html[data-netbox-color-mode=dark] .btn-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-pink-700.disabled,html[data-netbox-color-mode=light] .btn-pink-700:disabled,html[data-netbox-color-mode=light] .btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}html .btn-pink-800:hover,html[data-netbox-color-mode=dark] .btn-pink-800:hover,html[data-netbox-color-mode=light] .btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+html .btn-pink-800,html .btn-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+html .btn-pink-800,.btn-check:active+html .btn-pink-800,html .btn-pink-800:active,html .btn-pink-800.active,.show>html .btn-pink-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:active,html[data-netbox-color-mode=dark] .btn-pink-800.active,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800:active,html[data-netbox-color-mode=light] .btn-pink-800.active,.show>html[data-netbox-color-mode=light] .btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+html .btn-pink-800:focus,.btn-check:active+html .btn-pink-800:focus,html .btn-pink-800:active:focus,html .btn-pink-800.active:focus,.show>html .btn-pink-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800:focus,html[data-netbox-color-mode=dark] .btn-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-800:focus,html[data-netbox-color-mode=light] .btn-pink-800:active:focus,html[data-netbox-color-mode=light] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}html .btn-pink-800:disabled,html .btn-pink-800.disabled,html[data-netbox-color-mode=dark] .btn-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-pink-800.disabled,html[data-netbox-color-mode=light] .btn-pink-800:disabled,html[data-netbox-color-mode=light] .btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}}@media print{html .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html .btn-pink-900:hover,html[data-netbox-color-mode=dark] .btn-pink-900:hover,html[data-netbox-color-mode=light] .btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+html .btn-pink-900,html .btn-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+html .btn-pink-900,.btn-check:active+html .btn-pink-900,html .btn-pink-900:active,html .btn-pink-900.active,.show>html .btn-pink-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:active,html[data-netbox-color-mode=dark] .btn-pink-900.active,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900:active,html[data-netbox-color-mode=light] .btn-pink-900.active,.show>html[data-netbox-color-mode=light] .btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+html .btn-pink-900:focus,.btn-check:active+html .btn-pink-900:focus,html .btn-pink-900:active:focus,html .btn-pink-900.active:focus,.show>html .btn-pink-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900:focus,html[data-netbox-color-mode=dark] .btn-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-900:focus,html[data-netbox-color-mode=light] .btn-pink-900:active:focus,html[data-netbox-color-mode=light] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}html .btn-pink-900:disabled,html .btn-pink-900.disabled,html[data-netbox-color-mode=dark] .btn-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-pink-900.disabled,html[data-netbox-color-mode=light] .btn-pink-900:disabled,html[data-netbox-color-mode=light] .btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}}@media print{html .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary{color:#337ab7;border-color:#337ab7}html .btn-outline-primary:hover,html[data-netbox-color-mode=dark] .btn-outline-primary:hover,html[data-netbox-color-mode=light] .btn-outline-primary:hover{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:focus+html .btn-outline-primary,html .btn-outline-primary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-check:checked+html .btn-outline-primary,.btn-check:active+html .btn-outline-primary,html .btn-outline-primary:active,html .btn-outline-primary.active,html .btn-outline-primary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:active,html[data-netbox-color-mode=dark] .btn-outline-primary.active,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary:active,html[data-netbox-color-mode=light] .btn-outline-primary.active,html[data-netbox-color-mode=light] .btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:checked+html .btn-outline-primary:focus,.btn-check:active+html .btn-outline-primary:focus,html .btn-outline-primary:active:focus,html .btn-outline-primary.active:focus,html .btn-outline-primary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,html[data-netbox-color-mode=dark] .btn-outline-primary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-primary:focus,html[data-netbox-color-mode=light] .btn-outline-primary:active:focus,html[data-netbox-color-mode=light] .btn-outline-primary.active:focus,html[data-netbox-color-mode=light] .btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #337ab780}html .btn-outline-primary:disabled,html .btn-outline-primary.disabled,html[data-netbox-color-mode=dark] .btn-outline-primary:disabled,html[data-netbox-color-mode=dark] .btn-outline-primary.disabled,html[data-netbox-color-mode=light] .btn-outline-primary:disabled,html[data-netbox-color-mode=light] .btn-outline-primary.disabled{color:#337ab7;background-color:transparent}}@media print{html .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary{color:#6c757d;border-color:#6c757d}html .btn-outline-secondary:hover,html[data-netbox-color-mode=dark] .btn-outline-secondary:hover,html[data-netbox-color-mode=light] .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html .btn-outline-secondary,html .btn-outline-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html .btn-outline-secondary,.btn-check:active+html .btn-outline-secondary,html .btn-outline-secondary:active,html .btn-outline-secondary.active,html .btn-outline-secondary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:active,html[data-netbox-color-mode=dark] .btn-outline-secondary.active,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary:active,html[data-netbox-color-mode=light] .btn-outline-secondary.active,html[data-netbox-color-mode=light] .btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html .btn-outline-secondary:focus,.btn-check:active+html .btn-outline-secondary:focus,html .btn-outline-secondary:active:focus,html .btn-outline-secondary.active:focus,html .btn-outline-secondary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-secondary:focus,html[data-netbox-color-mode=light] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=light] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=light] .btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html .btn-outline-secondary:disabled,html .btn-outline-secondary.disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary:disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary.disabled,html[data-netbox-color-mode=light] .btn-outline-secondary:disabled,html[data-netbox-color-mode=light] .btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}}@media print{html .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success{color:#198754;border-color:#198754}html .btn-outline-success:hover,html[data-netbox-color-mode=dark] .btn-outline-success:hover,html[data-netbox-color-mode=light] .btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-success,html .btn-outline-success:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-success,.btn-check:active+html .btn-outline-success,html .btn-outline-success:active,html .btn-outline-success.active,html .btn-outline-success.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:active,html[data-netbox-color-mode=dark] .btn-outline-success.active,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success:active,html[data-netbox-color-mode=light] .btn-outline-success.active,html[data-netbox-color-mode=light] .btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-success:focus,.btn-check:active+html .btn-outline-success:focus,html .btn-outline-success:active:focus,html .btn-outline-success.active:focus,html .btn-outline-success.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success:focus,html[data-netbox-color-mode=dark] .btn-outline-success:active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-success:focus,html[data-netbox-color-mode=light] .btn-outline-success:active:focus,html[data-netbox-color-mode=light] .btn-outline-success.active:focus,html[data-netbox-color-mode=light] .btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-success:disabled,html .btn-outline-success.disabled,html[data-netbox-color-mode=dark] .btn-outline-success:disabled,html[data-netbox-color-mode=dark] .btn-outline-success.disabled,html[data-netbox-color-mode=light] .btn-outline-success:disabled,html[data-netbox-color-mode=light] .btn-outline-success.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-info:hover,html[data-netbox-color-mode=dark] .btn-outline-info:hover,html[data-netbox-color-mode=light] .btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-info,html .btn-outline-info:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-info,.btn-check:active+html .btn-outline-info,html .btn-outline-info:active,html .btn-outline-info.active,html .btn-outline-info.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:active,html[data-netbox-color-mode=dark] .btn-outline-info.active,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info:active,html[data-netbox-color-mode=light] .btn-outline-info.active,html[data-netbox-color-mode=light] .btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-info:focus,.btn-check:active+html .btn-outline-info:focus,html .btn-outline-info:active:focus,html .btn-outline-info.active:focus,html .btn-outline-info.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info:focus,html[data-netbox-color-mode=dark] .btn-outline-info:active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-info:focus,html[data-netbox-color-mode=light] .btn-outline-info:active:focus,html[data-netbox-color-mode=light] .btn-outline-info.active:focus,html[data-netbox-color-mode=light] .btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-info:disabled,html .btn-outline-info.disabled,html[data-netbox-color-mode=dark] .btn-outline-info:disabled,html[data-netbox-color-mode=dark] .btn-outline-info.disabled,html[data-netbox-color-mode=light] .btn-outline-info:disabled,html[data-netbox-color-mode=light] .btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning{color:#ffc107;border-color:#ffc107}html .btn-outline-warning:hover,html[data-netbox-color-mode=dark] .btn-outline-warning:hover,html[data-netbox-color-mode=light] .btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-warning,html .btn-outline-warning:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-warning,.btn-check:active+html .btn-outline-warning,html .btn-outline-warning:active,html .btn-outline-warning.active,html .btn-outline-warning.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:active,html[data-netbox-color-mode=dark] .btn-outline-warning.active,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning:active,html[data-netbox-color-mode=light] .btn-outline-warning.active,html[data-netbox-color-mode=light] .btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-warning:focus,.btn-check:active+html .btn-outline-warning:focus,html .btn-outline-warning:active:focus,html .btn-outline-warning.active:focus,html .btn-outline-warning.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,html[data-netbox-color-mode=dark] .btn-outline-warning:active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-warning:focus,html[data-netbox-color-mode=light] .btn-outline-warning:active:focus,html[data-netbox-color-mode=light] .btn-outline-warning.active:focus,html[data-netbox-color-mode=light] .btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-warning:disabled,html .btn-outline-warning.disabled,html[data-netbox-color-mode=dark] .btn-outline-warning:disabled,html[data-netbox-color-mode=dark] .btn-outline-warning.disabled,html[data-netbox-color-mode=light] .btn-outline-warning:disabled,html[data-netbox-color-mode=light] .btn-outline-warning.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger{color:#dc3545;border-color:#dc3545}html .btn-outline-danger:hover,html[data-netbox-color-mode=dark] .btn-outline-danger:hover,html[data-netbox-color-mode=light] .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-danger,html .btn-outline-danger:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-danger,.btn-check:active+html .btn-outline-danger,html .btn-outline-danger:active,html .btn-outline-danger.active,html .btn-outline-danger.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:active,html[data-netbox-color-mode=dark] .btn-outline-danger.active,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger:active,html[data-netbox-color-mode=light] .btn-outline-danger.active,html[data-netbox-color-mode=light] .btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-danger:focus,.btn-check:active+html .btn-outline-danger:focus,html .btn-outline-danger:active:focus,html .btn-outline-danger.active:focus,html .btn-outline-danger.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,html[data-netbox-color-mode=dark] .btn-outline-danger:active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-danger:focus,html[data-netbox-color-mode=light] .btn-outline-danger:active:focus,html[data-netbox-color-mode=light] .btn-outline-danger.active:focus,html[data-netbox-color-mode=light] .btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-danger:disabled,html .btn-outline-danger.disabled,html[data-netbox-color-mode=dark] .btn-outline-danger:disabled,html[data-netbox-color-mode=dark] .btn-outline-danger.disabled,html[data-netbox-color-mode=light] .btn-outline-danger:disabled,html[data-netbox-color-mode=light] .btn-outline-danger.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}html .btn-outline-light:hover,html[data-netbox-color-mode=dark] .btn-outline-light:hover,html[data-netbox-color-mode=light] .btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html .btn-outline-light,html .btn-outline-light:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html .btn-outline-light,.btn-check:active+html .btn-outline-light,html .btn-outline-light:active,html .btn-outline-light.active,html .btn-outline-light.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:active,html[data-netbox-color-mode=dark] .btn-outline-light.active,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light:active,html[data-netbox-color-mode=light] .btn-outline-light.active,html[data-netbox-color-mode=light] .btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html .btn-outline-light:focus,.btn-check:active+html .btn-outline-light:focus,html .btn-outline-light:active:focus,html .btn-outline-light.active:focus,html .btn-outline-light.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light:focus,html[data-netbox-color-mode=dark] .btn-outline-light:active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-light:focus,html[data-netbox-color-mode=light] .btn-outline-light:active:focus,html[data-netbox-color-mode=light] .btn-outline-light.active:focus,html[data-netbox-color-mode=light] .btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html .btn-outline-light:disabled,html .btn-outline-light.disabled,html[data-netbox-color-mode=dark] .btn-outline-light:disabled,html[data-netbox-color-mode=dark] .btn-outline-light.disabled,html[data-netbox-color-mode=light] .btn-outline-light:disabled,html[data-netbox-color-mode=light] .btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}}@media print{html .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark{color:#212529;border-color:#212529}html .btn-outline-dark:hover,html[data-netbox-color-mode=dark] .btn-outline-dark:hover,html[data-netbox-color-mode=light] .btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html .btn-outline-dark,html .btn-outline-dark:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html .btn-outline-dark,.btn-check:active+html .btn-outline-dark,html .btn-outline-dark:active,html .btn-outline-dark.active,html .btn-outline-dark.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:active,html[data-netbox-color-mode=dark] .btn-outline-dark.active,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark:active,html[data-netbox-color-mode=light] .btn-outline-dark.active,html[data-netbox-color-mode=light] .btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html .btn-outline-dark:focus,.btn-check:active+html .btn-outline-dark:focus,html .btn-outline-dark:active:focus,html .btn-outline-dark.active:focus,html .btn-outline-dark.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,html[data-netbox-color-mode=dark] .btn-outline-dark:active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-dark:focus,html[data-netbox-color-mode=light] .btn-outline-dark:active:focus,html[data-netbox-color-mode=light] .btn-outline-dark.active:focus,html[data-netbox-color-mode=light] .btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html .btn-outline-dark:disabled,html .btn-outline-dark.disabled,html[data-netbox-color-mode=dark] .btn-outline-dark:disabled,html[data-netbox-color-mode=dark] .btn-outline-dark.disabled,html[data-netbox-color-mode=light] .btn-outline-dark:disabled,html[data-netbox-color-mode=light] .btn-outline-dark.disabled{color:#212529;background-color:transparent}}@media print{html .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red{color:#dc3545;border-color:#dc3545}html .btn-outline-red:hover,html[data-netbox-color-mode=dark] .btn-outline-red:hover,html[data-netbox-color-mode=light] .btn-outline-red:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-red,html .btn-outline-red:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-red,.btn-check:active+html .btn-outline-red,html .btn-outline-red:active,html .btn-outline-red.active,html .btn-outline-red.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:active,html[data-netbox-color-mode=dark] .btn-outline-red.active,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red:active,html[data-netbox-color-mode=light] .btn-outline-red.active,html[data-netbox-color-mode=light] .btn-outline-red.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-red:focus,.btn-check:active+html .btn-outline-red:focus,html .btn-outline-red:active:focus,html .btn-outline-red.active:focus,html .btn-outline-red.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red:focus,html[data-netbox-color-mode=dark] .btn-outline-red:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red:focus,html[data-netbox-color-mode=light] .btn-outline-red:active:focus,html[data-netbox-color-mode=light] .btn-outline-red.active:focus,html[data-netbox-color-mode=light] .btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-red:disabled,html .btn-outline-red.disabled,html[data-netbox-color-mode=dark] .btn-outline-red:disabled,html[data-netbox-color-mode=dark] .btn-outline-red.disabled,html[data-netbox-color-mode=light] .btn-outline-red:disabled,html[data-netbox-color-mode=light] .btn-outline-red.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow{color:#ffc107;border-color:#ffc107}html .btn-outline-yellow:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow:hover,html[data-netbox-color-mode=light] .btn-outline-yellow:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-yellow,html .btn-outline-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-yellow,.btn-check:active+html .btn-outline-yellow,html .btn-outline-yellow:active,html .btn-outline-yellow.active,html .btn-outline-yellow.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:active,html[data-netbox-color-mode=dark] .btn-outline-yellow.active,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow:active,html[data-netbox-color-mode=light] .btn-outline-yellow.active,html[data-netbox-color-mode=light] .btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-yellow:focus,.btn-check:active+html .btn-outline-yellow:focus,html .btn-outline-yellow:active:focus,html .btn-outline-yellow.active:focus,html .btn-outline-yellow.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow:focus,html[data-netbox-color-mode=light] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-yellow:disabled,html .btn-outline-yellow.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green{color:#198754;border-color:#198754}html .btn-outline-green:hover,html[data-netbox-color-mode=dark] .btn-outline-green:hover,html[data-netbox-color-mode=light] .btn-outline-green:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-green,html .btn-outline-green:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-green,.btn-check:active+html .btn-outline-green,html .btn-outline-green:active,html .btn-outline-green.active,html .btn-outline-green.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:active,html[data-netbox-color-mode=dark] .btn-outline-green.active,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green:active,html[data-netbox-color-mode=light] .btn-outline-green.active,html[data-netbox-color-mode=light] .btn-outline-green.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-green:focus,.btn-check:active+html .btn-outline-green:focus,html .btn-outline-green:active:focus,html .btn-outline-green.active:focus,html .btn-outline-green.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green:focus,html[data-netbox-color-mode=dark] .btn-outline-green:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green:focus,html[data-netbox-color-mode=light] .btn-outline-green:active:focus,html[data-netbox-color-mode=light] .btn-outline-green.active:focus,html[data-netbox-color-mode=light] .btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-green:disabled,html .btn-outline-green.disabled,html[data-netbox-color-mode=dark] .btn-outline-green:disabled,html[data-netbox-color-mode=dark] .btn-outline-green.disabled,html[data-netbox-color-mode=light] .btn-outline-green:disabled,html[data-netbox-color-mode=light] .btn-outline-green.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue{color:#0d6efd;border-color:#0d6efd}html .btn-outline-blue:hover,html[data-netbox-color-mode=dark] .btn-outline-blue:hover,html[data-netbox-color-mode=light] .btn-outline-blue:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html .btn-outline-blue,html .btn-outline-blue:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html .btn-outline-blue,.btn-check:active+html .btn-outline-blue,html .btn-outline-blue:active,html .btn-outline-blue.active,html .btn-outline-blue.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:active,html[data-netbox-color-mode=dark] .btn-outline-blue.active,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue:active,html[data-netbox-color-mode=light] .btn-outline-blue.active,html[data-netbox-color-mode=light] .btn-outline-blue.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html .btn-outline-blue:focus,.btn-check:active+html .btn-outline-blue:focus,html .btn-outline-blue:active:focus,html .btn-outline-blue.active:focus,html .btn-outline-blue.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,html[data-netbox-color-mode=dark] .btn-outline-blue:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue:focus,html[data-netbox-color-mode=light] .btn-outline-blue:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html .btn-outline-blue:disabled,html .btn-outline-blue.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue.disabled,html[data-netbox-color-mode=light] .btn-outline-blue:disabled,html[data-netbox-color-mode=light] .btn-outline-blue.disabled{color:#0d6efd;background-color:transparent}}@media print{html .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-cyan:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan:hover,html[data-netbox-color-mode=light] .btn-outline-cyan:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-cyan,html .btn-outline-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-cyan,.btn-check:active+html .btn-outline-cyan,html .btn-outline-cyan:active,html .btn-outline-cyan.active,html .btn-outline-cyan.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:active,html[data-netbox-color-mode=dark] .btn-outline-cyan.active,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan:active,html[data-netbox-color-mode=light] .btn-outline-cyan.active,html[data-netbox-color-mode=light] .btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-cyan:focus,.btn-check:active+html .btn-outline-cyan:focus,html .btn-outline-cyan:active:focus,html .btn-outline-cyan.active:focus,html .btn-outline-cyan.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan:focus,html[data-netbox-color-mode=light] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-cyan:disabled,html .btn-outline-cyan.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo{color:#6610f2;border-color:#6610f2}html .btn-outline-indigo:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo:hover,html[data-netbox-color-mode=light] .btn-outline-indigo:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html .btn-outline-indigo,html .btn-outline-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html .btn-outline-indigo,.btn-check:active+html .btn-outline-indigo,html .btn-outline-indigo:active,html .btn-outline-indigo.active,html .btn-outline-indigo.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:active,html[data-netbox-color-mode=dark] .btn-outline-indigo.active,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo:active,html[data-netbox-color-mode=light] .btn-outline-indigo.active,html[data-netbox-color-mode=light] .btn-outline-indigo.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html .btn-outline-indigo:focus,.btn-check:active+html .btn-outline-indigo:focus,html .btn-outline-indigo:active:focus,html .btn-outline-indigo.active:focus,html .btn-outline-indigo.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo:focus,html[data-netbox-color-mode=light] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html .btn-outline-indigo:disabled,html .btn-outline-indigo.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo.disabled{color:#6610f2;background-color:transparent}}@media print{html .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple{color:#6f42c1;border-color:#6f42c1}html .btn-outline-purple:hover,html[data-netbox-color-mode=dark] .btn-outline-purple:hover,html[data-netbox-color-mode=light] .btn-outline-purple:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html .btn-outline-purple,html .btn-outline-purple:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html .btn-outline-purple,.btn-check:active+html .btn-outline-purple,html .btn-outline-purple:active,html .btn-outline-purple.active,html .btn-outline-purple.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:active,html[data-netbox-color-mode=dark] .btn-outline-purple.active,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple:active,html[data-netbox-color-mode=light] .btn-outline-purple.active,html[data-netbox-color-mode=light] .btn-outline-purple.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html .btn-outline-purple:focus,.btn-check:active+html .btn-outline-purple:focus,html .btn-outline-purple:active:focus,html .btn-outline-purple.active:focus,html .btn-outline-purple.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,html[data-netbox-color-mode=dark] .btn-outline-purple:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple:focus,html[data-netbox-color-mode=light] .btn-outline-purple:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html .btn-outline-purple:disabled,html .btn-outline-purple.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple.disabled,html[data-netbox-color-mode=light] .btn-outline-purple:disabled,html[data-netbox-color-mode=light] .btn-outline-purple.disabled{color:#6f42c1;background-color:transparent}}@media print{html .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink{color:#d63384;border-color:#d63384}html .btn-outline-pink:hover,html[data-netbox-color-mode=dark] .btn-outline-pink:hover,html[data-netbox-color-mode=light] .btn-outline-pink:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html .btn-outline-pink,html .btn-outline-pink:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html .btn-outline-pink,.btn-check:active+html .btn-outline-pink,html .btn-outline-pink:active,html .btn-outline-pink.active,html .btn-outline-pink.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:active,html[data-netbox-color-mode=dark] .btn-outline-pink.active,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink:active,html[data-netbox-color-mode=light] .btn-outline-pink.active,html[data-netbox-color-mode=light] .btn-outline-pink.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html .btn-outline-pink:focus,.btn-check:active+html .btn-outline-pink:focus,html .btn-outline-pink:active:focus,html .btn-outline-pink.active:focus,html .btn-outline-pink.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,html[data-netbox-color-mode=dark] .btn-outline-pink:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink:focus,html[data-netbox-color-mode=light] .btn-outline-pink:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html .btn-outline-pink:disabled,html .btn-outline-pink.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink.disabled,html[data-netbox-color-mode=light] .btn-outline-pink:disabled,html[data-netbox-color-mode=light] .btn-outline-pink.disabled{color:#d63384;background-color:transparent}}@media print{html .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker{color:#1b1f22;border-color:#1b1f22}html .btn-outline-darker:hover,html[data-netbox-color-mode=dark] .btn-outline-darker:hover,html[data-netbox-color-mode=light] .btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+html .btn-outline-darker,html .btn-outline-darker:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+html .btn-outline-darker,.btn-check:active+html .btn-outline-darker,html .btn-outline-darker:active,html .btn-outline-darker.active,html .btn-outline-darker.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:active,html[data-netbox-color-mode=dark] .btn-outline-darker.active,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker:active,html[data-netbox-color-mode=light] .btn-outline-darker.active,html[data-netbox-color-mode=light] .btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+html .btn-outline-darker:focus,.btn-check:active+html .btn-outline-darker:focus,html .btn-outline-darker:active:focus,html .btn-outline-darker.active:focus,html .btn-outline-darker.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,html[data-netbox-color-mode=dark] .btn-outline-darker:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darker:focus,html[data-netbox-color-mode=light] .btn-outline-darker:active:focus,html[data-netbox-color-mode=light] .btn-outline-darker.active:focus,html[data-netbox-color-mode=light] .btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}html .btn-outline-darker:disabled,html .btn-outline-darker.disabled,html[data-netbox-color-mode=dark] .btn-outline-darker:disabled,html[data-netbox-color-mode=dark] .btn-outline-darker.disabled,html[data-netbox-color-mode=light] .btn-outline-darker:disabled,html[data-netbox-color-mode=light] .btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}}@media print{html .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest{color:#171b1d;border-color:#171b1d}html .btn-outline-darkest:hover,html[data-netbox-color-mode=dark] .btn-outline-darkest:hover,html[data-netbox-color-mode=light] .btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+html .btn-outline-darkest,html .btn-outline-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+html .btn-outline-darkest,.btn-check:active+html .btn-outline-darkest,html .btn-outline-darkest:active,html .btn-outline-darkest.active,html .btn-outline-darkest.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:active,html[data-netbox-color-mode=dark] .btn-outline-darkest.active,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest:active,html[data-netbox-color-mode=light] .btn-outline-darkest.active,html[data-netbox-color-mode=light] .btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+html .btn-outline-darkest:focus,.btn-check:active+html .btn-outline-darkest:focus,html .btn-outline-darkest:active:focus,html .btn-outline-darkest.active:focus,html .btn-outline-darkest.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darkest:focus,html[data-netbox-color-mode=light] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=light] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=light] .btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}html .btn-outline-darkest:disabled,html .btn-outline-darkest.disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest:disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest.disabled,html[data-netbox-color-mode=light] .btn-outline-darkest:disabled,html[data-netbox-color-mode=light] .btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}}@media print{html .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray{color:#ced4da;border-color:#ced4da}html .btn-outline-gray:hover,html[data-netbox-color-mode=dark] .btn-outline-gray:hover,html[data-netbox-color-mode=light] .btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html .btn-outline-gray,html .btn-outline-gray:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html .btn-outline-gray,.btn-check:active+html .btn-outline-gray,html .btn-outline-gray:active,html .btn-outline-gray.active,html .btn-outline-gray.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:active,html[data-netbox-color-mode=dark] .btn-outline-gray.active,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray:active,html[data-netbox-color-mode=light] .btn-outline-gray.active,html[data-netbox-color-mode=light] .btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html .btn-outline-gray:focus,.btn-check:active+html .btn-outline-gray:focus,html .btn-outline-gray:active:focus,html .btn-outline-gray.active:focus,html .btn-outline-gray.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,html[data-netbox-color-mode=dark] .btn-outline-gray:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray:focus,html[data-netbox-color-mode=light] .btn-outline-gray:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html .btn-outline-gray:disabled,html .btn-outline-gray.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray.disabled,html[data-netbox-color-mode=light] .btn-outline-gray:disabled,html[data-netbox-color-mode=light] .btn-outline-gray.disabled{color:#ced4da;background-color:transparent}}@media print{html .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}html .btn-outline-gray-100:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-100:hover,html[data-netbox-color-mode=light] .btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html .btn-outline-gray-100,html .btn-outline-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html .btn-outline-gray-100,.btn-check:active+html .btn-outline-gray-100,html .btn-outline-gray-100:active,html .btn-outline-gray-100.active,html .btn-outline-gray-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100:active,html[data-netbox-color-mode=light] .btn-outline-gray-100.active,html[data-netbox-color-mode=light] .btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html .btn-outline-gray-100:focus,.btn-check:active+html .btn-outline-gray-100:focus,html .btn-outline-gray-100:active:focus,html .btn-outline-gray-100.active:focus,html .btn-outline-gray-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-100:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html .btn-outline-gray-100:disabled,html .btn-outline-gray-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}}@media print{html .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}html .btn-outline-gray-200:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-200:hover,html[data-netbox-color-mode=light] .btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+html .btn-outline-gray-200,html .btn-outline-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+html .btn-outline-gray-200,.btn-check:active+html .btn-outline-gray-200,html .btn-outline-gray-200:active,html .btn-outline-gray-200.active,html .btn-outline-gray-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200:active,html[data-netbox-color-mode=light] .btn-outline-gray-200.active,html[data-netbox-color-mode=light] .btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+html .btn-outline-gray-200:focus,.btn-check:active+html .btn-outline-gray-200:focus,html .btn-outline-gray-200:active:focus,html .btn-outline-gray-200.active:focus,html .btn-outline-gray-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-200:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}html .btn-outline-gray-200:disabled,html .btn-outline-gray-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}}@media print{html .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}html .btn-outline-gray-300:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-300:hover,html[data-netbox-color-mode=light] .btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html .btn-outline-gray-300,html .btn-outline-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html .btn-outline-gray-300,.btn-check:active+html .btn-outline-gray-300,html .btn-outline-gray-300:active,html .btn-outline-gray-300.active,html .btn-outline-gray-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300:active,html[data-netbox-color-mode=light] .btn-outline-gray-300.active,html[data-netbox-color-mode=light] .btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html .btn-outline-gray-300:focus,.btn-check:active+html .btn-outline-gray-300:focus,html .btn-outline-gray-300:active:focus,html .btn-outline-gray-300.active:focus,html .btn-outline-gray-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-300:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html .btn-outline-gray-300:disabled,html .btn-outline-gray-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}}@media print{html .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400{color:#ced4da;border-color:#ced4da}html .btn-outline-gray-400:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-400:hover,html[data-netbox-color-mode=light] .btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html .btn-outline-gray-400,html .btn-outline-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html .btn-outline-gray-400,.btn-check:active+html .btn-outline-gray-400,html .btn-outline-gray-400:active,html .btn-outline-gray-400.active,html .btn-outline-gray-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400:active,html[data-netbox-color-mode=light] .btn-outline-gray-400.active,html[data-netbox-color-mode=light] .btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html .btn-outline-gray-400:focus,.btn-check:active+html .btn-outline-gray-400:focus,html .btn-outline-gray-400:active:focus,html .btn-outline-gray-400.active:focus,html .btn-outline-gray-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-400:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html .btn-outline-gray-400:disabled,html .btn-outline-gray-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}}@media print{html .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}html .btn-outline-gray-500:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-500:hover,html[data-netbox-color-mode=light] .btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html .btn-outline-gray-500,html .btn-outline-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html .btn-outline-gray-500,.btn-check:active+html .btn-outline-gray-500,html .btn-outline-gray-500:active,html .btn-outline-gray-500.active,html .btn-outline-gray-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500:active,html[data-netbox-color-mode=light] .btn-outline-gray-500.active,html[data-netbox-color-mode=light] .btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html .btn-outline-gray-500:focus,.btn-check:active+html .btn-outline-gray-500:focus,html .btn-outline-gray-500:active:focus,html .btn-outline-gray-500.active:focus,html .btn-outline-gray-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-500:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html .btn-outline-gray-500:disabled,html .btn-outline-gray-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}}@media print{html .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600{color:#6c757d;border-color:#6c757d}html .btn-outline-gray-600:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-600:hover,html[data-netbox-color-mode=light] .btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html .btn-outline-gray-600,html .btn-outline-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html .btn-outline-gray-600,.btn-check:active+html .btn-outline-gray-600,html .btn-outline-gray-600:active,html .btn-outline-gray-600.active,html .btn-outline-gray-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600:active,html[data-netbox-color-mode=light] .btn-outline-gray-600.active,html[data-netbox-color-mode=light] .btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html .btn-outline-gray-600:focus,.btn-check:active+html .btn-outline-gray-600:focus,html .btn-outline-gray-600:active:focus,html .btn-outline-gray-600.active:focus,html .btn-outline-gray-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-600:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html .btn-outline-gray-600:disabled,html .btn-outline-gray-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}}@media print{html .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700{color:#495057;border-color:#495057}html .btn-outline-gray-700:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-700:hover,html[data-netbox-color-mode=light] .btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+html .btn-outline-gray-700,html .btn-outline-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+html .btn-outline-gray-700,.btn-check:active+html .btn-outline-gray-700,html .btn-outline-gray-700:active,html .btn-outline-gray-700.active,html .btn-outline-gray-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700:active,html[data-netbox-color-mode=light] .btn-outline-gray-700.active,html[data-netbox-color-mode=light] .btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+html .btn-outline-gray-700:focus,.btn-check:active+html .btn-outline-gray-700:focus,html .btn-outline-gray-700:active:focus,html .btn-outline-gray-700.active:focus,html .btn-outline-gray-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-700:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}html .btn-outline-gray-700:disabled,html .btn-outline-gray-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-700.disabled{color:#495057;background-color:transparent}}@media print{html .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800{color:#343a40;border-color:#343a40}html .btn-outline-gray-800:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-800:hover,html[data-netbox-color-mode=light] .btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+html .btn-outline-gray-800,html .btn-outline-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+html .btn-outline-gray-800,.btn-check:active+html .btn-outline-gray-800,html .btn-outline-gray-800:active,html .btn-outline-gray-800.active,html .btn-outline-gray-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800:active,html[data-netbox-color-mode=light] .btn-outline-gray-800.active,html[data-netbox-color-mode=light] .btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+html .btn-outline-gray-800:focus,.btn-check:active+html .btn-outline-gray-800:focus,html .btn-outline-gray-800:active:focus,html .btn-outline-gray-800.active:focus,html .btn-outline-gray-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-800:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}html .btn-outline-gray-800:disabled,html .btn-outline-gray-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}}@media print{html .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900{color:#212529;border-color:#212529}html .btn-outline-gray-900:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-900:hover,html[data-netbox-color-mode=light] .btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html .btn-outline-gray-900,html .btn-outline-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html .btn-outline-gray-900,.btn-check:active+html .btn-outline-gray-900,html .btn-outline-gray-900:active,html .btn-outline-gray-900.active,html .btn-outline-gray-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900:active,html[data-netbox-color-mode=light] .btn-outline-gray-900.active,html[data-netbox-color-mode=light] .btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html .btn-outline-gray-900:focus,.btn-check:active+html .btn-outline-gray-900:focus,html .btn-outline-gray-900:active:focus,html .btn-outline-gray-900.active:focus,html .btn-outline-gray-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-900:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html .btn-outline-gray-900:disabled,html .btn-outline-gray-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-900.disabled{color:#212529;background-color:transparent}}@media print{html .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}html .btn-outline-red-100:hover,html[data-netbox-color-mode=dark] .btn-outline-red-100:hover,html[data-netbox-color-mode=light] .btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+html .btn-outline-red-100,html .btn-outline-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+html .btn-outline-red-100,.btn-check:active+html .btn-outline-red-100,html .btn-outline-red-100:active,html .btn-outline-red-100.active,html .btn-outline-red-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:active,html[data-netbox-color-mode=dark] .btn-outline-red-100.active,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100:active,html[data-netbox-color-mode=light] .btn-outline-red-100.active,html[data-netbox-color-mode=light] .btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+html .btn-outline-red-100:focus,.btn-check:active+html .btn-outline-red-100:focus,html .btn-outline-red-100:active:focus,html .btn-outline-red-100.active:focus,html .btn-outline-red-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-100:focus,html[data-netbox-color-mode=light] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}html .btn-outline-red-100:disabled,html .btn-outline-red-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100.disabled,html[data-netbox-color-mode=light] .btn-outline-red-100:disabled,html[data-netbox-color-mode=light] .btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}}@media print{html .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}html .btn-outline-red-200:hover,html[data-netbox-color-mode=dark] .btn-outline-red-200:hover,html[data-netbox-color-mode=light] .btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+html .btn-outline-red-200,html .btn-outline-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+html .btn-outline-red-200,.btn-check:active+html .btn-outline-red-200,html .btn-outline-red-200:active,html .btn-outline-red-200.active,html .btn-outline-red-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:active,html[data-netbox-color-mode=dark] .btn-outline-red-200.active,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200:active,html[data-netbox-color-mode=light] .btn-outline-red-200.active,html[data-netbox-color-mode=light] .btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+html .btn-outline-red-200:focus,.btn-check:active+html .btn-outline-red-200:focus,html .btn-outline-red-200:active:focus,html .btn-outline-red-200.active:focus,html .btn-outline-red-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-200:focus,html[data-netbox-color-mode=light] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}html .btn-outline-red-200:disabled,html .btn-outline-red-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200.disabled,html[data-netbox-color-mode=light] .btn-outline-red-200:disabled,html[data-netbox-color-mode=light] .btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}}@media print{html .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300{color:#ea868f;border-color:#ea868f}html .btn-outline-red-300:hover,html[data-netbox-color-mode=dark] .btn-outline-red-300:hover,html[data-netbox-color-mode=light] .btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html .btn-outline-red-300,html .btn-outline-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html .btn-outline-red-300,.btn-check:active+html .btn-outline-red-300,html .btn-outline-red-300:active,html .btn-outline-red-300.active,html .btn-outline-red-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:active,html[data-netbox-color-mode=dark] .btn-outline-red-300.active,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300:active,html[data-netbox-color-mode=light] .btn-outline-red-300.active,html[data-netbox-color-mode=light] .btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html .btn-outline-red-300:focus,.btn-check:active+html .btn-outline-red-300:focus,html .btn-outline-red-300:active:focus,html .btn-outline-red-300.active:focus,html .btn-outline-red-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-300:focus,html[data-netbox-color-mode=light] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html .btn-outline-red-300:disabled,html .btn-outline-red-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300.disabled,html[data-netbox-color-mode=light] .btn-outline-red-300:disabled,html[data-netbox-color-mode=light] .btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}}@media print{html .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}html .btn-outline-red-400:hover,html[data-netbox-color-mode=dark] .btn-outline-red-400:hover,html[data-netbox-color-mode=light] .btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+html .btn-outline-red-400,html .btn-outline-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+html .btn-outline-red-400,.btn-check:active+html .btn-outline-red-400,html .btn-outline-red-400:active,html .btn-outline-red-400.active,html .btn-outline-red-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:active,html[data-netbox-color-mode=dark] .btn-outline-red-400.active,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400:active,html[data-netbox-color-mode=light] .btn-outline-red-400.active,html[data-netbox-color-mode=light] .btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+html .btn-outline-red-400:focus,.btn-check:active+html .btn-outline-red-400:focus,html .btn-outline-red-400:active:focus,html .btn-outline-red-400.active:focus,html .btn-outline-red-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-400:focus,html[data-netbox-color-mode=light] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}html .btn-outline-red-400:disabled,html .btn-outline-red-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400.disabled,html[data-netbox-color-mode=light] .btn-outline-red-400:disabled,html[data-netbox-color-mode=light] .btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}}@media print{html .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500{color:#dc3545;border-color:#dc3545}html .btn-outline-red-500:hover,html[data-netbox-color-mode=dark] .btn-outline-red-500:hover,html[data-netbox-color-mode=light] .btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-red-500,html .btn-outline-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-red-500,.btn-check:active+html .btn-outline-red-500,html .btn-outline-red-500:active,html .btn-outline-red-500.active,html .btn-outline-red-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:active,html[data-netbox-color-mode=dark] .btn-outline-red-500.active,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500:active,html[data-netbox-color-mode=light] .btn-outline-red-500.active,html[data-netbox-color-mode=light] .btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-red-500:focus,.btn-check:active+html .btn-outline-red-500:focus,html .btn-outline-red-500:active:focus,html .btn-outline-red-500.active:focus,html .btn-outline-red-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-500:focus,html[data-netbox-color-mode=light] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-red-500:disabled,html .btn-outline-red-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500.disabled,html[data-netbox-color-mode=light] .btn-outline-red-500:disabled,html[data-netbox-color-mode=light] .btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600{color:#b02a37;border-color:#b02a37}html .btn-outline-red-600:hover,html[data-netbox-color-mode=dark] .btn-outline-red-600:hover,html[data-netbox-color-mode=light] .btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+html .btn-outline-red-600,html .btn-outline-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+html .btn-outline-red-600,.btn-check:active+html .btn-outline-red-600,html .btn-outline-red-600:active,html .btn-outline-red-600.active,html .btn-outline-red-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:active,html[data-netbox-color-mode=dark] .btn-outline-red-600.active,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600:active,html[data-netbox-color-mode=light] .btn-outline-red-600.active,html[data-netbox-color-mode=light] .btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+html .btn-outline-red-600:focus,.btn-check:active+html .btn-outline-red-600:focus,html .btn-outline-red-600:active:focus,html .btn-outline-red-600.active:focus,html .btn-outline-red-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-600:focus,html[data-netbox-color-mode=light] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}html .btn-outline-red-600:disabled,html .btn-outline-red-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600.disabled,html[data-netbox-color-mode=light] .btn-outline-red-600:disabled,html[data-netbox-color-mode=light] .btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}}@media print{html .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700{color:#842029;border-color:#842029}html .btn-outline-red-700:hover,html[data-netbox-color-mode=dark] .btn-outline-red-700:hover,html[data-netbox-color-mode=light] .btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+html .btn-outline-red-700,html .btn-outline-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+html .btn-outline-red-700,.btn-check:active+html .btn-outline-red-700,html .btn-outline-red-700:active,html .btn-outline-red-700.active,html .btn-outline-red-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:active,html[data-netbox-color-mode=dark] .btn-outline-red-700.active,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700:active,html[data-netbox-color-mode=light] .btn-outline-red-700.active,html[data-netbox-color-mode=light] .btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+html .btn-outline-red-700:focus,.btn-check:active+html .btn-outline-red-700:focus,html .btn-outline-red-700:active:focus,html .btn-outline-red-700.active:focus,html .btn-outline-red-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-700:focus,html[data-netbox-color-mode=light] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}html .btn-outline-red-700:disabled,html .btn-outline-red-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700.disabled,html[data-netbox-color-mode=light] .btn-outline-red-700:disabled,html[data-netbox-color-mode=light] .btn-outline-red-700.disabled{color:#842029;background-color:transparent}}@media print{html .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800{color:#58151c;border-color:#58151c}html .btn-outline-red-800:hover,html[data-netbox-color-mode=dark] .btn-outline-red-800:hover,html[data-netbox-color-mode=light] .btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+html .btn-outline-red-800,html .btn-outline-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+html .btn-outline-red-800,.btn-check:active+html .btn-outline-red-800,html .btn-outline-red-800:active,html .btn-outline-red-800.active,html .btn-outline-red-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:active,html[data-netbox-color-mode=dark] .btn-outline-red-800.active,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800:active,html[data-netbox-color-mode=light] .btn-outline-red-800.active,html[data-netbox-color-mode=light] .btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+html .btn-outline-red-800:focus,.btn-check:active+html .btn-outline-red-800:focus,html .btn-outline-red-800:active:focus,html .btn-outline-red-800.active:focus,html .btn-outline-red-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-800:focus,html[data-netbox-color-mode=light] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}html .btn-outline-red-800:disabled,html .btn-outline-red-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800.disabled,html[data-netbox-color-mode=light] .btn-outline-red-800:disabled,html[data-netbox-color-mode=light] .btn-outline-red-800.disabled{color:#58151c;background-color:transparent}}@media print{html .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}html .btn-outline-red-900:hover,html[data-netbox-color-mode=dark] .btn-outline-red-900:hover,html[data-netbox-color-mode=light] .btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+html .btn-outline-red-900,html .btn-outline-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+html .btn-outline-red-900,.btn-check:active+html .btn-outline-red-900,html .btn-outline-red-900:active,html .btn-outline-red-900.active,html .btn-outline-red-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:active,html[data-netbox-color-mode=dark] .btn-outline-red-900.active,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900:active,html[data-netbox-color-mode=light] .btn-outline-red-900.active,html[data-netbox-color-mode=light] .btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+html .btn-outline-red-900:focus,.btn-check:active+html .btn-outline-red-900:focus,html .btn-outline-red-900:active:focus,html .btn-outline-red-900.active:focus,html .btn-outline-red-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-900:focus,html[data-netbox-color-mode=light] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}html .btn-outline-red-900:disabled,html .btn-outline-red-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900.disabled,html[data-netbox-color-mode=light] .btn-outline-red-900:disabled,html[data-netbox-color-mode=light] .btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}}@media print{html .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}html .btn-outline-yellow-100:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+html .btn-outline-yellow-100,html .btn-outline-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+html .btn-outline-yellow-100,.btn-check:active+html .btn-outline-yellow-100,html .btn-outline-yellow-100:active,html .btn-outline-yellow-100.active,html .btn-outline-yellow-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100:active,html[data-netbox-color-mode=light] .btn-outline-yellow-100.active,html[data-netbox-color-mode=light] .btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+html .btn-outline-yellow-100:focus,.btn-check:active+html .btn-outline-yellow-100:focus,html .btn-outline-yellow-100:active:focus,html .btn-outline-yellow-100.active:focus,html .btn-outline-yellow-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}html .btn-outline-yellow-100:disabled,html .btn-outline-yellow-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}}@media print{html .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}html .btn-outline-yellow-200:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+html .btn-outline-yellow-200,html .btn-outline-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+html .btn-outline-yellow-200,.btn-check:active+html .btn-outline-yellow-200,html .btn-outline-yellow-200:active,html .btn-outline-yellow-200.active,html .btn-outline-yellow-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200:active,html[data-netbox-color-mode=light] .btn-outline-yellow-200.active,html[data-netbox-color-mode=light] .btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+html .btn-outline-yellow-200:focus,.btn-check:active+html .btn-outline-yellow-200:focus,html .btn-outline-yellow-200:active:focus,html .btn-outline-yellow-200.active:focus,html .btn-outline-yellow-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}html .btn-outline-yellow-200:disabled,html .btn-outline-yellow-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}}@media print{html .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}html .btn-outline-yellow-300:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html .btn-outline-yellow-300,html .btn-outline-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html .btn-outline-yellow-300,.btn-check:active+html .btn-outline-yellow-300,html .btn-outline-yellow-300:active,html .btn-outline-yellow-300.active,html .btn-outline-yellow-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300:active,html[data-netbox-color-mode=light] .btn-outline-yellow-300.active,html[data-netbox-color-mode=light] .btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html .btn-outline-yellow-300:focus,.btn-check:active+html .btn-outline-yellow-300:focus,html .btn-outline-yellow-300:active:focus,html .btn-outline-yellow-300.active:focus,html .btn-outline-yellow-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html .btn-outline-yellow-300:disabled,html .btn-outline-yellow-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}}@media print{html .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}html .btn-outline-yellow-400:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+html .btn-outline-yellow-400,html .btn-outline-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+html .btn-outline-yellow-400,.btn-check:active+html .btn-outline-yellow-400,html .btn-outline-yellow-400:active,html .btn-outline-yellow-400.active,html .btn-outline-yellow-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400:active,html[data-netbox-color-mode=light] .btn-outline-yellow-400.active,html[data-netbox-color-mode=light] .btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+html .btn-outline-yellow-400:focus,.btn-check:active+html .btn-outline-yellow-400:focus,html .btn-outline-yellow-400:active:focus,html .btn-outline-yellow-400.active:focus,html .btn-outline-yellow-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}html .btn-outline-yellow-400:disabled,html .btn-outline-yellow-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}}@media print{html .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}html .btn-outline-yellow-500:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-yellow-500,html .btn-outline-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-yellow-500,.btn-check:active+html .btn-outline-yellow-500,html .btn-outline-yellow-500:active,html .btn-outline-yellow-500.active,html .btn-outline-yellow-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500:active,html[data-netbox-color-mode=light] .btn-outline-yellow-500.active,html[data-netbox-color-mode=light] .btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-yellow-500:focus,.btn-check:active+html .btn-outline-yellow-500:focus,html .btn-outline-yellow-500:active:focus,html .btn-outline-yellow-500.active:focus,html .btn-outline-yellow-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-yellow-500:disabled,html .btn-outline-yellow-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}html .btn-outline-yellow-600:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+html .btn-outline-yellow-600,html .btn-outline-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+html .btn-outline-yellow-600,.btn-check:active+html .btn-outline-yellow-600,html .btn-outline-yellow-600:active,html .btn-outline-yellow-600.active,html .btn-outline-yellow-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600:active,html[data-netbox-color-mode=light] .btn-outline-yellow-600.active,html[data-netbox-color-mode=light] .btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+html .btn-outline-yellow-600:focus,.btn-check:active+html .btn-outline-yellow-600:focus,html .btn-outline-yellow-600:active:focus,html .btn-outline-yellow-600.active:focus,html .btn-outline-yellow-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}html .btn-outline-yellow-600:disabled,html .btn-outline-yellow-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}}@media print{html .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700{color:#997404;border-color:#997404}html .btn-outline-yellow-700:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+html .btn-outline-yellow-700,html .btn-outline-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+html .btn-outline-yellow-700,.btn-check:active+html .btn-outline-yellow-700,html .btn-outline-yellow-700:active,html .btn-outline-yellow-700.active,html .btn-outline-yellow-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700:active,html[data-netbox-color-mode=light] .btn-outline-yellow-700.active,html[data-netbox-color-mode=light] .btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+html .btn-outline-yellow-700:focus,.btn-check:active+html .btn-outline-yellow-700:focus,html .btn-outline-yellow-700:active:focus,html .btn-outline-yellow-700.active:focus,html .btn-outline-yellow-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}html .btn-outline-yellow-700:disabled,html .btn-outline-yellow-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}}@media print{html .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800{color:#664d03;border-color:#664d03}html .btn-outline-yellow-800:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+html .btn-outline-yellow-800,html .btn-outline-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+html .btn-outline-yellow-800,.btn-check:active+html .btn-outline-yellow-800,html .btn-outline-yellow-800:active,html .btn-outline-yellow-800.active,html .btn-outline-yellow-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800:active,html[data-netbox-color-mode=light] .btn-outline-yellow-800.active,html[data-netbox-color-mode=light] .btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+html .btn-outline-yellow-800:focus,.btn-check:active+html .btn-outline-yellow-800:focus,html .btn-outline-yellow-800:active:focus,html .btn-outline-yellow-800.active:focus,html .btn-outline-yellow-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}html .btn-outline-yellow-800:disabled,html .btn-outline-yellow-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}}@media print{html .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900{color:#332701;border-color:#332701}html .btn-outline-yellow-900:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+html .btn-outline-yellow-900,html .btn-outline-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+html .btn-outline-yellow-900,.btn-check:active+html .btn-outline-yellow-900,html .btn-outline-yellow-900:active,html .btn-outline-yellow-900.active,html .btn-outline-yellow-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900:active,html[data-netbox-color-mode=light] .btn-outline-yellow-900.active,html[data-netbox-color-mode=light] .btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+html .btn-outline-yellow-900:focus,.btn-check:active+html .btn-outline-yellow-900:focus,html .btn-outline-yellow-900:active:focus,html .btn-outline-yellow-900.active:focus,html .btn-outline-yellow-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}html .btn-outline-yellow-900:disabled,html .btn-outline-yellow-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}}@media print{html .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}html .btn-outline-green-100:hover,html[data-netbox-color-mode=dark] .btn-outline-green-100:hover,html[data-netbox-color-mode=light] .btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+html .btn-outline-green-100,html .btn-outline-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+html .btn-outline-green-100,.btn-check:active+html .btn-outline-green-100,html .btn-outline-green-100:active,html .btn-outline-green-100.active,html .btn-outline-green-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:active,html[data-netbox-color-mode=dark] .btn-outline-green-100.active,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100:active,html[data-netbox-color-mode=light] .btn-outline-green-100.active,html[data-netbox-color-mode=light] .btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+html .btn-outline-green-100:focus,.btn-check:active+html .btn-outline-green-100:focus,html .btn-outline-green-100:active:focus,html .btn-outline-green-100.active:focus,html .btn-outline-green-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-100:focus,html[data-netbox-color-mode=light] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}html .btn-outline-green-100:disabled,html .btn-outline-green-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100.disabled,html[data-netbox-color-mode=light] .btn-outline-green-100:disabled,html[data-netbox-color-mode=light] .btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}}@media print{html .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}html .btn-outline-green-200:hover,html[data-netbox-color-mode=dark] .btn-outline-green-200:hover,html[data-netbox-color-mode=light] .btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+html .btn-outline-green-200,html .btn-outline-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+html .btn-outline-green-200,.btn-check:active+html .btn-outline-green-200,html .btn-outline-green-200:active,html .btn-outline-green-200.active,html .btn-outline-green-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:active,html[data-netbox-color-mode=dark] .btn-outline-green-200.active,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200:active,html[data-netbox-color-mode=light] .btn-outline-green-200.active,html[data-netbox-color-mode=light] .btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+html .btn-outline-green-200:focus,.btn-check:active+html .btn-outline-green-200:focus,html .btn-outline-green-200:active:focus,html .btn-outline-green-200.active:focus,html .btn-outline-green-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-200:focus,html[data-netbox-color-mode=light] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}html .btn-outline-green-200:disabled,html .btn-outline-green-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200.disabled,html[data-netbox-color-mode=light] .btn-outline-green-200:disabled,html[data-netbox-color-mode=light] .btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}}@media print{html .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300{color:#75b798;border-color:#75b798}html .btn-outline-green-300:hover,html[data-netbox-color-mode=dark] .btn-outline-green-300:hover,html[data-netbox-color-mode=light] .btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html .btn-outline-green-300,html .btn-outline-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html .btn-outline-green-300,.btn-check:active+html .btn-outline-green-300,html .btn-outline-green-300:active,html .btn-outline-green-300.active,html .btn-outline-green-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:active,html[data-netbox-color-mode=dark] .btn-outline-green-300.active,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300:active,html[data-netbox-color-mode=light] .btn-outline-green-300.active,html[data-netbox-color-mode=light] .btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html .btn-outline-green-300:focus,.btn-check:active+html .btn-outline-green-300:focus,html .btn-outline-green-300:active:focus,html .btn-outline-green-300.active:focus,html .btn-outline-green-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-300:focus,html[data-netbox-color-mode=light] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html .btn-outline-green-300:disabled,html .btn-outline-green-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300.disabled,html[data-netbox-color-mode=light] .btn-outline-green-300:disabled,html[data-netbox-color-mode=light] .btn-outline-green-300.disabled{color:#75b798;background-color:transparent}}@media print{html .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400{color:#479f76;border-color:#479f76}html .btn-outline-green-400:hover,html[data-netbox-color-mode=dark] .btn-outline-green-400:hover,html[data-netbox-color-mode=light] .btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+html .btn-outline-green-400,html .btn-outline-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+html .btn-outline-green-400,.btn-check:active+html .btn-outline-green-400,html .btn-outline-green-400:active,html .btn-outline-green-400.active,html .btn-outline-green-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:active,html[data-netbox-color-mode=dark] .btn-outline-green-400.active,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400:active,html[data-netbox-color-mode=light] .btn-outline-green-400.active,html[data-netbox-color-mode=light] .btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+html .btn-outline-green-400:focus,.btn-check:active+html .btn-outline-green-400:focus,html .btn-outline-green-400:active:focus,html .btn-outline-green-400.active:focus,html .btn-outline-green-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-400:focus,html[data-netbox-color-mode=light] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}html .btn-outline-green-400:disabled,html .btn-outline-green-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400.disabled,html[data-netbox-color-mode=light] .btn-outline-green-400:disabled,html[data-netbox-color-mode=light] .btn-outline-green-400.disabled{color:#479f76;background-color:transparent}}@media print{html .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500{color:#198754;border-color:#198754}html .btn-outline-green-500:hover,html[data-netbox-color-mode=dark] .btn-outline-green-500:hover,html[data-netbox-color-mode=light] .btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-green-500,html .btn-outline-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-green-500,.btn-check:active+html .btn-outline-green-500,html .btn-outline-green-500:active,html .btn-outline-green-500.active,html .btn-outline-green-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:active,html[data-netbox-color-mode=dark] .btn-outline-green-500.active,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500:active,html[data-netbox-color-mode=light] .btn-outline-green-500.active,html[data-netbox-color-mode=light] .btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-green-500:focus,.btn-check:active+html .btn-outline-green-500:focus,html .btn-outline-green-500:active:focus,html .btn-outline-green-500.active:focus,html .btn-outline-green-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-500:focus,html[data-netbox-color-mode=light] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-green-500:disabled,html .btn-outline-green-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500.disabled,html[data-netbox-color-mode=light] .btn-outline-green-500:disabled,html[data-netbox-color-mode=light] .btn-outline-green-500.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600{color:#146c43;border-color:#146c43}html .btn-outline-green-600:hover,html[data-netbox-color-mode=dark] .btn-outline-green-600:hover,html[data-netbox-color-mode=light] .btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+html .btn-outline-green-600,html .btn-outline-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+html .btn-outline-green-600,.btn-check:active+html .btn-outline-green-600,html .btn-outline-green-600:active,html .btn-outline-green-600.active,html .btn-outline-green-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:active,html[data-netbox-color-mode=dark] .btn-outline-green-600.active,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600:active,html[data-netbox-color-mode=light] .btn-outline-green-600.active,html[data-netbox-color-mode=light] .btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+html .btn-outline-green-600:focus,.btn-check:active+html .btn-outline-green-600:focus,html .btn-outline-green-600:active:focus,html .btn-outline-green-600.active:focus,html .btn-outline-green-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-600:focus,html[data-netbox-color-mode=light] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}html .btn-outline-green-600:disabled,html .btn-outline-green-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600.disabled,html[data-netbox-color-mode=light] .btn-outline-green-600:disabled,html[data-netbox-color-mode=light] .btn-outline-green-600.disabled{color:#146c43;background-color:transparent}}@media print{html .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700{color:#0f5132;border-color:#0f5132}html .btn-outline-green-700:hover,html[data-netbox-color-mode=dark] .btn-outline-green-700:hover,html[data-netbox-color-mode=light] .btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+html .btn-outline-green-700,html .btn-outline-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+html .btn-outline-green-700,.btn-check:active+html .btn-outline-green-700,html .btn-outline-green-700:active,html .btn-outline-green-700.active,html .btn-outline-green-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:active,html[data-netbox-color-mode=dark] .btn-outline-green-700.active,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700:active,html[data-netbox-color-mode=light] .btn-outline-green-700.active,html[data-netbox-color-mode=light] .btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+html .btn-outline-green-700:focus,.btn-check:active+html .btn-outline-green-700:focus,html .btn-outline-green-700:active:focus,html .btn-outline-green-700.active:focus,html .btn-outline-green-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-700:focus,html[data-netbox-color-mode=light] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}html .btn-outline-green-700:disabled,html .btn-outline-green-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700.disabled,html[data-netbox-color-mode=light] .btn-outline-green-700:disabled,html[data-netbox-color-mode=light] .btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}}@media print{html .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800{color:#0a3622;border-color:#0a3622}html .btn-outline-green-800:hover,html[data-netbox-color-mode=dark] .btn-outline-green-800:hover,html[data-netbox-color-mode=light] .btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+html .btn-outline-green-800,html .btn-outline-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+html .btn-outline-green-800,.btn-check:active+html .btn-outline-green-800,html .btn-outline-green-800:active,html .btn-outline-green-800.active,html .btn-outline-green-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:active,html[data-netbox-color-mode=dark] .btn-outline-green-800.active,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800:active,html[data-netbox-color-mode=light] .btn-outline-green-800.active,html[data-netbox-color-mode=light] .btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+html .btn-outline-green-800:focus,.btn-check:active+html .btn-outline-green-800:focus,html .btn-outline-green-800:active:focus,html .btn-outline-green-800.active:focus,html .btn-outline-green-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-800:focus,html[data-netbox-color-mode=light] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}html .btn-outline-green-800:disabled,html .btn-outline-green-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800.disabled,html[data-netbox-color-mode=light] .btn-outline-green-800:disabled,html[data-netbox-color-mode=light] .btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}}@media print{html .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900{color:#051b11;border-color:#051b11}html .btn-outline-green-900:hover,html[data-netbox-color-mode=dark] .btn-outline-green-900:hover,html[data-netbox-color-mode=light] .btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+html .btn-outline-green-900,html .btn-outline-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+html .btn-outline-green-900,.btn-check:active+html .btn-outline-green-900,html .btn-outline-green-900:active,html .btn-outline-green-900.active,html .btn-outline-green-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:active,html[data-netbox-color-mode=dark] .btn-outline-green-900.active,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900:active,html[data-netbox-color-mode=light] .btn-outline-green-900.active,html[data-netbox-color-mode=light] .btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+html .btn-outline-green-900:focus,.btn-check:active+html .btn-outline-green-900:focus,html .btn-outline-green-900:active:focus,html .btn-outline-green-900.active:focus,html .btn-outline-green-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-900:focus,html[data-netbox-color-mode=light] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}html .btn-outline-green-900:disabled,html .btn-outline-green-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900.disabled,html[data-netbox-color-mode=light] .btn-outline-green-900:disabled,html[data-netbox-color-mode=light] .btn-outline-green-900.disabled{color:#051b11;background-color:transparent}}@media print{html .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}html .btn-outline-blue-100:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-100:hover,html[data-netbox-color-mode=light] .btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+html .btn-outline-blue-100,html .btn-outline-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+html .btn-outline-blue-100,.btn-check:active+html .btn-outline-blue-100,html .btn-outline-blue-100:active,html .btn-outline-blue-100.active,html .btn-outline-blue-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100:active,html[data-netbox-color-mode=light] .btn-outline-blue-100.active,html[data-netbox-color-mode=light] .btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+html .btn-outline-blue-100:focus,.btn-check:active+html .btn-outline-blue-100:focus,html .btn-outline-blue-100:active:focus,html .btn-outline-blue-100.active:focus,html .btn-outline-blue-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-100:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}html .btn-outline-blue-100:disabled,html .btn-outline-blue-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}}@media print{html .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}html .btn-outline-blue-200:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-200:hover,html[data-netbox-color-mode=light] .btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+html .btn-outline-blue-200,html .btn-outline-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+html .btn-outline-blue-200,.btn-check:active+html .btn-outline-blue-200,html .btn-outline-blue-200:active,html .btn-outline-blue-200.active,html .btn-outline-blue-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200:active,html[data-netbox-color-mode=light] .btn-outline-blue-200.active,html[data-netbox-color-mode=light] .btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+html .btn-outline-blue-200:focus,.btn-check:active+html .btn-outline-blue-200:focus,html .btn-outline-blue-200:active:focus,html .btn-outline-blue-200.active:focus,html .btn-outline-blue-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-200:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}html .btn-outline-blue-200:disabled,html .btn-outline-blue-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}}@media print{html .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}html .btn-outline-blue-300:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-300:hover,html[data-netbox-color-mode=light] .btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html .btn-outline-blue-300,html .btn-outline-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html .btn-outline-blue-300,.btn-check:active+html .btn-outline-blue-300,html .btn-outline-blue-300:active,html .btn-outline-blue-300.active,html .btn-outline-blue-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300:active,html[data-netbox-color-mode=light] .btn-outline-blue-300.active,html[data-netbox-color-mode=light] .btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html .btn-outline-blue-300:focus,.btn-check:active+html .btn-outline-blue-300:focus,html .btn-outline-blue-300:active:focus,html .btn-outline-blue-300.active:focus,html .btn-outline-blue-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-300:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html .btn-outline-blue-300:disabled,html .btn-outline-blue-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}}@media print{html .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}html .btn-outline-blue-400:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-400:hover,html[data-netbox-color-mode=light] .btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+html .btn-outline-blue-400,html .btn-outline-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+html .btn-outline-blue-400,.btn-check:active+html .btn-outline-blue-400,html .btn-outline-blue-400:active,html .btn-outline-blue-400.active,html .btn-outline-blue-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400:active,html[data-netbox-color-mode=light] .btn-outline-blue-400.active,html[data-netbox-color-mode=light] .btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+html .btn-outline-blue-400:focus,.btn-check:active+html .btn-outline-blue-400:focus,html .btn-outline-blue-400:active:focus,html .btn-outline-blue-400.active:focus,html .btn-outline-blue-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-400:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}html .btn-outline-blue-400:disabled,html .btn-outline-blue-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}}@media print{html .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}html .btn-outline-blue-500:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-500:hover,html[data-netbox-color-mode=light] .btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html .btn-outline-blue-500,html .btn-outline-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html .btn-outline-blue-500,.btn-check:active+html .btn-outline-blue-500,html .btn-outline-blue-500:active,html .btn-outline-blue-500.active,html .btn-outline-blue-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500:active,html[data-netbox-color-mode=light] .btn-outline-blue-500.active,html[data-netbox-color-mode=light] .btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html .btn-outline-blue-500:focus,.btn-check:active+html .btn-outline-blue-500:focus,html .btn-outline-blue-500:active:focus,html .btn-outline-blue-500.active:focus,html .btn-outline-blue-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-500:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html .btn-outline-blue-500:disabled,html .btn-outline-blue-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}}@media print{html .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}html .btn-outline-blue-600:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-600:hover,html[data-netbox-color-mode=light] .btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+html .btn-outline-blue-600,html .btn-outline-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+html .btn-outline-blue-600,.btn-check:active+html .btn-outline-blue-600,html .btn-outline-blue-600:active,html .btn-outline-blue-600.active,html .btn-outline-blue-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600:active,html[data-netbox-color-mode=light] .btn-outline-blue-600.active,html[data-netbox-color-mode=light] .btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+html .btn-outline-blue-600:focus,.btn-check:active+html .btn-outline-blue-600:focus,html .btn-outline-blue-600:active:focus,html .btn-outline-blue-600.active:focus,html .btn-outline-blue-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-600:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}html .btn-outline-blue-600:disabled,html .btn-outline-blue-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}}@media print{html .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700{color:#084298;border-color:#084298}html .btn-outline-blue-700:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-700:hover,html[data-netbox-color-mode=light] .btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+html .btn-outline-blue-700,html .btn-outline-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+html .btn-outline-blue-700,.btn-check:active+html .btn-outline-blue-700,html .btn-outline-blue-700:active,html .btn-outline-blue-700.active,html .btn-outline-blue-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700:active,html[data-netbox-color-mode=light] .btn-outline-blue-700.active,html[data-netbox-color-mode=light] .btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+html .btn-outline-blue-700:focus,.btn-check:active+html .btn-outline-blue-700:focus,html .btn-outline-blue-700:active:focus,html .btn-outline-blue-700.active:focus,html .btn-outline-blue-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-700:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}html .btn-outline-blue-700:disabled,html .btn-outline-blue-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-700.disabled{color:#084298;background-color:transparent}}@media print{html .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800{color:#052c65;border-color:#052c65}html .btn-outline-blue-800:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-800:hover,html[data-netbox-color-mode=light] .btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+html .btn-outline-blue-800,html .btn-outline-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+html .btn-outline-blue-800,.btn-check:active+html .btn-outline-blue-800,html .btn-outline-blue-800:active,html .btn-outline-blue-800.active,html .btn-outline-blue-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800:active,html[data-netbox-color-mode=light] .btn-outline-blue-800.active,html[data-netbox-color-mode=light] .btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+html .btn-outline-blue-800:focus,.btn-check:active+html .btn-outline-blue-800:focus,html .btn-outline-blue-800:active:focus,html .btn-outline-blue-800.active:focus,html .btn-outline-blue-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-800:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}html .btn-outline-blue-800:disabled,html .btn-outline-blue-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}}@media print{html .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900{color:#031633;border-color:#031633}html .btn-outline-blue-900:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-900:hover,html[data-netbox-color-mode=light] .btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+html .btn-outline-blue-900,html .btn-outline-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+html .btn-outline-blue-900,.btn-check:active+html .btn-outline-blue-900,html .btn-outline-blue-900:active,html .btn-outline-blue-900.active,html .btn-outline-blue-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900:active,html[data-netbox-color-mode=light] .btn-outline-blue-900.active,html[data-netbox-color-mode=light] .btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+html .btn-outline-blue-900:focus,.btn-check:active+html .btn-outline-blue-900:focus,html .btn-outline-blue-900:active:focus,html .btn-outline-blue-900.active:focus,html .btn-outline-blue-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-900:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}html .btn-outline-blue-900:disabled,html .btn-outline-blue-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-900.disabled{color:#031633;background-color:transparent}}@media print{html .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}html .btn-outline-cyan-100:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+html .btn-outline-cyan-100,html .btn-outline-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+html .btn-outline-cyan-100,.btn-check:active+html .btn-outline-cyan-100,html .btn-outline-cyan-100:active,html .btn-outline-cyan-100.active,html .btn-outline-cyan-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100:active,html[data-netbox-color-mode=light] .btn-outline-cyan-100.active,html[data-netbox-color-mode=light] .btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+html .btn-outline-cyan-100:focus,.btn-check:active+html .btn-outline-cyan-100:focus,html .btn-outline-cyan-100:active:focus,html .btn-outline-cyan-100.active:focus,html .btn-outline-cyan-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}html .btn-outline-cyan-100:disabled,html .btn-outline-cyan-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}}@media print{html .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}html .btn-outline-cyan-200:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+html .btn-outline-cyan-200,html .btn-outline-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+html .btn-outline-cyan-200,.btn-check:active+html .btn-outline-cyan-200,html .btn-outline-cyan-200:active,html .btn-outline-cyan-200.active,html .btn-outline-cyan-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200:active,html[data-netbox-color-mode=light] .btn-outline-cyan-200.active,html[data-netbox-color-mode=light] .btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+html .btn-outline-cyan-200:focus,.btn-check:active+html .btn-outline-cyan-200:focus,html .btn-outline-cyan-200:active:focus,html .btn-outline-cyan-200.active:focus,html .btn-outline-cyan-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}html .btn-outline-cyan-200:disabled,html .btn-outline-cyan-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}}@media print{html .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}html .btn-outline-cyan-300:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html .btn-outline-cyan-300,html .btn-outline-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html .btn-outline-cyan-300,.btn-check:active+html .btn-outline-cyan-300,html .btn-outline-cyan-300:active,html .btn-outline-cyan-300.active,html .btn-outline-cyan-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300:active,html[data-netbox-color-mode=light] .btn-outline-cyan-300.active,html[data-netbox-color-mode=light] .btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html .btn-outline-cyan-300:focus,.btn-check:active+html .btn-outline-cyan-300:focus,html .btn-outline-cyan-300:active:focus,html .btn-outline-cyan-300.active:focus,html .btn-outline-cyan-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html .btn-outline-cyan-300:disabled,html .btn-outline-cyan-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}}@media print{html .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}html .btn-outline-cyan-400:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+html .btn-outline-cyan-400,html .btn-outline-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+html .btn-outline-cyan-400,.btn-check:active+html .btn-outline-cyan-400,html .btn-outline-cyan-400:active,html .btn-outline-cyan-400.active,html .btn-outline-cyan-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400:active,html[data-netbox-color-mode=light] .btn-outline-cyan-400.active,html[data-netbox-color-mode=light] .btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+html .btn-outline-cyan-400:focus,.btn-check:active+html .btn-outline-cyan-400:focus,html .btn-outline-cyan-400:active:focus,html .btn-outline-cyan-400.active:focus,html .btn-outline-cyan-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}html .btn-outline-cyan-400:disabled,html .btn-outline-cyan-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}}@media print{html .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-cyan-500:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-cyan-500,html .btn-outline-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-cyan-500,.btn-check:active+html .btn-outline-cyan-500,html .btn-outline-cyan-500:active,html .btn-outline-cyan-500.active,html .btn-outline-cyan-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500:active,html[data-netbox-color-mode=light] .btn-outline-cyan-500.active,html[data-netbox-color-mode=light] .btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-cyan-500:focus,.btn-check:active+html .btn-outline-cyan-500:focus,html .btn-outline-cyan-500:active:focus,html .btn-outline-cyan-500.active:focus,html .btn-outline-cyan-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-cyan-500:disabled,html .btn-outline-cyan-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}html .btn-outline-cyan-600:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+html .btn-outline-cyan-600,html .btn-outline-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+html .btn-outline-cyan-600,.btn-check:active+html .btn-outline-cyan-600,html .btn-outline-cyan-600:active,html .btn-outline-cyan-600.active,html .btn-outline-cyan-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600:active,html[data-netbox-color-mode=light] .btn-outline-cyan-600.active,html[data-netbox-color-mode=light] .btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+html .btn-outline-cyan-600:focus,.btn-check:active+html .btn-outline-cyan-600:focus,html .btn-outline-cyan-600:active:focus,html .btn-outline-cyan-600.active:focus,html .btn-outline-cyan-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}html .btn-outline-cyan-600:disabled,html .btn-outline-cyan-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}}@media print{html .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700{color:#087990;border-color:#087990}html .btn-outline-cyan-700:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+html .btn-outline-cyan-700,html .btn-outline-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+html .btn-outline-cyan-700,.btn-check:active+html .btn-outline-cyan-700,html .btn-outline-cyan-700:active,html .btn-outline-cyan-700.active,html .btn-outline-cyan-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700:active,html[data-netbox-color-mode=light] .btn-outline-cyan-700.active,html[data-netbox-color-mode=light] .btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+html .btn-outline-cyan-700:focus,.btn-check:active+html .btn-outline-cyan-700:focus,html .btn-outline-cyan-700:active:focus,html .btn-outline-cyan-700.active:focus,html .btn-outline-cyan-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}html .btn-outline-cyan-700:disabled,html .btn-outline-cyan-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}}@media print{html .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800{color:#055160;border-color:#055160}html .btn-outline-cyan-800:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+html .btn-outline-cyan-800,html .btn-outline-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+html .btn-outline-cyan-800,.btn-check:active+html .btn-outline-cyan-800,html .btn-outline-cyan-800:active,html .btn-outline-cyan-800.active,html .btn-outline-cyan-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800:active,html[data-netbox-color-mode=light] .btn-outline-cyan-800.active,html[data-netbox-color-mode=light] .btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+html .btn-outline-cyan-800:focus,.btn-check:active+html .btn-outline-cyan-800:focus,html .btn-outline-cyan-800:active:focus,html .btn-outline-cyan-800.active:focus,html .btn-outline-cyan-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}html .btn-outline-cyan-800:disabled,html .btn-outline-cyan-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}}@media print{html .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900{color:#032830;border-color:#032830}html .btn-outline-cyan-900:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+html .btn-outline-cyan-900,html .btn-outline-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+html .btn-outline-cyan-900,.btn-check:active+html .btn-outline-cyan-900,html .btn-outline-cyan-900:active,html .btn-outline-cyan-900.active,html .btn-outline-cyan-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900:active,html[data-netbox-color-mode=light] .btn-outline-cyan-900.active,html[data-netbox-color-mode=light] .btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+html .btn-outline-cyan-900:focus,.btn-check:active+html .btn-outline-cyan-900:focus,html .btn-outline-cyan-900:active:focus,html .btn-outline-cyan-900.active:focus,html .btn-outline-cyan-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}html .btn-outline-cyan-900:disabled,html .btn-outline-cyan-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}}@media print{html .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}html .btn-outline-indigo-100:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+html .btn-outline-indigo-100,html .btn-outline-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+html .btn-outline-indigo-100,.btn-check:active+html .btn-outline-indigo-100,html .btn-outline-indigo-100:active,html .btn-outline-indigo-100.active,html .btn-outline-indigo-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100:active,html[data-netbox-color-mode=light] .btn-outline-indigo-100.active,html[data-netbox-color-mode=light] .btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+html .btn-outline-indigo-100:focus,.btn-check:active+html .btn-outline-indigo-100:focus,html .btn-outline-indigo-100:active:focus,html .btn-outline-indigo-100.active:focus,html .btn-outline-indigo-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}html .btn-outline-indigo-100:disabled,html .btn-outline-indigo-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}}@media print{html .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}html .btn-outline-indigo-200:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+html .btn-outline-indigo-200,html .btn-outline-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+html .btn-outline-indigo-200,.btn-check:active+html .btn-outline-indigo-200,html .btn-outline-indigo-200:active,html .btn-outline-indigo-200.active,html .btn-outline-indigo-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200:active,html[data-netbox-color-mode=light] .btn-outline-indigo-200.active,html[data-netbox-color-mode=light] .btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+html .btn-outline-indigo-200:focus,.btn-check:active+html .btn-outline-indigo-200:focus,html .btn-outline-indigo-200:active:focus,html .btn-outline-indigo-200.active:focus,html .btn-outline-indigo-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}html .btn-outline-indigo-200:disabled,html .btn-outline-indigo-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}}@media print{html .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}html .btn-outline-indigo-300:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html .btn-outline-indigo-300,html .btn-outline-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html .btn-outline-indigo-300,.btn-check:active+html .btn-outline-indigo-300,html .btn-outline-indigo-300:active,html .btn-outline-indigo-300.active,html .btn-outline-indigo-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300:active,html[data-netbox-color-mode=light] .btn-outline-indigo-300.active,html[data-netbox-color-mode=light] .btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html .btn-outline-indigo-300:focus,.btn-check:active+html .btn-outline-indigo-300:focus,html .btn-outline-indigo-300:active:focus,html .btn-outline-indigo-300.active:focus,html .btn-outline-indigo-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html .btn-outline-indigo-300:disabled,html .btn-outline-indigo-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}}@media print{html .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}html .btn-outline-indigo-400:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+html .btn-outline-indigo-400,html .btn-outline-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+html .btn-outline-indigo-400,.btn-check:active+html .btn-outline-indigo-400,html .btn-outline-indigo-400:active,html .btn-outline-indigo-400.active,html .btn-outline-indigo-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400:active,html[data-netbox-color-mode=light] .btn-outline-indigo-400.active,html[data-netbox-color-mode=light] .btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+html .btn-outline-indigo-400:focus,.btn-check:active+html .btn-outline-indigo-400:focus,html .btn-outline-indigo-400:active:focus,html .btn-outline-indigo-400.active:focus,html .btn-outline-indigo-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}html .btn-outline-indigo-400:disabled,html .btn-outline-indigo-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}}@media print{html .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}html .btn-outline-indigo-500:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html .btn-outline-indigo-500,html .btn-outline-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html .btn-outline-indigo-500,.btn-check:active+html .btn-outline-indigo-500,html .btn-outline-indigo-500:active,html .btn-outline-indigo-500.active,html .btn-outline-indigo-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500:active,html[data-netbox-color-mode=light] .btn-outline-indigo-500.active,html[data-netbox-color-mode=light] .btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html .btn-outline-indigo-500:focus,.btn-check:active+html .btn-outline-indigo-500:focus,html .btn-outline-indigo-500:active:focus,html .btn-outline-indigo-500.active:focus,html .btn-outline-indigo-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html .btn-outline-indigo-500:disabled,html .btn-outline-indigo-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}}@media print{html .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}html .btn-outline-indigo-600:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+html .btn-outline-indigo-600,html .btn-outline-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+html .btn-outline-indigo-600,.btn-check:active+html .btn-outline-indigo-600,html .btn-outline-indigo-600:active,html .btn-outline-indigo-600.active,html .btn-outline-indigo-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600:active,html[data-netbox-color-mode=light] .btn-outline-indigo-600.active,html[data-netbox-color-mode=light] .btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+html .btn-outline-indigo-600:focus,.btn-check:active+html .btn-outline-indigo-600:focus,html .btn-outline-indigo-600:active:focus,html .btn-outline-indigo-600.active:focus,html .btn-outline-indigo-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}html .btn-outline-indigo-600:disabled,html .btn-outline-indigo-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}}@media print{html .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}html .btn-outline-indigo-700:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+html .btn-outline-indigo-700,html .btn-outline-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+html .btn-outline-indigo-700,.btn-check:active+html .btn-outline-indigo-700,html .btn-outline-indigo-700:active,html .btn-outline-indigo-700.active,html .btn-outline-indigo-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700:active,html[data-netbox-color-mode=light] .btn-outline-indigo-700.active,html[data-netbox-color-mode=light] .btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+html .btn-outline-indigo-700:focus,.btn-check:active+html .btn-outline-indigo-700:focus,html .btn-outline-indigo-700:active:focus,html .btn-outline-indigo-700.active:focus,html .btn-outline-indigo-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}html .btn-outline-indigo-700:disabled,html .btn-outline-indigo-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}}@media print{html .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800{color:#290661;border-color:#290661}html .btn-outline-indigo-800:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+html .btn-outline-indigo-800,html .btn-outline-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+html .btn-outline-indigo-800,.btn-check:active+html .btn-outline-indigo-800,html .btn-outline-indigo-800:active,html .btn-outline-indigo-800.active,html .btn-outline-indigo-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800:active,html[data-netbox-color-mode=light] .btn-outline-indigo-800.active,html[data-netbox-color-mode=light] .btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+html .btn-outline-indigo-800:focus,.btn-check:active+html .btn-outline-indigo-800:focus,html .btn-outline-indigo-800:active:focus,html .btn-outline-indigo-800.active:focus,html .btn-outline-indigo-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}html .btn-outline-indigo-800:disabled,html .btn-outline-indigo-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}}@media print{html .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900{color:#140330;border-color:#140330}html .btn-outline-indigo-900:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+html .btn-outline-indigo-900,html .btn-outline-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+html .btn-outline-indigo-900,.btn-check:active+html .btn-outline-indigo-900,html .btn-outline-indigo-900:active,html .btn-outline-indigo-900.active,html .btn-outline-indigo-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900:active,html[data-netbox-color-mode=light] .btn-outline-indigo-900.active,html[data-netbox-color-mode=light] .btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+html .btn-outline-indigo-900:focus,.btn-check:active+html .btn-outline-indigo-900:focus,html .btn-outline-indigo-900:active:focus,html .btn-outline-indigo-900.active:focus,html .btn-outline-indigo-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}html .btn-outline-indigo-900:disabled,html .btn-outline-indigo-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}}@media print{html .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}html .btn-outline-purple-100:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-100:hover,html[data-netbox-color-mode=light] .btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+html .btn-outline-purple-100,html .btn-outline-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+html .btn-outline-purple-100,.btn-check:active+html .btn-outline-purple-100,html .btn-outline-purple-100:active,html .btn-outline-purple-100.active,html .btn-outline-purple-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100:active,html[data-netbox-color-mode=light] .btn-outline-purple-100.active,html[data-netbox-color-mode=light] .btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+html .btn-outline-purple-100:focus,.btn-check:active+html .btn-outline-purple-100:focus,html .btn-outline-purple-100:active:focus,html .btn-outline-purple-100.active:focus,html .btn-outline-purple-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-100:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}html .btn-outline-purple-100:disabled,html .btn-outline-purple-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}}@media print{html .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}html .btn-outline-purple-200:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-200:hover,html[data-netbox-color-mode=light] .btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+html .btn-outline-purple-200,html .btn-outline-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+html .btn-outline-purple-200,.btn-check:active+html .btn-outline-purple-200,html .btn-outline-purple-200:active,html .btn-outline-purple-200.active,html .btn-outline-purple-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200:active,html[data-netbox-color-mode=light] .btn-outline-purple-200.active,html[data-netbox-color-mode=light] .btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+html .btn-outline-purple-200:focus,.btn-check:active+html .btn-outline-purple-200:focus,html .btn-outline-purple-200:active:focus,html .btn-outline-purple-200.active:focus,html .btn-outline-purple-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-200:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}html .btn-outline-purple-200:disabled,html .btn-outline-purple-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}}@media print{html .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300{color:#a98eda;border-color:#a98eda}html .btn-outline-purple-300:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-300:hover,html[data-netbox-color-mode=light] .btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html .btn-outline-purple-300,html .btn-outline-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html .btn-outline-purple-300,.btn-check:active+html .btn-outline-purple-300,html .btn-outline-purple-300:active,html .btn-outline-purple-300.active,html .btn-outline-purple-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300:active,html[data-netbox-color-mode=light] .btn-outline-purple-300.active,html[data-netbox-color-mode=light] .btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html .btn-outline-purple-300:focus,.btn-check:active+html .btn-outline-purple-300:focus,html .btn-outline-purple-300:active:focus,html .btn-outline-purple-300.active:focus,html .btn-outline-purple-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-300:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html .btn-outline-purple-300:disabled,html .btn-outline-purple-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}}@media print{html .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}html .btn-outline-purple-400:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-400:hover,html[data-netbox-color-mode=light] .btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+html .btn-outline-purple-400,html .btn-outline-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+html .btn-outline-purple-400,.btn-check:active+html .btn-outline-purple-400,html .btn-outline-purple-400:active,html .btn-outline-purple-400.active,html .btn-outline-purple-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400:active,html[data-netbox-color-mode=light] .btn-outline-purple-400.active,html[data-netbox-color-mode=light] .btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+html .btn-outline-purple-400:focus,.btn-check:active+html .btn-outline-purple-400:focus,html .btn-outline-purple-400:active:focus,html .btn-outline-purple-400.active:focus,html .btn-outline-purple-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-400:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}html .btn-outline-purple-400:disabled,html .btn-outline-purple-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}}@media print{html .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}html .btn-outline-purple-500:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-500:hover,html[data-netbox-color-mode=light] .btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html .btn-outline-purple-500,html .btn-outline-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html .btn-outline-purple-500,.btn-check:active+html .btn-outline-purple-500,html .btn-outline-purple-500:active,html .btn-outline-purple-500.active,html .btn-outline-purple-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500:active,html[data-netbox-color-mode=light] .btn-outline-purple-500.active,html[data-netbox-color-mode=light] .btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html .btn-outline-purple-500:focus,.btn-check:active+html .btn-outline-purple-500:focus,html .btn-outline-purple-500:active:focus,html .btn-outline-purple-500.active:focus,html .btn-outline-purple-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-500:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html .btn-outline-purple-500:disabled,html .btn-outline-purple-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}}@media print{html .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600{color:#59359a;border-color:#59359a}html .btn-outline-purple-600:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-600:hover,html[data-netbox-color-mode=light] .btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+html .btn-outline-purple-600,html .btn-outline-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+html .btn-outline-purple-600,.btn-check:active+html .btn-outline-purple-600,html .btn-outline-purple-600:active,html .btn-outline-purple-600.active,html .btn-outline-purple-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600:active,html[data-netbox-color-mode=light] .btn-outline-purple-600.active,html[data-netbox-color-mode=light] .btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+html .btn-outline-purple-600:focus,.btn-check:active+html .btn-outline-purple-600:focus,html .btn-outline-purple-600:active:focus,html .btn-outline-purple-600.active:focus,html .btn-outline-purple-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-600:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}html .btn-outline-purple-600:disabled,html .btn-outline-purple-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}}@media print{html .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700{color:#432874;border-color:#432874}html .btn-outline-purple-700:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-700:hover,html[data-netbox-color-mode=light] .btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+html .btn-outline-purple-700,html .btn-outline-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+html .btn-outline-purple-700,.btn-check:active+html .btn-outline-purple-700,html .btn-outline-purple-700:active,html .btn-outline-purple-700.active,html .btn-outline-purple-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700:active,html[data-netbox-color-mode=light] .btn-outline-purple-700.active,html[data-netbox-color-mode=light] .btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+html .btn-outline-purple-700:focus,.btn-check:active+html .btn-outline-purple-700:focus,html .btn-outline-purple-700:active:focus,html .btn-outline-purple-700.active:focus,html .btn-outline-purple-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-700:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}html .btn-outline-purple-700:disabled,html .btn-outline-purple-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-700.disabled{color:#432874;background-color:transparent}}@media print{html .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}html .btn-outline-purple-800:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-800:hover,html[data-netbox-color-mode=light] .btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+html .btn-outline-purple-800,html .btn-outline-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+html .btn-outline-purple-800,.btn-check:active+html .btn-outline-purple-800,html .btn-outline-purple-800:active,html .btn-outline-purple-800.active,html .btn-outline-purple-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800:active,html[data-netbox-color-mode=light] .btn-outline-purple-800.active,html[data-netbox-color-mode=light] .btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+html .btn-outline-purple-800:focus,.btn-check:active+html .btn-outline-purple-800:focus,html .btn-outline-purple-800:active:focus,html .btn-outline-purple-800.active:focus,html .btn-outline-purple-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-800:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}html .btn-outline-purple-800:disabled,html .btn-outline-purple-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}}@media print{html .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900{color:#160d27;border-color:#160d27}html .btn-outline-purple-900:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-900:hover,html[data-netbox-color-mode=light] .btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+html .btn-outline-purple-900,html .btn-outline-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+html .btn-outline-purple-900,.btn-check:active+html .btn-outline-purple-900,html .btn-outline-purple-900:active,html .btn-outline-purple-900.active,html .btn-outline-purple-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900:active,html[data-netbox-color-mode=light] .btn-outline-purple-900.active,html[data-netbox-color-mode=light] .btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+html .btn-outline-purple-900:focus,.btn-check:active+html .btn-outline-purple-900:focus,html .btn-outline-purple-900:active:focus,html .btn-outline-purple-900.active:focus,html .btn-outline-purple-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-900:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}html .btn-outline-purple-900:disabled,html .btn-outline-purple-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}}@media print{html .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}html .btn-outline-pink-100:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-100:hover,html[data-netbox-color-mode=light] .btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+html .btn-outline-pink-100,html .btn-outline-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+html .btn-outline-pink-100,.btn-check:active+html .btn-outline-pink-100,html .btn-outline-pink-100:active,html .btn-outline-pink-100.active,html .btn-outline-pink-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100:active,html[data-netbox-color-mode=light] .btn-outline-pink-100.active,html[data-netbox-color-mode=light] .btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+html .btn-outline-pink-100:focus,.btn-check:active+html .btn-outline-pink-100:focus,html .btn-outline-pink-100:active:focus,html .btn-outline-pink-100.active:focus,html .btn-outline-pink-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-100:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}html .btn-outline-pink-100:disabled,html .btn-outline-pink-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}}@media print{html .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200{color:#efadce;border-color:#efadce}html .btn-outline-pink-200:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-200:hover,html[data-netbox-color-mode=light] .btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+html .btn-outline-pink-200,html .btn-outline-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+html .btn-outline-pink-200,.btn-check:active+html .btn-outline-pink-200,html .btn-outline-pink-200:active,html .btn-outline-pink-200.active,html .btn-outline-pink-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200:active,html[data-netbox-color-mode=light] .btn-outline-pink-200.active,html[data-netbox-color-mode=light] .btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+html .btn-outline-pink-200:focus,.btn-check:active+html .btn-outline-pink-200:focus,html .btn-outline-pink-200:active:focus,html .btn-outline-pink-200.active:focus,html .btn-outline-pink-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-200:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}html .btn-outline-pink-200:disabled,html .btn-outline-pink-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}}@media print{html .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300{color:#e685b5;border-color:#e685b5}html .btn-outline-pink-300:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-300:hover,html[data-netbox-color-mode=light] .btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html .btn-outline-pink-300,html .btn-outline-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html .btn-outline-pink-300,.btn-check:active+html .btn-outline-pink-300,html .btn-outline-pink-300:active,html .btn-outline-pink-300.active,html .btn-outline-pink-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300:active,html[data-netbox-color-mode=light] .btn-outline-pink-300.active,html[data-netbox-color-mode=light] .btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html .btn-outline-pink-300:focus,.btn-check:active+html .btn-outline-pink-300:focus,html .btn-outline-pink-300:active:focus,html .btn-outline-pink-300.active:focus,html .btn-outline-pink-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-300:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html .btn-outline-pink-300:disabled,html .btn-outline-pink-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}}@media print{html .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}html .btn-outline-pink-400:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-400:hover,html[data-netbox-color-mode=light] .btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+html .btn-outline-pink-400,html .btn-outline-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+html .btn-outline-pink-400,.btn-check:active+html .btn-outline-pink-400,html .btn-outline-pink-400:active,html .btn-outline-pink-400.active,html .btn-outline-pink-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400:active,html[data-netbox-color-mode=light] .btn-outline-pink-400.active,html[data-netbox-color-mode=light] .btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+html .btn-outline-pink-400:focus,.btn-check:active+html .btn-outline-pink-400:focus,html .btn-outline-pink-400:active:focus,html .btn-outline-pink-400.active:focus,html .btn-outline-pink-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-400:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}html .btn-outline-pink-400:disabled,html .btn-outline-pink-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}}@media print{html .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500{color:#d63384;border-color:#d63384}html .btn-outline-pink-500:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-500:hover,html[data-netbox-color-mode=light] .btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html .btn-outline-pink-500,html .btn-outline-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html .btn-outline-pink-500,.btn-check:active+html .btn-outline-pink-500,html .btn-outline-pink-500:active,html .btn-outline-pink-500.active,html .btn-outline-pink-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500:active,html[data-netbox-color-mode=light] .btn-outline-pink-500.active,html[data-netbox-color-mode=light] .btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html .btn-outline-pink-500:focus,.btn-check:active+html .btn-outline-pink-500:focus,html .btn-outline-pink-500:active:focus,html .btn-outline-pink-500.active:focus,html .btn-outline-pink-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-500:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html .btn-outline-pink-500:disabled,html .btn-outline-pink-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}}@media print{html .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600{color:#ab296a;border-color:#ab296a}html .btn-outline-pink-600:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-600:hover,html[data-netbox-color-mode=light] .btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+html .btn-outline-pink-600,html .btn-outline-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+html .btn-outline-pink-600,.btn-check:active+html .btn-outline-pink-600,html .btn-outline-pink-600:active,html .btn-outline-pink-600.active,html .btn-outline-pink-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600:active,html[data-netbox-color-mode=light] .btn-outline-pink-600.active,html[data-netbox-color-mode=light] .btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+html .btn-outline-pink-600:focus,.btn-check:active+html .btn-outline-pink-600:focus,html .btn-outline-pink-600:active:focus,html .btn-outline-pink-600.active:focus,html .btn-outline-pink-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-600:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}html .btn-outline-pink-600:disabled,html .btn-outline-pink-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}}@media print{html .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700{color:#801f4f;border-color:#801f4f}html .btn-outline-pink-700:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-700:hover,html[data-netbox-color-mode=light] .btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+html .btn-outline-pink-700,html .btn-outline-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+html .btn-outline-pink-700,.btn-check:active+html .btn-outline-pink-700,html .btn-outline-pink-700:active,html .btn-outline-pink-700.active,html .btn-outline-pink-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700:active,html[data-netbox-color-mode=light] .btn-outline-pink-700.active,html[data-netbox-color-mode=light] .btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+html .btn-outline-pink-700:focus,.btn-check:active+html .btn-outline-pink-700:focus,html .btn-outline-pink-700:active:focus,html .btn-outline-pink-700.active:focus,html .btn-outline-pink-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-700:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}html .btn-outline-pink-700:disabled,html .btn-outline-pink-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}}@media print{html .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800{color:#561435;border-color:#561435}html .btn-outline-pink-800:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-800:hover,html[data-netbox-color-mode=light] .btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+html .btn-outline-pink-800,html .btn-outline-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+html .btn-outline-pink-800,.btn-check:active+html .btn-outline-pink-800,html .btn-outline-pink-800:active,html .btn-outline-pink-800.active,html .btn-outline-pink-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800:active,html[data-netbox-color-mode=light] .btn-outline-pink-800.active,html[data-netbox-color-mode=light] .btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+html .btn-outline-pink-800:focus,.btn-check:active+html .btn-outline-pink-800:focus,html .btn-outline-pink-800:active:focus,html .btn-outline-pink-800.active:focus,html .btn-outline-pink-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-800:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}html .btn-outline-pink-800:disabled,html .btn-outline-pink-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-800.disabled{color:#561435;background-color:transparent}}@media print{html .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}html .btn-outline-pink-900:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-900:hover,html[data-netbox-color-mode=light] .btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+html .btn-outline-pink-900,html .btn-outline-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+html .btn-outline-pink-900,.btn-check:active+html .btn-outline-pink-900,html .btn-outline-pink-900:active,html .btn-outline-pink-900.active,html .btn-outline-pink-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900:active,html[data-netbox-color-mode=light] .btn-outline-pink-900.active,html[data-netbox-color-mode=light] .btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+html .btn-outline-pink-900:focus,.btn-check:active+html .btn-outline-pink-900:focus,html .btn-outline-pink-900:active:focus,html .btn-outline-pink-900.active:focus,html .btn-outline-pink-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-900:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}html .btn-outline-pink-900:disabled,html .btn-outline-pink-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}}@media print{html .btn-link,html[data-netbox-color-mode=dark] .btn-link,html[data-netbox-color-mode=light] .btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}html .btn-link:hover,html[data-netbox-color-mode=dark] .btn-link:hover,html[data-netbox-color-mode=light] .btn-link:hover{color:#0a58ca}html .btn-link:disabled,html .btn-link.disabled,html[data-netbox-color-mode=dark] .btn-link:disabled,html[data-netbox-color-mode=dark] .btn-link.disabled,html[data-netbox-color-mode=light] .btn-link:disabled,html[data-netbox-color-mode=light] .btn-link.disabled{color:#6c757d}}@media print{html .btn-lg,html .btn-group-lg>.btn,html[data-netbox-color-mode=dark] .btn-lg,html[data-netbox-color-mode=light] .btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}}@media print{html .btn-sm,html .btn-group-sm>.btn,html[data-netbox-color-mode=dark] .btn-sm,html[data-netbox-color-mode=light] .btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html .fade,html[data-netbox-color-mode=dark] .fade,html[data-netbox-color-mode=light] .fade{transition:opacity .15s linear}}@media print and (prefers-reduced-motion: reduce){html .fade,html[data-netbox-color-mode=dark] .fade,html[data-netbox-color-mode=light] .fade{transition:none}}@media print{html .fade:not(.show),html[data-netbox-color-mode=dark] .fade:not(.show),html[data-netbox-color-mode=light] .fade:not(.show){opacity:0}}@media print{html .collapse:not(.show),html[data-netbox-color-mode=dark] .collapse:not(.show),html[data-netbox-color-mode=light] .collapse:not(.show){display:none}}@media print{html .collapsing,html[data-netbox-color-mode=dark] .collapsing,html[data-netbox-color-mode=light] .collapsing{height:0;overflow:hidden;transition:height .35s ease}}@media print and (prefers-reduced-motion: reduce){html .collapsing,html[data-netbox-color-mode=dark] .collapsing,html[data-netbox-color-mode=light] .collapsing{transition:none}}@media print{html .dropup,html .dropend,html .dropdown,html .dropstart,html[data-netbox-color-mode=dark] .dropup,html[data-netbox-color-mode=dark] .dropend,html[data-netbox-color-mode=dark] .dropdown,html[data-netbox-color-mode=dark] .dropstart,html[data-netbox-color-mode=light] .dropup,html[data-netbox-color-mode=light] .dropend,html[data-netbox-color-mode=light] .dropdown,html[data-netbox-color-mode=light] .dropstart{position:relative}}@media print{html .dropdown-toggle,html[data-netbox-color-mode=dark] .dropdown-toggle,html[data-netbox-color-mode=light] .dropdown-toggle{white-space:nowrap}html .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropdown-toggle:empty:after{margin-left:0}}@media print{html .dropdown-menu,html[data-netbox-color-mode=dark] .dropdown-menu,html[data-netbox-color-mode=light] .dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.375rem}html .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}}@media print{html .dropdown-menu-start,html[data-netbox-color-mode=dark] .dropdown-menu-start,html[data-netbox-color-mode=light] .dropdown-menu-start{--bs-position: start}html .dropdown-menu-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-start[data-bs-popper]{right:auto;left:0}}@media print{html .dropdown-menu-end,html[data-netbox-color-mode=dark] .dropdown-menu-end,html[data-netbox-color-mode=light] .dropdown-menu-end{--bs-position: end}html .dropdown-menu-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 576px){html .dropdown-menu-sm-start,html[data-netbox-color-mode=dark] .dropdown-menu-sm-start,html[data-netbox-color-mode=light] .dropdown-menu-sm-start{--bs-position: start}html .dropdown-menu-sm-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-sm-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-sm-end,html[data-netbox-color-mode=dark] .dropdown-menu-sm-end,html[data-netbox-color-mode=light] .dropdown-menu-sm-end{--bs-position: end}html .dropdown-menu-sm-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-sm-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 768px){html .dropdown-menu-md-start,html[data-netbox-color-mode=dark] .dropdown-menu-md-start,html[data-netbox-color-mode=light] .dropdown-menu-md-start{--bs-position: start}html .dropdown-menu-md-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-md-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-md-end,html[data-netbox-color-mode=dark] .dropdown-menu-md-end,html[data-netbox-color-mode=light] .dropdown-menu-md-end{--bs-position: end}html .dropdown-menu-md-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-md-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 992px){html .dropdown-menu-lg-start,html[data-netbox-color-mode=dark] .dropdown-menu-lg-start,html[data-netbox-color-mode=light] .dropdown-menu-lg-start{--bs-position: start}html .dropdown-menu-lg-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-lg-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-lg-end,html[data-netbox-color-mode=dark] .dropdown-menu-lg-end,html[data-netbox-color-mode=light] .dropdown-menu-lg-end{--bs-position: end}html .dropdown-menu-lg-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-lg-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 1200px){html .dropdown-menu-xl-start,html[data-netbox-color-mode=dark] .dropdown-menu-xl-start,html[data-netbox-color-mode=light] .dropdown-menu-xl-start{--bs-position: start}html .dropdown-menu-xl-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xl-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-xl-end,html[data-netbox-color-mode=dark] .dropdown-menu-xl-end,html[data-netbox-color-mode=light] .dropdown-menu-xl-end{--bs-position: end}html .dropdown-menu-xl-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xl-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 1400px){html .dropdown-menu-xxl-start,html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start,html[data-netbox-color-mode=light] .dropdown-menu-xxl-start{--bs-position: start}html .dropdown-menu-xxl-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-xxl-end,html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end,html[data-netbox-color-mode=light] .dropdown-menu-xxl-end{--bs-position: end}html .dropdown-menu-xxl-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}@media print{html .dropup .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropup .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html .dropup .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html .dropup .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropup .dropdown-toggle:empty:after{margin-left:0}}@media print{html .dropend .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropend .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html .dropend .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html .dropend .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:empty:after{margin-left:0}html .dropend .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:after{vertical-align:0}}@media print{html .dropstart .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropstart .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}html .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:after{display:none}html .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html .dropstart .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:empty:after{margin-left:0}html .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:before{vertical-align:0}}@media print{html .dropdown-divider,html[data-netbox-color-mode=dark] .dropdown-divider,html[data-netbox-color-mode=light] .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}}@media print{html .dropdown-item,html[data-netbox-color-mode=dark] .dropdown-item,html[data-netbox-color-mode=light] .dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}html .dropdown-item:hover,html .dropdown-item:focus,html[data-netbox-color-mode=dark] .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-item:focus,html[data-netbox-color-mode=light] .dropdown-item:hover,html[data-netbox-color-mode=light] .dropdown-item:focus{color:#1e2125;background-color:#e9ecef}html .dropdown-item.active,html .dropdown-item:active,html[data-netbox-color-mode=dark] .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-item:active,html[data-netbox-color-mode=light] .dropdown-item.active,html[data-netbox-color-mode=light] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}html .dropdown-item.disabled,html .dropdown-item:disabled,html[data-netbox-color-mode=dark] .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-item:disabled,html[data-netbox-color-mode=light] .dropdown-item.disabled,html[data-netbox-color-mode=light] .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}}@media print{html .dropdown-menu.show,html[data-netbox-color-mode=dark] .dropdown-menu.show,html[data-netbox-color-mode=light] .dropdown-menu.show{display:block}}@media print{html .dropdown-header,html[data-netbox-color-mode=dark] .dropdown-header,html[data-netbox-color-mode=light] .dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}}@media print{html .dropdown-item-text,html[data-netbox-color-mode=dark] .dropdown-item-text,html[data-netbox-color-mode=light] .dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}}@media print{html .dropdown-menu-dark,html[data-netbox-color-mode=dark] .dropdown-menu-dark,html[data-netbox-color-mode=light] .dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}html .dropdown-menu-dark .dropdown-item,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item{color:#dee2e6}html .dropdown-menu-dark .dropdown-item:hover,html .dropdown-menu-dark .dropdown-item:focus,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:focus,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}html .dropdown-menu-dark .dropdown-item.active,html .dropdown-menu-dark .dropdown-item:active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:active,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}html .dropdown-menu-dark .dropdown-item.disabled,html .dropdown-menu-dark .dropdown-item:disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:disabled,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}html .dropdown-menu-dark .dropdown-divider,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-divider,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-divider{border-color:#00000026}html .dropdown-menu-dark .dropdown-item-text,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item-text,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item-text{color:#dee2e6}html .dropdown-menu-dark .dropdown-header,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-header,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-header{color:#adb5bd}}@media print{html .btn-group,html .btn-group-vertical,html[data-netbox-color-mode=dark] .btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical,html[data-netbox-color-mode=light] .btn-group,html[data-netbox-color-mode=light] .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html .btn-group>.btn,html .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=light] .btn-group>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn{position:relative;flex:1 1 auto}html .btn-group>.btn-check:checked+.btn,html .btn-group>.btn-check:focus+.btn,html .btn-group>.btn:hover,html .btn-group>.btn:focus,html .btn-group>.btn:active,html .btn-group>.btn.active,html .btn-group-vertical>.btn-check:checked+.btn,html .btn-group-vertical>.btn-check:focus+.btn,html .btn-group-vertical>.btn:hover,html .btn-group-vertical>.btn:focus,html .btn-group-vertical>.btn:active,html .btn-group-vertical>.btn.active,html[data-netbox-color-mode=dark] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:hover,html[data-netbox-color-mode=dark] .btn-group>.btn:focus,html[data-netbox-color-mode=dark] .btn-group>.btn:active,html[data-netbox-color-mode=dark] .btn-group>.btn.active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn.active,html[data-netbox-color-mode=light] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=light] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=light] .btn-group>.btn:hover,html[data-netbox-color-mode=light] .btn-group>.btn:focus,html[data-netbox-color-mode=light] .btn-group>.btn:active,html[data-netbox-color-mode=light] .btn-group>.btn.active,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=light] .btn-group-vertical>.btn.active{z-index:1}}@media print{html .btn-toolbar,html[data-netbox-color-mode=dark] .btn-toolbar,html[data-netbox-color-mode=light] .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html .btn-toolbar .input-group,html[data-netbox-color-mode=dark] .btn-toolbar .input-group,html[data-netbox-color-mode=light] .btn-toolbar .input-group{width:auto}}@media print{html .btn-group>.btn:not(:first-child),html .btn-group>.btn-group:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child),html[data-netbox-color-mode=light] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:first-child){margin-left:-1px}html .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html .btn-group>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=light] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html .btn-group>.btn:nth-child(n+3),html .btn-group>:not(.btn-check)+.btn,html .btn-group>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=dark] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=light] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=light] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}}@media print{html .dropdown-toggle-split,html[data-netbox-color-mode=dark] .dropdown-toggle-split,html[data-netbox-color-mode=light] .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html .dropdown-toggle-split:after,.dropup html .dropdown-toggle-split:after,.dropend html .dropdown-toggle-split:after,html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,html[data-netbox-color-mode=light] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=light] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=light] .dropdown-toggle-split:after{margin-left:0}.dropstart html .dropdown-toggle-split:before,.dropstart html[data-netbox-color-mode=dark] .dropdown-toggle-split:before,.dropstart html[data-netbox-color-mode=light] .dropdown-toggle-split:before{margin-right:0}}@media print{html .btn-sm+.dropdown-toggle-split,html .btn-group-sm>.btn+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-sm+.dropdown-toggle-split,html[data-netbox-color-mode=light] .btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}}@media print{html .btn-lg+.dropdown-toggle-split,html .btn-group-lg>.btn+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-lg+.dropdown-toggle-split,html[data-netbox-color-mode=light] .btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}}@media print{html .btn-group-vertical,html[data-netbox-color-mode=dark] .btn-group-vertical,html[data-netbox-color-mode=light] .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html .btn-group-vertical>.btn,html .btn-group-vertical>.btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group,html[data-netbox-color-mode=light] .btn-group-vertical>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group{width:100%}html .btn-group-vertical>.btn:not(:first-child),html .btn-group-vertical>.btn-group:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child),html[data-netbox-color-mode=light] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}html .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html .btn-group-vertical>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html .btn-group-vertical>.btn~.btn,html .btn-group-vertical>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}}@media print{html .nav,html[data-netbox-color-mode=dark] .nav,html[data-netbox-color-mode=light] .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}}@media print{html .nav-link,html[data-netbox-color-mode=dark] .nav-link,html[data-netbox-color-mode=light] .nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .nav-link,html[data-netbox-color-mode=dark] .nav-link,html[data-netbox-color-mode=light] .nav-link{transition:none}}@media print{html .nav-link:hover,html .nav-link:focus,html[data-netbox-color-mode=dark] .nav-link:hover,html[data-netbox-color-mode=dark] .nav-link:focus,html[data-netbox-color-mode=light] .nav-link:hover,html[data-netbox-color-mode=light] .nav-link:focus{color:#0a58ca}}@media print{html .nav-link.disabled,html[data-netbox-color-mode=dark] .nav-link.disabled,html[data-netbox-color-mode=light] .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}}@media print{html .nav-tabs,html[data-netbox-color-mode=dark] .nav-tabs,html[data-netbox-color-mode=light] .nav-tabs{border-bottom:1px solid #dee2e6}html .nav-tabs .nav-link,html[data-netbox-color-mode=dark] .nav-tabs .nav-link,html[data-netbox-color-mode=light] .nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}html .nav-tabs .nav-link:hover,html .nav-tabs .nav-link:focus,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:focus,html[data-netbox-color-mode=light] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=light] .nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}html .nav-tabs .nav-link.disabled,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.disabled,html[data-netbox-color-mode=light] .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}html .nav-tabs .nav-link.active,html .nav-tabs .nav-item.show .nav-link,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-item.show .nav-link,html[data-netbox-color-mode=light] .nav-tabs .nav-link.active,html[data-netbox-color-mode=light] .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}html .nav-tabs .dropdown-menu,html[data-netbox-color-mode=dark] .nav-tabs .dropdown-menu,html[data-netbox-color-mode=light] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}}@media print{html .nav-pills .nav-link,html[data-netbox-color-mode=dark] .nav-pills .nav-link,html[data-netbox-color-mode=light] .nav-pills .nav-link{background:none;border:0;border-radius:.375rem}html .nav-pills .nav-link.active,html .nav-pills .show>.nav-link,html[data-netbox-color-mode=dark] .nav-pills .nav-link.active,html[data-netbox-color-mode=dark] .nav-pills .show>.nav-link,html[data-netbox-color-mode=light] .nav-pills .nav-link.active,html[data-netbox-color-mode=light] .nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}}@media print{html .nav-fill>.nav-link,html .nav-fill .nav-item,html[data-netbox-color-mode=dark] .nav-fill>.nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item,html[data-netbox-color-mode=light] .nav-fill>.nav-link,html[data-netbox-color-mode=light] .nav-fill .nav-item{flex:1 1 auto;text-align:center}}@media print{html .nav-justified>.nav-link,html .nav-justified .nav-item,html[data-netbox-color-mode=dark] .nav-justified>.nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item,html[data-netbox-color-mode=light] .nav-justified>.nav-link,html[data-netbox-color-mode=light] .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}}@media print{html .nav-fill .nav-item .nav-link,html .nav-justified .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item .nav-link,html[data-netbox-color-mode=light] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=light] .nav-justified .nav-item .nav-link{width:100%}}@media print{html .tab-content>.tab-pane,html[data-netbox-color-mode=dark] .tab-content>.tab-pane,html[data-netbox-color-mode=light] .tab-content>.tab-pane{display:none}html .tab-content>.active,html[data-netbox-color-mode=dark] .tab-content>.active,html[data-netbox-color-mode=light] .tab-content>.active{display:block}}@media print{html .navbar,html[data-netbox-color-mode=dark] .navbar,html[data-netbox-color-mode=light] .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar>.container-xxl,html[data-netbox-color-mode=light] .navbar>.container-xxl,html[data-netbox-color-mode=dark] .navbar>.container-xl,html[data-netbox-color-mode=light] .navbar>.container-xl,html[data-netbox-color-mode=dark] .navbar>.container-lg,html[data-netbox-color-mode=light] .navbar>.container-lg,html[data-netbox-color-mode=dark] .navbar>.container-md,html[data-netbox-color-mode=light] .navbar>.container-md,html[data-netbox-color-mode=dark] .navbar>.container-sm,html[data-netbox-color-mode=light] .navbar>.container-sm,html .navbar>.container,html .navbar>.container-fluid,html .navbar>.container-sm,html .navbar>.container-md,html .navbar>.container-lg,html .navbar>.container-xl,html .navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}}@media print{html .navbar-brand,html[data-netbox-color-mode=dark] .navbar-brand,html[data-netbox-color-mode=light] .navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}}@media print{html .navbar-nav,html[data-netbox-color-mode=dark] .navbar-nav,html[data-netbox-color-mode=light] .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-nav .nav-link{padding-right:0;padding-left:0}html .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-nav .dropdown-menu{position:static}}@media print{html .navbar-text,html[data-netbox-color-mode=dark] .navbar-text,html[data-netbox-color-mode=light] .navbar-text{padding-top:.5rem;padding-bottom:.5rem}}@media print{html .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-collapse,html[data-netbox-color-mode=light] .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}}@media print{html .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-toggler,html[data-netbox-color-mode=light] .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-toggler,html[data-netbox-color-mode=light] .navbar-toggler{transition:none}}@media print{html .navbar-toggler:hover,html[data-netbox-color-mode=dark] .navbar-toggler:hover,html[data-netbox-color-mode=light] .navbar-toggler:hover{text-decoration:none}}@media print{html .navbar-toggler:focus,html[data-netbox-color-mode=dark] .navbar-toggler:focus,html[data-netbox-color-mode=light] .navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}}@media print{html .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}}@media print{html .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}}@media print and (min-width: 576px){html .navbar-expand-sm,html[data-netbox-color-mode=dark] .navbar-expand-sm,html[data-netbox-color-mode=light] .navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-sm .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav{flex-direction:row}html .navbar-expand-sm .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-sm .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-sm .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html .navbar-expand-sm .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-sm .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-toggler{display:none}}@media print and (min-width: 768px){html .navbar-expand-md,html[data-netbox-color-mode=dark] .navbar-expand-md,html[data-netbox-color-mode=light] .navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-md .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav{flex-direction:row}html .navbar-expand-md .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-md .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-md .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav-scroll{overflow:visible}html .navbar-expand-md .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-md .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-toggler{display:none}}@media print and (min-width: 992px){html .navbar-expand-lg,html[data-netbox-color-mode=dark] .navbar-expand-lg,html[data-netbox-color-mode=light] .navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-lg .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav{flex-direction:row}html .navbar-expand-lg .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-lg .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-lg .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html .navbar-expand-lg .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-lg .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-toggler{display:none}}@media print and (min-width: 1200px){html .navbar-expand-xl,html[data-netbox-color-mode=dark] .navbar-expand-xl,html[data-netbox-color-mode=light] .navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-xl .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav{flex-direction:row}html .navbar-expand-xl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-xl .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-xl .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html .navbar-expand-xl .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-xl .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-toggler{display:none}}@media print and (min-width: 1400px){html .navbar-expand-xxl,html[data-netbox-color-mode=dark] .navbar-expand-xxl,html[data-netbox-color-mode=light] .navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-xxl .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav{flex-direction:row}html .navbar-expand-xxl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-xxl .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-xxl .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}html .navbar-expand-xxl .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-xxl .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-toggler{display:none}}@media print{html .navbar-expand,html[data-netbox-color-mode=dark] .navbar-expand,html[data-netbox-color-mode=light] .navbar-expand{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav{flex-direction:row}html .navbar-expand .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav-scroll{overflow:visible}html .navbar-expand .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand .navbar-toggler{display:none}}@media print{html .navbar-light .navbar-brand,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand,html[data-netbox-color-mode=light] .navbar-light .navbar-brand{color:#000000e6}html .navbar-light .navbar-brand:hover,html .navbar-light .navbar-brand:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-brand:focus{color:#000000e6}html .navbar-light .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link{color:#0000008c}html .navbar-light .navbar-nav .nav-link:hover,html .navbar-light .navbar-nav .nav-link:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link:focus{color:#000000b3}html .navbar-light .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}html .navbar-light .navbar-nav .show>.nav-link,html .navbar-light .navbar-nav .nav-link.active,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.active,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link.active{color:#000000e6}html .navbar-light .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler,html[data-netbox-color-mode=light] .navbar-light .navbar-toggler{color:#0000008c;border-color:#0000001a}html .navbar-light .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html .navbar-light .navbar-text,html[data-netbox-color-mode=dark] .navbar-light .navbar-text,html[data-netbox-color-mode=light] .navbar-light .navbar-text{color:#0000008c}html .navbar-light .navbar-text a,html .navbar-light .navbar-text a:hover,html .navbar-light .navbar-text a:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-text a,html[data-netbox-color-mode=light] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-text a:focus{color:#000000e6}}@media print{html .navbar-dark .navbar-brand,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand{color:#fff}html .navbar-dark .navbar-brand:hover,html .navbar-dark .navbar-brand:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand:focus{color:#fff}html .navbar-dark .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link{color:#ffffff8c}html .navbar-dark .navbar-nav .nav-link:hover,html .navbar-dark .navbar-nav .nav-link:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}html .navbar-dark .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}html .navbar-dark .navbar-nav .show>.nav-link,html .navbar-dark .navbar-nav .nav-link.active,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.active,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link.active{color:#fff}html .navbar-dark .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler,html[data-netbox-color-mode=light] .navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}html .navbar-dark .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html .navbar-dark .navbar-text,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text,html[data-netbox-color-mode=light] .navbar-dark .navbar-text{color:#ffffff8c}html .navbar-dark .navbar-text a,html .navbar-dark .navbar-text a:hover,html .navbar-dark .navbar-text a:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a:focus{color:#fff}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.375rem}html .card>hr,html[data-netbox-color-mode=dark] .card>hr,html[data-netbox-color-mode=light] .card>hr{margin-right:0;margin-left:0}html .card>.list-group,html[data-netbox-color-mode=dark] .card>.list-group,html[data-netbox-color-mode=light] .card>.list-group{border-top:inherit;border-bottom:inherit}html .card>.list-group:first-child,html[data-netbox-color-mode=dark] .card>.list-group:first-child,html[data-netbox-color-mode=light] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .card>.list-group:last-child,html[data-netbox-color-mode=dark] .card>.list-group:last-child,html[data-netbox-color-mode=light] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html .card>.card-header+.list-group,html .card>.list-group+.card-footer,html[data-netbox-color-mode=dark] .card>.card-header+.list-group,html[data-netbox-color-mode=dark] .card>.list-group+.card-footer,html[data-netbox-color-mode=light] .card>.card-header+.list-group,html[data-netbox-color-mode=light] .card>.list-group+.card-footer{border-top:0}}@media print{html .card-body,html[data-netbox-color-mode=dark] .card-body,html[data-netbox-color-mode=light] .card-body{flex:1 1 auto;padding:1rem}}@media print{html .card-title,html[data-netbox-color-mode=dark] .card-title,html[data-netbox-color-mode=light] .card-title{margin-bottom:.5rem}}@media print{html .card-subtitle,html[data-netbox-color-mode=dark] .card-subtitle,html[data-netbox-color-mode=light] .card-subtitle{margin-top:-.25rem;margin-bottom:0}}@media print{html .card-text:last-child,html[data-netbox-color-mode=dark] .card-text:last-child,html[data-netbox-color-mode=light] .card-text:last-child{margin-bottom:0}}@media print{html .card-link:hover,html[data-netbox-color-mode=dark] .card-link:hover,html[data-netbox-color-mode=light] .card-link:hover{text-decoration:none}html .card-link+.card-link,html[data-netbox-color-mode=dark] .card-link+.card-link,html[data-netbox-color-mode=light] .card-link+.card-link{margin-left:1rem}}@media print{html .card-header,html[data-netbox-color-mode=dark] .card-header,html[data-netbox-color-mode=light] .card-header{padding:.5rem 1rem;margin-bottom:0;color:#343a40;background-color:"unset";border-bottom:1px solid rgba(0,0,0,.125)}html .card-header:first-child,html[data-netbox-color-mode=dark] .card-header:first-child,html[data-netbox-color-mode=light] .card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}}@media print{html .card-footer,html[data-netbox-color-mode=dark] .card-footer,html[data-netbox-color-mode=light] .card-footer{padding:.5rem 1rem;color:#343a40;background-color:"unset";border-top:1px solid rgba(0,0,0,.125)}html .card-footer:last-child,html[data-netbox-color-mode=dark] .card-footer:last-child,html[data-netbox-color-mode=light] .card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}}@media print{html .card-header-tabs,html[data-netbox-color-mode=dark] .card-header-tabs,html[data-netbox-color-mode=light] .card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}}@media print{html .card-header-pills,html[data-netbox-color-mode=dark] .card-header-pills,html[data-netbox-color-mode=light] .card-header-pills{margin-right:-.5rem;margin-left:-.5rem}}@media print{html .card-img-overlay,html[data-netbox-color-mode=dark] .card-img-overlay,html[data-netbox-color-mode=light] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}}@media print{html .card-img,html .card-img-top,html .card-img-bottom,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=dark] .card-img-bottom,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-top,html[data-netbox-color-mode=light] .card-img-bottom{width:100%}}@media print{html .card-img,html .card-img-top,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}}@media print{html .card-img,html .card-img-bottom,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-bottom,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}}@media print{html .card-group>.card,html[data-netbox-color-mode=dark] .card-group>.card,html[data-netbox-color-mode=light] .card-group>.card{margin-bottom:.75rem}}@media print and (min-width: 576px){html .card-group,html[data-netbox-color-mode=dark] .card-group,html[data-netbox-color-mode=light] .card-group{display:flex;flex-flow:row wrap}html .card-group>.card,html[data-netbox-color-mode=dark] .card-group>.card,html[data-netbox-color-mode=light] .card-group>.card{flex:1 0 0%;margin-bottom:0}html .card-group>.card+.card,html[data-netbox-color-mode=dark] .card-group>.card+.card,html[data-netbox-color-mode=light] .card-group>.card+.card{margin-left:0;border-left:0}html .card-group>.card:not(:last-child),html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child),html[data-netbox-color-mode=light] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html .card-group>.card:not(:last-child) .card-img-top,html .card-group>.card:not(:last-child) .card-header,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-header,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}html .card-group>.card:not(:last-child) .card-img-bottom,html .card-group>.card:not(:last-child) .card-footer,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-footer,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}html .card-group>.card:not(:first-child),html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child),html[data-netbox-color-mode=light] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html .card-group>.card:not(:first-child) .card-img-top,html .card-group>.card:not(:first-child) .card-header,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-header,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}html .card-group>.card:not(:first-child) .card-img-bottom,html .card-group>.card:not(:first-child) .card-footer,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-footer,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}@media print{html .accordion-button,html[data-netbox-color-mode=dark] .accordion-button,html[data-netbox-color-mode=light] .accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}}@media print and (prefers-reduced-motion: reduce){html .accordion-button,html[data-netbox-color-mode=dark] .accordion-button,html[data-netbox-color-mode=light] .accordion-button{transition:none}}@media print{html .accordion-button:not(.collapsed),html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed),html[data-netbox-color-mode=light] .accordion-button:not(.collapsed){color:#343a40;background-color:#cfe2ff;box-shadow:inset 0 -1px #dee2e6}html .accordion-button:not(.collapsed):after,html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed):after,html[data-netbox-color-mode=light] .accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}}@media print{html .accordion-button:after,html[data-netbox-color-mode=dark] .accordion-button:after,html[data-netbox-color-mode=light] .accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .accordion-button:after,html[data-netbox-color-mode=dark] .accordion-button:after,html[data-netbox-color-mode=light] .accordion-button:after{transition:none}}@media print{html .accordion-button:hover,html[data-netbox-color-mode=dark] .accordion-button:hover,html[data-netbox-color-mode=light] .accordion-button:hover{z-index:2}}@media print{html .accordion-button:focus,html[data-netbox-color-mode=dark] .accordion-button:focus,html[data-netbox-color-mode=light] .accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .accordion-header,html[data-netbox-color-mode=dark] .accordion-header,html[data-netbox-color-mode=light] .accordion-header{margin-bottom:0}}@media print{html .accordion-item,html[data-netbox-color-mode=dark] .accordion-item,html[data-netbox-color-mode=light] .accordion-item{background-color:transparent;border:1px solid #dee2e6}html .accordion-item:first-of-type,html[data-netbox-color-mode=dark] .accordion-item:first-of-type,html[data-netbox-color-mode=light] .accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}html .accordion-item:first-of-type .accordion-button,html[data-netbox-color-mode=dark] .accordion-item:first-of-type .accordion-button,html[data-netbox-color-mode=light] .accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .accordion-item:not(:first-of-type),html[data-netbox-color-mode=dark] .accordion-item:not(:first-of-type),html[data-netbox-color-mode=light] .accordion-item:not(:first-of-type){border-top:0}html .accordion-item:last-of-type,html[data-netbox-color-mode=dark] .accordion-item:last-of-type,html[data-netbox-color-mode=light] .accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .accordion-item:last-of-type .accordion-button.collapsed,html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-button.collapsed,html[data-netbox-color-mode=light] .accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html .accordion-item:last-of-type .accordion-collapse,html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-collapse,html[data-netbox-color-mode=light] .accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .accordion-body,html[data-netbox-color-mode=dark] .accordion-body,html[data-netbox-color-mode=light] .accordion-body{padding:1rem 1.25rem}}@media print{html .accordion-flush .accordion-collapse,html[data-netbox-color-mode=dark] .accordion-flush .accordion-collapse,html[data-netbox-color-mode=light] .accordion-flush .accordion-collapse{border-width:0}html .accordion-flush .accordion-item,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item,html[data-netbox-color-mode=light] .accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}html .accordion-flush .accordion-item:first-child,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:first-child,html[data-netbox-color-mode=light] .accordion-flush .accordion-item:first-child{border-top:0}html .accordion-flush .accordion-item:last-child,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:last-child,html[data-netbox-color-mode=light] .accordion-flush .accordion-item:last-child{border-bottom:0}html .accordion-flush .accordion-item .accordion-button,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item .accordion-button,html[data-netbox-color-mode=light] .accordion-flush .accordion-item .accordion-button{border-radius:0}}@media print{html .breadcrumb,html[data-netbox-color-mode=dark] .breadcrumb,html[data-netbox-color-mode=light] .breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}}@media print{html .breadcrumb-item+.breadcrumb-item,html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item,html[data-netbox-color-mode=light] .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html .breadcrumb-item+.breadcrumb-item:before,html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item:before,html[data-netbox-color-mode=light] .breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E"))}html .breadcrumb-item.active,html[data-netbox-color-mode=dark] .breadcrumb-item.active,html[data-netbox-color-mode=light] .breadcrumb-item.active{color:#6c757d}}@media print{html .pagination,html[data-netbox-color-mode=dark] .pagination,html[data-netbox-color-mode=light] .pagination{display:flex;padding-left:0;list-style:none}}@media print{html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{transition:none}}@media print{html .page-link:hover,html[data-netbox-color-mode=dark] .page-link:hover,html[data-netbox-color-mode=light] .page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}}@media print{html .page-link:focus,html[data-netbox-color-mode=dark] .page-link:focus,html[data-netbox-color-mode=light] .page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .page-item:not(:first-child) .page-link,html[data-netbox-color-mode=dark] .page-item:not(:first-child) .page-link,html[data-netbox-color-mode=light] .page-item:not(:first-child) .page-link{margin-left:-1px}html .page-item.active .page-link,html[data-netbox-color-mode=dark] .page-item.active .page-link,html[data-netbox-color-mode=light] .page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .page-item.disabled .page-link,html[data-netbox-color-mode=dark] .page-item.disabled .page-link,html[data-netbox-color-mode=light] .page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}}@media print{html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{padding:.375rem .75rem}}@media print{html .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .page-item:first-child .page-link,html[data-netbox-color-mode=light] .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .page-item:last-child .page-link,html[data-netbox-color-mode=light] .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .pagination-lg .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}html .pagination-lg .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-item:first-child .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}html .pagination-lg .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-item:last-child .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}}@media print{html .pagination-sm .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}html .pagination-sm .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-item:first-child .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html .pagination-sm .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-item:last-child .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .badge,html[data-netbox-color-mode=dark] .badge,html[data-netbox-color-mode=light] .badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}html .badge:empty,html[data-netbox-color-mode=dark] .badge:empty,html[data-netbox-color-mode=light] .badge:empty{display:none}}@media print{html .btn .badge,html[data-netbox-color-mode=dark] .btn .badge,html[data-netbox-color-mode=light] .btn .badge{position:relative;top:-1px}}@media print{html .alert,html[data-netbox-color-mode=dark] .alert,html[data-netbox-color-mode=light] .alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}}@media print{html .alert-heading,html[data-netbox-color-mode=dark] .alert-heading,html[data-netbox-color-mode=light] .alert-heading{color:inherit}}@media print{html .alert-link,html[data-netbox-color-mode=dark] .alert-link,html[data-netbox-color-mode=light] .alert-link{font-weight:700}}@media print{html .alert-dismissible,html[data-netbox-color-mode=dark] .alert-dismissible,html[data-netbox-color-mode=light] .alert-dismissible{padding-right:3rem}html .alert-dismissible .btn-close,html[data-netbox-color-mode=dark] .alert-dismissible .btn-close,html[data-netbox-color-mode=light] .alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}}@media print{html .alert-primary,html[data-netbox-color-mode=dark] .alert-primary,html[data-netbox-color-mode=light] .alert-primary{color:#1f496e;background-color:#d6e4f1;border-color:#c2d7e9}html .alert-primary .alert-link,html[data-netbox-color-mode=dark] .alert-primary .alert-link,html[data-netbox-color-mode=light] .alert-primary .alert-link{color:#193a58}}@media print{html .alert-secondary,html[data-netbox-color-mode=dark] .alert-secondary,html[data-netbox-color-mode=light] .alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}html .alert-secondary .alert-link,html[data-netbox-color-mode=dark] .alert-secondary .alert-link,html[data-netbox-color-mode=light] .alert-secondary .alert-link{color:#34383c}}@media print{html .alert-success,html[data-netbox-color-mode=dark] .alert-success,html[data-netbox-color-mode=light] .alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-success .alert-link,html[data-netbox-color-mode=dark] .alert-success .alert-link,html[data-netbox-color-mode=light] .alert-success .alert-link{color:#0c4128}}@media print{html .alert-info,html[data-netbox-color-mode=dark] .alert-info,html[data-netbox-color-mode=light] .alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-info .alert-link,html[data-netbox-color-mode=dark] .alert-info .alert-link,html[data-netbox-color-mode=light] .alert-info .alert-link{color:#04414d}}@media print{html .alert-warning,html[data-netbox-color-mode=dark] .alert-warning,html[data-netbox-color-mode=light] .alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-warning .alert-link,html[data-netbox-color-mode=dark] .alert-warning .alert-link,html[data-netbox-color-mode=light] .alert-warning .alert-link{color:#523e02}}@media print{html .alert-danger,html[data-netbox-color-mode=dark] .alert-danger,html[data-netbox-color-mode=light] .alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-danger .alert-link,html[data-netbox-color-mode=dark] .alert-danger .alert-link,html[data-netbox-color-mode=light] .alert-danger .alert-link{color:#6a1a21}}@media print{html .alert-light,html[data-netbox-color-mode=dark] .alert-light,html[data-netbox-color-mode=light] .alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}html .alert-light .alert-link,html[data-netbox-color-mode=dark] .alert-light .alert-link,html[data-netbox-color-mode=light] .alert-light .alert-link{color:#4f5050}}@media print{html .alert-dark,html[data-netbox-color-mode=dark] .alert-dark,html[data-netbox-color-mode=light] .alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}html .alert-dark .alert-link,html[data-netbox-color-mode=dark] .alert-dark .alert-link,html[data-netbox-color-mode=light] .alert-dark .alert-link{color:#101214}}@media print{html .alert-red,html[data-netbox-color-mode=dark] .alert-red,html[data-netbox-color-mode=light] .alert-red{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-red .alert-link,html[data-netbox-color-mode=dark] .alert-red .alert-link,html[data-netbox-color-mode=light] .alert-red .alert-link{color:#6a1a21}}@media print{html .alert-yellow,html[data-netbox-color-mode=dark] .alert-yellow,html[data-netbox-color-mode=light] .alert-yellow{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-yellow .alert-link,html[data-netbox-color-mode=dark] .alert-yellow .alert-link,html[data-netbox-color-mode=light] .alert-yellow .alert-link{color:#523e02}}@media print{html .alert-green,html[data-netbox-color-mode=dark] .alert-green,html[data-netbox-color-mode=light] .alert-green{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-green .alert-link,html[data-netbox-color-mode=dark] .alert-green .alert-link,html[data-netbox-color-mode=light] .alert-green .alert-link{color:#0c4128}}@media print{html .alert-blue,html[data-netbox-color-mode=dark] .alert-blue,html[data-netbox-color-mode=light] .alert-blue{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}html .alert-blue .alert-link,html[data-netbox-color-mode=dark] .alert-blue .alert-link,html[data-netbox-color-mode=light] .alert-blue .alert-link{color:#06357a}}@media print{html .alert-cyan,html[data-netbox-color-mode=dark] .alert-cyan,html[data-netbox-color-mode=light] .alert-cyan{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-cyan .alert-link,html[data-netbox-color-mode=dark] .alert-cyan .alert-link,html[data-netbox-color-mode=light] .alert-cyan .alert-link{color:#04414d}}@media print{html .alert-indigo,html[data-netbox-color-mode=dark] .alert-indigo,html[data-netbox-color-mode=light] .alert-indigo{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}html .alert-indigo .alert-link,html[data-netbox-color-mode=dark] .alert-indigo .alert-link,html[data-netbox-color-mode=light] .alert-indigo .alert-link{color:#310874}}@media print{html .alert-purple,html[data-netbox-color-mode=dark] .alert-purple,html[data-netbox-color-mode=light] .alert-purple{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}html .alert-purple .alert-link,html[data-netbox-color-mode=dark] .alert-purple .alert-link,html[data-netbox-color-mode=light] .alert-purple .alert-link{color:#36205d}}@media print{html .alert-pink,html[data-netbox-color-mode=dark] .alert-pink,html[data-netbox-color-mode=light] .alert-pink{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}html .alert-pink .alert-link,html[data-netbox-color-mode=dark] .alert-pink .alert-link,html[data-netbox-color-mode=light] .alert-pink .alert-link{color:#66193f}}@media print{html .alert-darker,html[data-netbox-color-mode=dark] .alert-darker,html[data-netbox-color-mode=light] .alert-darker{color:#101314;background-color:#d1d2d3;border-color:#bbbcbd}html .alert-darker .alert-link,html[data-netbox-color-mode=dark] .alert-darker .alert-link,html[data-netbox-color-mode=light] .alert-darker .alert-link{color:#0d0f10}}@media print{html .alert-darkest,html[data-netbox-color-mode=dark] .alert-darkest,html[data-netbox-color-mode=light] .alert-darkest{color:#0e1011;background-color:#d1d1d2;border-color:#b9bbbb}html .alert-darkest .alert-link,html[data-netbox-color-mode=dark] .alert-darkest .alert-link,html[data-netbox-color-mode=light] .alert-darkest .alert-link{color:#0b0d0e}}@media print{html .alert-gray,html[data-netbox-color-mode=dark] .alert-gray,html[data-netbox-color-mode=light] .alert-gray{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}html .alert-gray .alert-link,html[data-netbox-color-mode=dark] .alert-gray .alert-link,html[data-netbox-color-mode=light] .alert-gray .alert-link{color:#424446}}@media print{html .alert-gray-100,html[data-netbox-color-mode=dark] .alert-gray-100,html[data-netbox-color-mode=light] .alert-gray-100{color:#636464;background-color:#fefefe;border-color:#fdfdfe}html .alert-gray-100 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-100 .alert-link,html[data-netbox-color-mode=light] .alert-gray-100 .alert-link{color:#4f5050}}@media print{html .alert-gray-200,html[data-netbox-color-mode=dark] .alert-gray-200,html[data-netbox-color-mode=light] .alert-gray-200{color:#5d5e60;background-color:#fbfbfc;border-color:#f8f9fa}html .alert-gray-200 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-200 .alert-link,html[data-netbox-color-mode=light] .alert-gray-200 .alert-link{color:#4a4b4d}}@media print{html .alert-gray-300,html[data-netbox-color-mode=dark] .alert-gray-300,html[data-netbox-color-mode=light] .alert-gray-300{color:#595a5c;background-color:#f8f9fa;border-color:#f5f6f8}html .alert-gray-300 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-300 .alert-link,html[data-netbox-color-mode=light] .alert-gray-300 .alert-link{color:#47484a}}@media print{html .alert-gray-400,html[data-netbox-color-mode=dark] .alert-gray-400,html[data-netbox-color-mode=light] .alert-gray-400{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}html .alert-gray-400 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-400 .alert-link,html[data-netbox-color-mode=light] .alert-gray-400 .alert-link{color:#424446}}@media print{html .alert-gray-500,html[data-netbox-color-mode=dark] .alert-gray-500,html[data-netbox-color-mode=light] .alert-gray-500{color:#686d71;background-color:#eff0f2;border-color:#e6e9eb}html .alert-gray-500 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-500 .alert-link,html[data-netbox-color-mode=light] .alert-gray-500 .alert-link{color:#53575a}}@media print{html .alert-gray-600,html[data-netbox-color-mode=dark] .alert-gray-600,html[data-netbox-color-mode=light] .alert-gray-600{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}html .alert-gray-600 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-600 .alert-link,html[data-netbox-color-mode=light] .alert-gray-600 .alert-link{color:#34383c}}@media print{html .alert-gray-700,html[data-netbox-color-mode=dark] .alert-gray-700,html[data-netbox-color-mode=light] .alert-gray-700{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}html .alert-gray-700 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-700 .alert-link,html[data-netbox-color-mode=light] .alert-gray-700 .alert-link{color:#23262a}}@media print{html .alert-gray-800,html[data-netbox-color-mode=dark] .alert-gray-800,html[data-netbox-color-mode=light] .alert-gray-800{color:#1f2326;background-color:#d6d8d9;border-color:#c2c4c6}html .alert-gray-800 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-800 .alert-link,html[data-netbox-color-mode=light] .alert-gray-800 .alert-link{color:#191c1e}}@media print{html .alert-gray-900,html[data-netbox-color-mode=dark] .alert-gray-900,html[data-netbox-color-mode=light] .alert-gray-900{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}html .alert-gray-900 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-900 .alert-link,html[data-netbox-color-mode=light] .alert-gray-900 .alert-link{color:#101214}}@media print{html .alert-red-100,html[data-netbox-color-mode=dark] .alert-red-100,html[data-netbox-color-mode=light] .alert-red-100{color:#635657;background-color:#fef7f8;border-color:#fdf3f4}html .alert-red-100 .alert-link,html[data-netbox-color-mode=dark] .alert-red-100 .alert-link,html[data-netbox-color-mode=light] .alert-red-100 .alert-link{color:#4f4546}}@media print{html .alert-red-200,html[data-netbox-color-mode=dark] .alert-red-200,html[data-netbox-color-mode=light] .alert-red-200{color:#604648;background-color:#fceff0;border-color:#fbe7e9}html .alert-red-200 .alert-link,html[data-netbox-color-mode=dark] .alert-red-200 .alert-link,html[data-netbox-color-mode=light] .alert-red-200 .alert-link{color:#4d383a}}@media print{html .alert-red-300,html[data-netbox-color-mode=dark] .alert-red-300,html[data-netbox-color-mode=light] .alert-red-300{color:#8c5056;background-color:#fbe7e9;border-color:#f9dbdd}html .alert-red-300 .alert-link,html[data-netbox-color-mode=dark] .alert-red-300 .alert-link,html[data-netbox-color-mode=light] .alert-red-300 .alert-link{color:#704045}}@media print{html .alert-red-400,html[data-netbox-color-mode=dark] .alert-red-400,html[data-netbox-color-mode=light] .alert-red-400{color:#883840;background-color:#f9dfe1;border-color:#f7ced2}html .alert-red-400 .alert-link,html[data-netbox-color-mode=dark] .alert-red-400 .alert-link,html[data-netbox-color-mode=light] .alert-red-400 .alert-link{color:#6d2d33}}@media print{html .alert-red-500,html[data-netbox-color-mode=dark] .alert-red-500,html[data-netbox-color-mode=light] .alert-red-500{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-red-500 .alert-link,html[data-netbox-color-mode=dark] .alert-red-500 .alert-link,html[data-netbox-color-mode=light] .alert-red-500 .alert-link{color:#6a1a21}}@media print{html .alert-red-600,html[data-netbox-color-mode=dark] .alert-red-600,html[data-netbox-color-mode=light] .alert-red-600{color:#6a1921;background-color:#efd4d7;border-color:#e7bfc3}html .alert-red-600 .alert-link,html[data-netbox-color-mode=dark] .alert-red-600 .alert-link,html[data-netbox-color-mode=light] .alert-red-600 .alert-link{color:#55141a}}@media print{html .alert-red-700,html[data-netbox-color-mode=dark] .alert-red-700,html[data-netbox-color-mode=light] .alert-red-700{color:#4f1319;background-color:#e6d2d4;border-color:#dabcbf}html .alert-red-700 .alert-link,html[data-netbox-color-mode=dark] .alert-red-700 .alert-link,html[data-netbox-color-mode=light] .alert-red-700 .alert-link{color:#3f0f14}}@media print{html .alert-red-800,html[data-netbox-color-mode=dark] .alert-red-800,html[data-netbox-color-mode=light] .alert-red-800{color:#350d11;background-color:#ded0d2;border-color:#cdb9bb}html .alert-red-800 .alert-link,html[data-netbox-color-mode=dark] .alert-red-800 .alert-link,html[data-netbox-color-mode=light] .alert-red-800 .alert-link{color:#2a0a0e}}@media print{html .alert-red-900,html[data-netbox-color-mode=dark] .alert-red-900,html[data-netbox-color-mode=light] .alert-red-900{color:#1a0708;background-color:#d5cecf;border-color:#c0b6b7}html .alert-red-900 .alert-link,html[data-netbox-color-mode=dark] .alert-red-900 .alert-link,html[data-netbox-color-mode=light] .alert-red-900 .alert-link{color:#150606}}@media print{html .alert-yellow-100,html[data-netbox-color-mode=dark] .alert-yellow-100,html[data-netbox-color-mode=light] .alert-yellow-100{color:#666152;background-color:#fffdf5;border-color:#fffbf0}html .alert-yellow-100 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-100 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-100 .alert-link{color:#524e42}}@media print{html .alert-yellow-200,html[data-netbox-color-mode=dark] .alert-yellow-200,html[data-netbox-color-mode=light] .alert-yellow-200{color:#665c3e;background-color:#fffaeb;border-color:#fff8e1}html .alert-yellow-200 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-200 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-200 .alert-link{color:#524a32}}@media print{html .alert-yellow-300,html[data-netbox-color-mode=dark] .alert-yellow-300,html[data-netbox-color-mode=light] .alert-yellow-300{color:#66572a;background-color:#fff8e1;border-color:#fff4d2}html .alert-yellow-300 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-300 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-300 .alert-link{color:#524622}}@media print{html .alert-yellow-400,html[data-netbox-color-mode=dark] .alert-yellow-400,html[data-netbox-color-mode=light] .alert-yellow-400{color:#665217;background-color:#fff5d7;border-color:#fff0c4}html .alert-yellow-400 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-400 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-400 .alert-link{color:#524212}}@media print{html .alert-yellow-500,html[data-netbox-color-mode=dark] .alert-yellow-500,html[data-netbox-color-mode=light] .alert-yellow-500{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-yellow-500 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-500 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-500 .alert-link{color:#523e02}}@media print{html .alert-yellow-600,html[data-netbox-color-mode=dark] .alert-yellow-600,html[data-netbox-color-mode=light] .alert-yellow-600{color:#7a5c04;background-color:#f5ebcd;border-color:#f0e1b4}html .alert-yellow-600 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-600 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-600 .alert-link{color:#624a03}}@media print{html .alert-yellow-700,html[data-netbox-color-mode=dark] .alert-yellow-700,html[data-netbox-color-mode=light] .alert-yellow-700{color:#5c4602;background-color:#ebe3cd;border-color:#e0d5b4}html .alert-yellow-700 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-700 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-700 .alert-link{color:#4a3802}}@media print{html .alert-yellow-800,html[data-netbox-color-mode=dark] .alert-yellow-800,html[data-netbox-color-mode=light] .alert-yellow-800{color:#3d2e02;background-color:#e0dbcd;border-color:#d1cab3}html .alert-yellow-800 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-800 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-800 .alert-link{color:#312502}}@media print{html .alert-yellow-900,html[data-netbox-color-mode=dark] .alert-yellow-900,html[data-netbox-color-mode=light] .alert-yellow-900{color:#1f1701;background-color:#d6d4cc;border-color:#c2beb3}html .alert-yellow-900 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-900 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-900 .alert-link{color:#191201}}@media print{html .alert-green-100,html[data-netbox-color-mode=dark] .alert-green-100,html[data-netbox-color-mode=light] .alert-green-100{color:#545c58;background-color:#f6faf8;border-color:#f1f8f5}html .alert-green-100 .alert-link,html[data-netbox-color-mode=dark] .alert-green-100 .alert-link,html[data-netbox-color-mode=light] .alert-green-100 .alert-link{color:#434a46}}@media print{html .alert-green-200,html[data-netbox-color-mode=dark] .alert-green-200,html[data-netbox-color-mode=light] .alert-green-200{color:#41534b;background-color:#edf5f1;border-color:#e3f1eb}html .alert-green-200 .alert-link,html[data-netbox-color-mode=dark] .alert-green-200 .alert-link,html[data-netbox-color-mode=light] .alert-green-200 .alert-link{color:#34423c}}@media print{html .alert-green-300,html[data-netbox-color-mode=dark] .alert-green-300,html[data-netbox-color-mode=light] .alert-green-300{color:#466e5b;background-color:#e3f1ea;border-color:#d6e9e0}html .alert-green-300 .alert-link,html[data-netbox-color-mode=dark] .alert-green-300 .alert-link,html[data-netbox-color-mode=light] .alert-green-300 .alert-link{color:#385849}}@media print{html .alert-green-400,html[data-netbox-color-mode=dark] .alert-green-400,html[data-netbox-color-mode=light] .alert-green-400{color:#2b5f47;background-color:#daece4;border-color:#c8e2d6}html .alert-green-400 .alert-link,html[data-netbox-color-mode=dark] .alert-green-400 .alert-link,html[data-netbox-color-mode=light] .alert-green-400 .alert-link{color:#224c39}}@media print{html .alert-green-500,html[data-netbox-color-mode=dark] .alert-green-500,html[data-netbox-color-mode=light] .alert-green-500{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-green-500 .alert-link,html[data-netbox-color-mode=dark] .alert-green-500 .alert-link,html[data-netbox-color-mode=light] .alert-green-500 .alert-link{color:#0c4128}}@media print{html .alert-green-600,html[data-netbox-color-mode=dark] .alert-green-600,html[data-netbox-color-mode=light] .alert-green-600{color:#0c4128;background-color:#d0e2d9;border-color:#b9d3c7}html .alert-green-600 .alert-link,html[data-netbox-color-mode=dark] .alert-green-600 .alert-link,html[data-netbox-color-mode=light] .alert-green-600 .alert-link{color:#0a3420}}@media print{html .alert-green-700,html[data-netbox-color-mode=dark] .alert-green-700,html[data-netbox-color-mode=light] .alert-green-700{color:#09311e;background-color:#cfdcd6;border-color:#b7cbc2}html .alert-green-700 .alert-link,html[data-netbox-color-mode=dark] .alert-green-700 .alert-link,html[data-netbox-color-mode=light] .alert-green-700 .alert-link{color:#072718}}@media print{html .alert-green-800,html[data-netbox-color-mode=dark] .alert-green-800,html[data-netbox-color-mode=light] .alert-green-800{color:#062014;background-color:#ced7d3;border-color:#b6c3bd}html .alert-green-800 .alert-link,html[data-netbox-color-mode=dark] .alert-green-800 .alert-link,html[data-netbox-color-mode=light] .alert-green-800 .alert-link{color:#051a10}}@media print{html .alert-green-900,html[data-netbox-color-mode=dark] .alert-green-900,html[data-netbox-color-mode=light] .alert-green-900{color:#03100a;background-color:#cdd1cf;border-color:#b4bbb8}html .alert-green-900 .alert-link,html[data-netbox-color-mode=dark] .alert-green-900 .alert-link,html[data-netbox-color-mode=light] .alert-green-900 .alert-link{color:#020d08}}@media print{html .alert-blue-100,html[data-netbox-color-mode=dark] .alert-blue-100,html[data-netbox-color-mode=light] .alert-blue-100{color:#535a66;background-color:#f5f9ff;border-color:#f1f6ff}html .alert-blue-100 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-100 .alert-link,html[data-netbox-color-mode=light] .alert-blue-100 .alert-link{color:#424852}}@media print{html .alert-blue-200,html[data-netbox-color-mode=dark] .alert-blue-200,html[data-netbox-color-mode=light] .alert-blue-200{color:#3f4f66;background-color:#ecf3ff;border-color:#e2eeff}html .alert-blue-200 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-200 .alert-link,html[data-netbox-color-mode=light] .alert-blue-200 .alert-link{color:#323f52}}@media print{html .alert-blue-300,html[data-netbox-color-mode=dark] .alert-blue-300,html[data-netbox-color-mode=light] .alert-blue-300{color:#426598;background-color:#e2eeff;border-color:#d4e5ff}html .alert-blue-300 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-300 .alert-link,html[data-netbox-color-mode=light] .alert-blue-300 .alert-link{color:#35517a}}@media print{html .alert-blue-400,html[data-netbox-color-mode=dark] .alert-blue-400,html[data-netbox-color-mode=light] .alert-blue-400{color:#255398;background-color:#d8e8ff;border-color:#c5dcfe}html .alert-blue-400 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-400 .alert-link,html[data-netbox-color-mode=light] .alert-blue-400 .alert-link{color:#1e427a}}@media print{html .alert-blue-500,html[data-netbox-color-mode=dark] .alert-blue-500,html[data-netbox-color-mode=light] .alert-blue-500{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}html .alert-blue-500 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-500 .alert-link,html[data-netbox-color-mode=light] .alert-blue-500 .alert-link{color:#06357a}}@media print{html .alert-blue-600,html[data-netbox-color-mode=dark] .alert-blue-600,html[data-netbox-color-mode=light] .alert-blue-600{color:#063579;background-color:#cedef4;border-color:#b6cdef}html .alert-blue-600 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-600 .alert-link,html[data-netbox-color-mode=light] .alert-blue-600 .alert-link{color:#052a61}}@media print{html .alert-blue-700,html[data-netbox-color-mode=dark] .alert-blue-700,html[data-netbox-color-mode=light] .alert-blue-700{color:#05285b;background-color:#ced9ea;border-color:#b5c6e0}html .alert-blue-700 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-700 .alert-link,html[data-netbox-color-mode=light] .alert-blue-700 .alert-link{color:#042049}}@media print{html .alert-blue-800,html[data-netbox-color-mode=dark] .alert-blue-800,html[data-netbox-color-mode=light] .alert-blue-800{color:#031a3d;background-color:#cdd5e0;border-color:#b4c0d1}html .alert-blue-800 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-800 .alert-link,html[data-netbox-color-mode=light] .alert-blue-800 .alert-link{color:#021531}}@media print{html .alert-blue-900,html[data-netbox-color-mode=dark] .alert-blue-900,html[data-netbox-color-mode=light] .alert-blue-900{color:#020d1f;background-color:#cdd0d6;border-color:#b3b9c2}html .alert-blue-900 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-900 .alert-link,html[data-netbox-color-mode=light] .alert-blue-900 .alert-link{color:#020a19}}@media print{html .alert-cyan-100,html[data-netbox-color-mode=dark] .alert-cyan-100,html[data-netbox-color-mode=light] .alert-cyan-100{color:#536265;background-color:#f5fdfe;border-color:#f1fcfe}html .alert-cyan-100 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-100 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-100 .alert-link{color:#424e51}}@media print{html .alert-cyan-200,html[data-netbox-color-mode=dark] .alert-cyan-200,html[data-netbox-color-mode=light] .alert-cyan-200{color:#3f5e64;background-color:#ecfbfe;border-color:#e2f9fd}html .alert-cyan-200 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-200 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-200 .alert-link{color:#324b50}}@media print{html .alert-cyan-300,html[data-netbox-color-mode=dark] .alert-cyan-300,html[data-netbox-color-mode=light] .alert-cyan-300{color:#2c5962;background-color:#e2f9fd;border-color:#d4f5fc}html .alert-cyan-300 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-300 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-300 .alert-link{color:#23474e}}@media print{html .alert-cyan-400,html[data-netbox-color-mode=dark] .alert-cyan-400,html[data-netbox-color-mode=light] .alert-cyan-400{color:#185561;background-color:#d8f7fd;border-color:#c5f2fb}html .alert-cyan-400 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-400 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-400 .alert-link{color:#13444e}}@media print{html .alert-cyan-500,html[data-netbox-color-mode=dark] .alert-cyan-500,html[data-netbox-color-mode=light] .alert-cyan-500{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-cyan-500 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-500 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-500 .alert-link{color:#04414d}}@media print{html .alert-cyan-600,html[data-netbox-color-mode=dark] .alert-cyan-600,html[data-netbox-color-mode=light] .alert-cyan-600{color:#066173;background-color:#ceecf2;border-color:#b6e3ec}html .alert-cyan-600 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-600 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-600 .alert-link{color:#054e5c}}@media print{html .alert-cyan-700,html[data-netbox-color-mode=dark] .alert-cyan-700,html[data-netbox-color-mode=light] .alert-cyan-700{color:#054956;background-color:#cee4e9;border-color:#b5d7de}html .alert-cyan-700 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-700 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-700 .alert-link{color:#043a45}}@media print{html .alert-cyan-800,html[data-netbox-color-mode=dark] .alert-cyan-800,html[data-netbox-color-mode=light] .alert-cyan-800{color:#03313a;background-color:#cddcdf;border-color:#b4cbcf}html .alert-cyan-800 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-800 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-800 .alert-link{color:#02272e}}@media print{html .alert-cyan-900,html[data-netbox-color-mode=dark] .alert-cyan-900,html[data-netbox-color-mode=light] .alert-cyan-900{color:#02181d;background-color:#cdd4d6;border-color:#b3bfc1}html .alert-cyan-900 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-900 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-900 .alert-link{color:#021317}}@media print{html .alert-indigo-100,html[data-netbox-color-mode=dark] .alert-indigo-100,html[data-netbox-color-mode=light] .alert-indigo-100{color:#5a5365;background-color:#f9f5fe;border-color:#f6f1fe}html .alert-indigo-100 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-100 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-100 .alert-link{color:#484251}}@media print{html .alert-indigo-200,html[data-netbox-color-mode=dark] .alert-indigo-200,html[data-netbox-color-mode=light] .alert-indigo-200{color:#745f96;background-color:#f3ecfe;border-color:#ede2fe}html .alert-indigo-200 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-200 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-200 .alert-link{color:#5d4c78}}@media print{html .alert-indigo-300,html[data-netbox-color-mode=dark] .alert-indigo-300,html[data-netbox-color-mode=light] .alert-indigo-300{color:#624394;background-color:#ede2fd;border-color:#e3d4fd}html .alert-indigo-300 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-300 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-300 .alert-link{color:#4e3676}}@media print{html .alert-indigo-400,html[data-netbox-color-mode=dark] .alert-indigo-400,html[data-netbox-color-mode=light] .alert-indigo-400{color:#502693;background-color:#e7d9fd;border-color:#dac6fc}html .alert-indigo-400 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-400 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-400 .alert-link{color:#401e76}}@media print{html .alert-indigo-500,html[data-netbox-color-mode=dark] .alert-indigo-500,html[data-netbox-color-mode=light] .alert-indigo-500{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}html .alert-indigo-500 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-500 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-500 .alert-link{color:#310874}}@media print{html .alert-indigo-600,html[data-netbox-color-mode=dark] .alert-indigo-600,html[data-netbox-color-mode=light] .alert-indigo-600{color:#310874;background-color:#dccff3;border-color:#cbb6ed}html .alert-indigo-600 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-600 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-600 .alert-link{color:#27065d}}@media print{html .alert-indigo-700,html[data-netbox-color-mode=dark] .alert-indigo-700,html[data-netbox-color-mode=light] .alert-indigo-700{color:#250657;background-color:#d8cee9;border-color:#c5b6de}html .alert-indigo-700 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-700 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-700 .alert-link{color:#1e0546}}@media print{html .alert-indigo-800,html[data-netbox-color-mode=dark] .alert-indigo-800,html[data-netbox-color-mode=light] .alert-indigo-800{color:#19043a;background-color:#d4cddf;border-color:#bfb4d0}html .alert-indigo-800 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-800 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-800 .alert-link{color:#14032e}}@media print{html .alert-indigo-900,html[data-netbox-color-mode=dark] .alert-indigo-900,html[data-netbox-color-mode=light] .alert-indigo-900{color:#0c021d;background-color:#d0cdd6;border-color:#b9b3c1}html .alert-indigo-900 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-900 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-900 .alert-link{color:#0a0217}}@media print{html .alert-purple-100,html[data-netbox-color-mode=dark] .alert-purple-100,html[data-netbox-color-mode=light] .alert-purple-100{color:#5a5761;background-color:#f9f7fd;border-color:#f6f4fb}html .alert-purple-100 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-100 .alert-link,html[data-netbox-color-mode=light] .alert-purple-100 .alert-link{color:#48464e}}@media print{html .alert-purple-200,html[data-netbox-color-mode=dark] .alert-purple-200,html[data-netbox-color-mode=light] .alert-purple-200{color:#4f485c;background-color:#f3f0fa;border-color:#eee8f8}html .alert-purple-200 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-200 .alert-link,html[data-netbox-color-mode=light] .alert-purple-200 .alert-link{color:#3f3a4a}}@media print{html .alert-purple-300,html[data-netbox-color-mode=dark] .alert-purple-300,html[data-netbox-color-mode=light] .alert-purple-300{color:#655583;background-color:#eee8f8;border-color:#e5ddf4}html .alert-purple-300 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-300 .alert-link,html[data-netbox-color-mode=light] .alert-purple-300 .alert-link{color:#514469}}@media print{html .alert-purple-400,html[data-netbox-color-mode=dark] .alert-purple-400,html[data-netbox-color-mode=light] .alert-purple-400{color:#543e7b;background-color:#e8e1f5;border-color:#ddd2f0}html .alert-purple-400 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-400 .alert-link,html[data-netbox-color-mode=light] .alert-purple-400 .alert-link{color:#433262}}@media print{html .alert-purple-500,html[data-netbox-color-mode=dark] .alert-purple-500,html[data-netbox-color-mode=light] .alert-purple-500{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}html .alert-purple-500 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-500 .alert-link,html[data-netbox-color-mode=light] .alert-purple-500 .alert-link{color:#36205d}}@media print{html .alert-purple-600,html[data-netbox-color-mode=dark] .alert-purple-600,html[data-netbox-color-mode=light] .alert-purple-600{color:#35205c;background-color:#ded7eb;border-color:#cdc2e1}html .alert-purple-600 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-600 .alert-link,html[data-netbox-color-mode=light] .alert-purple-600 .alert-link{color:#2a1a4a}}@media print{html .alert-purple-700,html[data-netbox-color-mode=dark] .alert-purple-700,html[data-netbox-color-mode=light] .alert-purple-700{color:#281846;background-color:#d9d4e3;border-color:#c7bfd5}html .alert-purple-700 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-700 .alert-link,html[data-netbox-color-mode=light] .alert-purple-700 .alert-link{color:#201338}}@media print{html .alert-purple-800,html[data-netbox-color-mode=dark] .alert-purple-800,html[data-netbox-color-mode=light] .alert-purple-800{color:#1a102e;background-color:#d5d1db;border-color:#c0baca}html .alert-purple-800 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-800 .alert-link,html[data-netbox-color-mode=light] .alert-purple-800 .alert-link{color:#150d25}}@media print{html .alert-purple-900,html[data-netbox-color-mode=dark] .alert-purple-900,html[data-netbox-color-mode=light] .alert-purple-900{color:#0d0817;background-color:#d0cfd4;border-color:#b9b6be}html .alert-purple-900 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-900 .alert-link,html[data-netbox-color-mode=light] .alert-purple-900 .alert-link{color:#0a0612}}@media print{html .alert-pink-100,html[data-netbox-color-mode=dark] .alert-pink-100,html[data-netbox-color-mode=light] .alert-pink-100{color:#63565c;background-color:#fdf7fa;border-color:#fdf3f8}html .alert-pink-100 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-100 .alert-link,html[data-netbox-color-mode=light] .alert-pink-100 .alert-link{color:#4f454a}}@media print{html .alert-pink-200,html[data-netbox-color-mode=dark] .alert-pink-200,html[data-netbox-color-mode=light] .alert-pink-200{color:#604552;background-color:#fceff5;border-color:#fae6f0}html .alert-pink-200 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-200 .alert-link,html[data-netbox-color-mode=light] .alert-pink-200 .alert-link{color:#4d3742}}@media print{html .alert-pink-300,html[data-netbox-color-mode=dark] .alert-pink-300,html[data-netbox-color-mode=light] .alert-pink-300{color:#8a506d;background-color:#fae7f0;border-color:#f8dae9}html .alert-pink-300 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-300 .alert-link,html[data-netbox-color-mode=light] .alert-pink-300 .alert-link{color:#6e4057}}@media print{html .alert-pink-400,html[data-netbox-color-mode=dark] .alert-pink-400,html[data-netbox-color-mode=light] .alert-pink-400{color:#85375e;background-color:#f8deeb;border-color:#f5cee2}html .alert-pink-400 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-400 .alert-link,html[data-netbox-color-mode=light] .alert-pink-400 .alert-link{color:#6a2c4b}}@media print{html .alert-pink-500,html[data-netbox-color-mode=dark] .alert-pink-500,html[data-netbox-color-mode=light] .alert-pink-500{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}html .alert-pink-500 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-500 .alert-link,html[data-netbox-color-mode=light] .alert-pink-500 .alert-link{color:#66193f}}@media print{html .alert-pink-600,html[data-netbox-color-mode=dark] .alert-pink-600,html[data-netbox-color-mode=light] .alert-pink-600{color:#671940;background-color:#eed4e1;border-color:#e6bfd2}html .alert-pink-600 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-600 .alert-link,html[data-netbox-color-mode=light] .alert-pink-600 .alert-link{color:#521433}}@media print{html .alert-pink-700,html[data-netbox-color-mode=dark] .alert-pink-700,html[data-netbox-color-mode=light] .alert-pink-700{color:#4d132f;background-color:#e6d2dc;border-color:#d9bcca}html .alert-pink-700 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-700 .alert-link,html[data-netbox-color-mode=light] .alert-pink-700 .alert-link{color:#3e0f26}}@media print{html .alert-pink-800,html[data-netbox-color-mode=dark] .alert-pink-800,html[data-netbox-color-mode=light] .alert-pink-800{color:#340c20;background-color:#ddd0d7;border-color:#ccb9c2}html .alert-pink-800 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-800 .alert-link,html[data-netbox-color-mode=light] .alert-pink-800 .alert-link{color:#2a0a1a}}@media print{html .alert-pink-900,html[data-netbox-color-mode=dark] .alert-pink-900,html[data-netbox-color-mode=light] .alert-pink-900{color:#1a0610;background-color:#d5ced1;border-color:#bfb6ba}html .alert-pink-900 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-900 .alert-link,html[data-netbox-color-mode=light] .alert-pink-900 .alert-link{color:#15050d}}@media print{@keyframes progress-bar-stripes{0%{background-position-x:1rem}}}@media print{html .progress,html[data-netbox-color-mode=dark] .progress,html[data-netbox-color-mode=light] .progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.375rem}}@media print{html .progress-bar,html[data-netbox-color-mode=dark] .progress-bar,html[data-netbox-color-mode=light] .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}}@media print and (prefers-reduced-motion: reduce){html .progress-bar,html[data-netbox-color-mode=dark] .progress-bar,html[data-netbox-color-mode=light] .progress-bar{transition:none}}@media print{html .progress-bar-striped,html[data-netbox-color-mode=dark] .progress-bar-striped,html[data-netbox-color-mode=light] .progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}}@media print{html .progress-bar-animated,html[data-netbox-color-mode=dark] .progress-bar-animated,html[data-netbox-color-mode=light] .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}}@media print and (prefers-reduced-motion: reduce){html .progress-bar-animated,html[data-netbox-color-mode=dark] .progress-bar-animated,html[data-netbox-color-mode=light] .progress-bar-animated{animation:none}}@media print{html .list-group,html[data-netbox-color-mode=dark] .list-group,html[data-netbox-color-mode=light] .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}}@media print{html .list-group-numbered,html[data-netbox-color-mode=dark] .list-group-numbered,html[data-netbox-color-mode=light] .list-group-numbered{list-style-type:none;counter-reset:section}html .list-group-numbered>li:before,html[data-netbox-color-mode=dark] .list-group-numbered>li:before,html[data-netbox-color-mode=light] .list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}}@media print{html .list-group-item-action,html[data-netbox-color-mode=dark] .list-group-item-action,html[data-netbox-color-mode=light] .list-group-item-action{width:100%;color:#495057;text-align:inherit}html .list-group-item-action:hover,html .list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}html .list-group-item-action:active,html[data-netbox-color-mode=dark] .list-group-item-action:active,html[data-netbox-color-mode=light] .list-group-item-action:active{color:#212529;background-color:#e9ecef}}@media print{html .list-group-item,html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=light] .list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#495057;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}html .list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html .list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html .list-group-item.disabled,html .list-group-item:disabled,html[data-netbox-color-mode=dark] .list-group-item.disabled,html[data-netbox-color-mode=dark] .list-group-item:disabled,html[data-netbox-color-mode=light] .list-group-item.disabled,html[data-netbox-color-mode=light] .list-group-item:disabled{color:#adb5bd;pointer-events:none;background-color:#fff}html .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .list-group-item+html .list-group-item,html .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html .list-group-item+html[data-netbox-color-mode=light] .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=light] .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=light] .list-group-item{border-top-width:0}html .list-group-item+html .list-group-item.active,html .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active{margin-top:-1px;border-top-width:1px}}@media print{html .list-group-horizontal,html[data-netbox-color-mode=dark] .list-group-horizontal,html[data-netbox-color-mode=light] .list-group-horizontal{flex-direction:row}html .list-group-horizontal>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item.active{margin-top:0}html .list-group-horizontal>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 576px){html .list-group-horizontal-sm,html[data-netbox-color-mode=dark] .list-group-horizontal-sm,html[data-netbox-color-mode=light] .list-group-horizontal-sm{flex-direction:row}html .list-group-horizontal-sm>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-sm>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-sm>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html .list-group-horizontal-sm>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-sm>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 768px){html .list-group-horizontal-md,html[data-netbox-color-mode=dark] .list-group-horizontal-md,html[data-netbox-color-mode=light] .list-group-horizontal-md{flex-direction:row}html .list-group-horizontal-md>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-md>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-md>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item.active{margin-top:0}html .list-group-horizontal-md>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-md>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 992px){html .list-group-horizontal-lg,html[data-netbox-color-mode=dark] .list-group-horizontal-lg,html[data-netbox-color-mode=light] .list-group-horizontal-lg{flex-direction:row}html .list-group-horizontal-lg>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-lg>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-lg>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html .list-group-horizontal-lg>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-lg>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 1200px){html .list-group-horizontal-xl,html[data-netbox-color-mode=dark] .list-group-horizontal-xl,html[data-netbox-color-mode=light] .list-group-horizontal-xl{flex-direction:row}html .list-group-horizontal-xl>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-xl>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-xl>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html .list-group-horizontal-xl>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-xl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 1400px){html .list-group-horizontal-xxl,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl,html[data-netbox-color-mode=light] .list-group-horizontal-xxl{flex-direction:row}html .list-group-horizontal-xxl>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-xxl>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-xxl>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}html .list-group-horizontal-xxl>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-xxl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print{html .list-group-flush,html[data-netbox-color-mode=dark] .list-group-flush,html[data-netbox-color-mode=light] .list-group-flush{border-radius:0}html .list-group-flush>.list-group-item,html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item,html[data-netbox-color-mode=light] .list-group-flush>.list-group-item{border-width:0 0 1px}html .list-group-flush>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}}@media print{html .list-group-item-primary,html[data-netbox-color-mode=dark] .list-group-item-primary,html[data-netbox-color-mode=light] .list-group-item-primary{color:#1f496e;background-color:#d6e4f1}html .list-group-item-primary.list-group-item-action:hover,html .list-group-item-primary.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action:focus{color:#1f496e;background-color:#c1cdd9}html .list-group-item-primary.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1f496e;border-color:#1f496e}}@media print{html .list-group-item-secondary,html[data-netbox-color-mode=dark] .list-group-item-secondary,html[data-netbox-color-mode=light] .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}html .list-group-item-secondary.list-group-item-action:hover,html .list-group-item-secondary.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html .list-group-item-secondary.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}}@media print{html .list-group-item-success,html[data-netbox-color-mode=dark] .list-group-item-success,html[data-netbox-color-mode=light] .list-group-item-success{color:#0f5132;background-color:#d1e7dd}html .list-group-item-success.list-group-item-action:hover,html .list-group-item-success.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-success.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-info,html[data-netbox-color-mode=dark] .list-group-item-info,html[data-netbox-color-mode=light] .list-group-item-info{color:#055160;background-color:#cff4fc}html .list-group-item-info.list-group-item-action:hover,html .list-group-item-info.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-info.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-warning,html[data-netbox-color-mode=dark] .list-group-item-warning,html[data-netbox-color-mode=light] .list-group-item-warning{color:#664d03;background-color:#fff3cd}html .list-group-item-warning.list-group-item-action:hover,html .list-group-item-warning.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-warning.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-danger,html[data-netbox-color-mode=dark] .list-group-item-danger,html[data-netbox-color-mode=light] .list-group-item-danger{color:#842029;background-color:#f8d7da}html .list-group-item-danger.list-group-item-action:hover,html .list-group-item-danger.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-danger.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-light,html[data-netbox-color-mode=dark] .list-group-item-light,html[data-netbox-color-mode=light] .list-group-item-light{color:#636464;background-color:#fefefe}html .list-group-item-light.list-group-item-action:hover,html .list-group-item-light.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html .list-group-item-light.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}}@media print{html .list-group-item-dark,html[data-netbox-color-mode=dark] .list-group-item-dark,html[data-netbox-color-mode=light] .list-group-item-dark{color:#141619;background-color:#d3d3d4}html .list-group-item-dark.list-group-item-action:hover,html .list-group-item-dark.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}html .list-group-item-dark.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}}@media print{html .list-group-item-red,html[data-netbox-color-mode=dark] .list-group-item-red,html[data-netbox-color-mode=light] .list-group-item-red{color:#842029;background-color:#f8d7da}html .list-group-item-red.list-group-item-action:hover,html .list-group-item-red.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-red.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-yellow,html[data-netbox-color-mode=dark] .list-group-item-yellow,html[data-netbox-color-mode=light] .list-group-item-yellow{color:#664d03;background-color:#fff3cd}html .list-group-item-yellow.list-group-item-action:hover,html .list-group-item-yellow.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-yellow.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-green,html[data-netbox-color-mode=dark] .list-group-item-green,html[data-netbox-color-mode=light] .list-group-item-green{color:#0f5132;background-color:#d1e7dd}html .list-group-item-green.list-group-item-action:hover,html .list-group-item-green.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-green.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-blue,html[data-netbox-color-mode=dark] .list-group-item-blue,html[data-netbox-color-mode=light] .list-group-item-blue{color:#084298;background-color:#cfe2ff}html .list-group-item-blue.list-group-item-action:hover,html .list-group-item-blue.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html .list-group-item-blue.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .list-group-item-cyan,html[data-netbox-color-mode=dark] .list-group-item-cyan,html[data-netbox-color-mode=light] .list-group-item-cyan{color:#055160;background-color:#cff4fc}html .list-group-item-cyan.list-group-item-action:hover,html .list-group-item-cyan.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-cyan.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-indigo,html[data-netbox-color-mode=dark] .list-group-item-indigo,html[data-netbox-color-mode=light] .list-group-item-indigo{color:#3d0a91;background-color:#e0cffc}html .list-group-item-indigo.list-group-item-action:hover,html .list-group-item-indigo.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html .list-group-item-indigo.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .list-group-item-purple,html[data-netbox-color-mode=dark] .list-group-item-purple,html[data-netbox-color-mode=light] .list-group-item-purple{color:#432874;background-color:#e2d9f3}html .list-group-item-purple.list-group-item-action:hover,html .list-group-item-purple.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html .list-group-item-purple.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .list-group-item-pink,html[data-netbox-color-mode=dark] .list-group-item-pink,html[data-netbox-color-mode=light] .list-group-item-pink{color:#801f4f;background-color:#f7d6e6}html .list-group-item-pink.list-group-item-action:hover,html .list-group-item-pink.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html .list-group-item-pink.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .list-group-item-darker,html[data-netbox-color-mode=dark] .list-group-item-darker,html[data-netbox-color-mode=light] .list-group-item-darker{color:#101314;background-color:#d1d2d3}html .list-group-item-darker.list-group-item-action:hover,html .list-group-item-darker.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}html .list-group-item-darker.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}}@media print{html .list-group-item-darkest,html[data-netbox-color-mode=dark] .list-group-item-darkest,html[data-netbox-color-mode=light] .list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}html .list-group-item-darkest.list-group-item-action:hover,html .list-group-item-darkest.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}html .list-group-item-darkest.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}}@media print{html .list-group-item-gray,html[data-netbox-color-mode=dark] .list-group-item-gray,html[data-netbox-color-mode=light] .list-group-item-gray{color:#525557;background-color:#f5f6f8}html .list-group-item-gray.list-group-item-action:hover,html .list-group-item-gray.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}html .list-group-item-gray.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}}@media print{html .list-group-item-gray-100,html[data-netbox-color-mode=dark] .list-group-item-gray-100,html[data-netbox-color-mode=light] .list-group-item-gray-100{color:#636464;background-color:#fefefe}html .list-group-item-gray-100.list-group-item-action:hover,html .list-group-item-gray-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html .list-group-item-gray-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}}@media print{html .list-group-item-gray-200,html[data-netbox-color-mode=dark] .list-group-item-gray-200,html[data-netbox-color-mode=light] .list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}html .list-group-item-gray-200.list-group-item-action:hover,html .list-group-item-gray-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}html .list-group-item-gray-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}}@media print{html .list-group-item-gray-300,html[data-netbox-color-mode=dark] .list-group-item-gray-300,html[data-netbox-color-mode=light] .list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}html .list-group-item-gray-300.list-group-item-action:hover,html .list-group-item-gray-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html .list-group-item-gray-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}}@media print{html .list-group-item-gray-400,html[data-netbox-color-mode=dark] .list-group-item-gray-400,html[data-netbox-color-mode=light] .list-group-item-gray-400{color:#525557;background-color:#f5f6f8}html .list-group-item-gray-400.list-group-item-action:hover,html .list-group-item-gray-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}html .list-group-item-gray-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}}@media print{html .list-group-item-gray-500,html[data-netbox-color-mode=dark] .list-group-item-gray-500,html[data-netbox-color-mode=light] .list-group-item-gray-500{color:#686d71;background-color:#eff0f2}html .list-group-item-gray-500.list-group-item-action:hover,html .list-group-item-gray-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html .list-group-item-gray-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}}@media print{html .list-group-item-gray-600,html[data-netbox-color-mode=dark] .list-group-item-gray-600,html[data-netbox-color-mode=light] .list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}html .list-group-item-gray-600.list-group-item-action:hover,html .list-group-item-gray-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html .list-group-item-gray-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}}@media print{html .list-group-item-gray-700,html[data-netbox-color-mode=dark] .list-group-item-gray-700,html[data-netbox-color-mode=light] .list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}html .list-group-item-gray-700.list-group-item-action:hover,html .list-group-item-gray-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}html .list-group-item-gray-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}}@media print{html .list-group-item-gray-800,html[data-netbox-color-mode=dark] .list-group-item-gray-800,html[data-netbox-color-mode=light] .list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}html .list-group-item-gray-800.list-group-item-action:hover,html .list-group-item-gray-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}html .list-group-item-gray-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}}@media print{html .list-group-item-gray-900,html[data-netbox-color-mode=dark] .list-group-item-gray-900,html[data-netbox-color-mode=light] .list-group-item-gray-900{color:#141619;background-color:#d3d3d4}html .list-group-item-gray-900.list-group-item-action:hover,html .list-group-item-gray-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}html .list-group-item-gray-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}}@media print{html .list-group-item-red-100,html[data-netbox-color-mode=dark] .list-group-item-red-100,html[data-netbox-color-mode=light] .list-group-item-red-100{color:#635657;background-color:#fef7f8}html .list-group-item-red-100.list-group-item-action:hover,html .list-group-item-red-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}html .list-group-item-red-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}}@media print{html .list-group-item-red-200,html[data-netbox-color-mode=dark] .list-group-item-red-200,html[data-netbox-color-mode=light] .list-group-item-red-200{color:#604648;background-color:#fceff0}html .list-group-item-red-200.list-group-item-action:hover,html .list-group-item-red-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}html .list-group-item-red-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}}@media print{html .list-group-item-red-300,html[data-netbox-color-mode=dark] .list-group-item-red-300,html[data-netbox-color-mode=light] .list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}html .list-group-item-red-300.list-group-item-action:hover,html .list-group-item-red-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html .list-group-item-red-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}}@media print{html .list-group-item-red-400,html[data-netbox-color-mode=dark] .list-group-item-red-400,html[data-netbox-color-mode=light] .list-group-item-red-400{color:#883840;background-color:#f9dfe1}html .list-group-item-red-400.list-group-item-action:hover,html .list-group-item-red-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}html .list-group-item-red-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}}@media print{html .list-group-item-red-500,html[data-netbox-color-mode=dark] .list-group-item-red-500,html[data-netbox-color-mode=light] .list-group-item-red-500{color:#842029;background-color:#f8d7da}html .list-group-item-red-500.list-group-item-action:hover,html .list-group-item-red-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-red-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-red-600,html[data-netbox-color-mode=dark] .list-group-item-red-600,html[data-netbox-color-mode=light] .list-group-item-red-600{color:#6a1921;background-color:#efd4d7}html .list-group-item-red-600.list-group-item-action:hover,html .list-group-item-red-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}html .list-group-item-red-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}}@media print{html .list-group-item-red-700,html[data-netbox-color-mode=dark] .list-group-item-red-700,html[data-netbox-color-mode=light] .list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}html .list-group-item-red-700.list-group-item-action:hover,html .list-group-item-red-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}html .list-group-item-red-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}}@media print{html .list-group-item-red-800,html[data-netbox-color-mode=dark] .list-group-item-red-800,html[data-netbox-color-mode=light] .list-group-item-red-800{color:#350d11;background-color:#ded0d2}html .list-group-item-red-800.list-group-item-action:hover,html .list-group-item-red-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}html .list-group-item-red-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}}@media print{html .list-group-item-red-900,html[data-netbox-color-mode=dark] .list-group-item-red-900,html[data-netbox-color-mode=light] .list-group-item-red-900{color:#1a0708;background-color:#d5cecf}html .list-group-item-red-900.list-group-item-action:hover,html .list-group-item-red-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}html .list-group-item-red-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}}@media print{html .list-group-item-yellow-100,html[data-netbox-color-mode=dark] .list-group-item-yellow-100,html[data-netbox-color-mode=light] .list-group-item-yellow-100{color:#666152;background-color:#fffdf5}html .list-group-item-yellow-100.list-group-item-action:hover,html .list-group-item-yellow-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}html .list-group-item-yellow-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}}@media print{html .list-group-item-yellow-200,html[data-netbox-color-mode=dark] .list-group-item-yellow-200,html[data-netbox-color-mode=light] .list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}html .list-group-item-yellow-200.list-group-item-action:hover,html .list-group-item-yellow-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}html .list-group-item-yellow-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}}@media print{html .list-group-item-yellow-300,html[data-netbox-color-mode=dark] .list-group-item-yellow-300,html[data-netbox-color-mode=light] .list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}html .list-group-item-yellow-300.list-group-item-action:hover,html .list-group-item-yellow-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html .list-group-item-yellow-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}}@media print{html .list-group-item-yellow-400,html[data-netbox-color-mode=dark] .list-group-item-yellow-400,html[data-netbox-color-mode=light] .list-group-item-yellow-400{color:#665217;background-color:#fff5d7}html .list-group-item-yellow-400.list-group-item-action:hover,html .list-group-item-yellow-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}html .list-group-item-yellow-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}}@media print{html .list-group-item-yellow-500,html[data-netbox-color-mode=dark] .list-group-item-yellow-500,html[data-netbox-color-mode=light] .list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}html .list-group-item-yellow-500.list-group-item-action:hover,html .list-group-item-yellow-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-yellow-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-yellow-600,html[data-netbox-color-mode=dark] .list-group-item-yellow-600,html[data-netbox-color-mode=light] .list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}html .list-group-item-yellow-600.list-group-item-action:hover,html .list-group-item-yellow-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}html .list-group-item-yellow-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}}@media print{html .list-group-item-yellow-700,html[data-netbox-color-mode=dark] .list-group-item-yellow-700,html[data-netbox-color-mode=light] .list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}html .list-group-item-yellow-700.list-group-item-action:hover,html .list-group-item-yellow-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}html .list-group-item-yellow-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}}@media print{html .list-group-item-yellow-800,html[data-netbox-color-mode=dark] .list-group-item-yellow-800,html[data-netbox-color-mode=light] .list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}html .list-group-item-yellow-800.list-group-item-action:hover,html .list-group-item-yellow-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}html .list-group-item-yellow-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}}@media print{html .list-group-item-yellow-900,html[data-netbox-color-mode=dark] .list-group-item-yellow-900,html[data-netbox-color-mode=light] .list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}html .list-group-item-yellow-900.list-group-item-action:hover,html .list-group-item-yellow-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}html .list-group-item-yellow-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}}@media print{html .list-group-item-green-100,html[data-netbox-color-mode=dark] .list-group-item-green-100,html[data-netbox-color-mode=light] .list-group-item-green-100{color:#545c58;background-color:#f6faf8}html .list-group-item-green-100.list-group-item-action:hover,html .list-group-item-green-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}html .list-group-item-green-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}}@media print{html .list-group-item-green-200,html[data-netbox-color-mode=dark] .list-group-item-green-200,html[data-netbox-color-mode=light] .list-group-item-green-200{color:#41534b;background-color:#edf5f1}html .list-group-item-green-200.list-group-item-action:hover,html .list-group-item-green-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}html .list-group-item-green-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}}@media print{html .list-group-item-green-300,html[data-netbox-color-mode=dark] .list-group-item-green-300,html[data-netbox-color-mode=light] .list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}html .list-group-item-green-300.list-group-item-action:hover,html .list-group-item-green-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html .list-group-item-green-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}}@media print{html .list-group-item-green-400,html[data-netbox-color-mode=dark] .list-group-item-green-400,html[data-netbox-color-mode=light] .list-group-item-green-400{color:#2b5f47;background-color:#daece4}html .list-group-item-green-400.list-group-item-action:hover,html .list-group-item-green-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}html .list-group-item-green-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}}@media print{html .list-group-item-green-500,html[data-netbox-color-mode=dark] .list-group-item-green-500,html[data-netbox-color-mode=light] .list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}html .list-group-item-green-500.list-group-item-action:hover,html .list-group-item-green-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-green-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-green-600,html[data-netbox-color-mode=dark] .list-group-item-green-600,html[data-netbox-color-mode=light] .list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}html .list-group-item-green-600.list-group-item-action:hover,html .list-group-item-green-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}html .list-group-item-green-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}}@media print{html .list-group-item-green-700,html[data-netbox-color-mode=dark] .list-group-item-green-700,html[data-netbox-color-mode=light] .list-group-item-green-700{color:#09311e;background-color:#cfdcd6}html .list-group-item-green-700.list-group-item-action:hover,html .list-group-item-green-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}html .list-group-item-green-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}}@media print{html .list-group-item-green-800,html[data-netbox-color-mode=dark] .list-group-item-green-800,html[data-netbox-color-mode=light] .list-group-item-green-800{color:#062014;background-color:#ced7d3}html .list-group-item-green-800.list-group-item-action:hover,html .list-group-item-green-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}html .list-group-item-green-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}}@media print{html .list-group-item-green-900,html[data-netbox-color-mode=dark] .list-group-item-green-900,html[data-netbox-color-mode=light] .list-group-item-green-900{color:#03100a;background-color:#cdd1cf}html .list-group-item-green-900.list-group-item-action:hover,html .list-group-item-green-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}html .list-group-item-green-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}}@media print{html .list-group-item-blue-100,html[data-netbox-color-mode=dark] .list-group-item-blue-100,html[data-netbox-color-mode=light] .list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}html .list-group-item-blue-100.list-group-item-action:hover,html .list-group-item-blue-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}html .list-group-item-blue-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}}@media print{html .list-group-item-blue-200,html[data-netbox-color-mode=dark] .list-group-item-blue-200,html[data-netbox-color-mode=light] .list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}html .list-group-item-blue-200.list-group-item-action:hover,html .list-group-item-blue-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}html .list-group-item-blue-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}}@media print{html .list-group-item-blue-300,html[data-netbox-color-mode=dark] .list-group-item-blue-300,html[data-netbox-color-mode=light] .list-group-item-blue-300{color:#426598;background-color:#e2eeff}html .list-group-item-blue-300.list-group-item-action:hover,html .list-group-item-blue-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html .list-group-item-blue-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}}@media print{html .list-group-item-blue-400,html[data-netbox-color-mode=dark] .list-group-item-blue-400,html[data-netbox-color-mode=light] .list-group-item-blue-400{color:#255398;background-color:#d8e8ff}html .list-group-item-blue-400.list-group-item-action:hover,html .list-group-item-blue-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}html .list-group-item-blue-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}}@media print{html .list-group-item-blue-500,html[data-netbox-color-mode=dark] .list-group-item-blue-500,html[data-netbox-color-mode=light] .list-group-item-blue-500{color:#084298;background-color:#cfe2ff}html .list-group-item-blue-500.list-group-item-action:hover,html .list-group-item-blue-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html .list-group-item-blue-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .list-group-item-blue-600,html[data-netbox-color-mode=dark] .list-group-item-blue-600,html[data-netbox-color-mode=light] .list-group-item-blue-600{color:#063579;background-color:#cedef4}html .list-group-item-blue-600.list-group-item-action:hover,html .list-group-item-blue-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}html .list-group-item-blue-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}}@media print{html .list-group-item-blue-700,html[data-netbox-color-mode=dark] .list-group-item-blue-700,html[data-netbox-color-mode=light] .list-group-item-blue-700{color:#05285b;background-color:#ced9ea}html .list-group-item-blue-700.list-group-item-action:hover,html .list-group-item-blue-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}html .list-group-item-blue-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}}@media print{html .list-group-item-blue-800,html[data-netbox-color-mode=dark] .list-group-item-blue-800,html[data-netbox-color-mode=light] .list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}html .list-group-item-blue-800.list-group-item-action:hover,html .list-group-item-blue-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}html .list-group-item-blue-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}}@media print{html .list-group-item-blue-900,html[data-netbox-color-mode=dark] .list-group-item-blue-900,html[data-netbox-color-mode=light] .list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}html .list-group-item-blue-900.list-group-item-action:hover,html .list-group-item-blue-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}html .list-group-item-blue-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}}@media print{html .list-group-item-cyan-100,html[data-netbox-color-mode=dark] .list-group-item-cyan-100,html[data-netbox-color-mode=light] .list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}html .list-group-item-cyan-100.list-group-item-action:hover,html .list-group-item-cyan-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}html .list-group-item-cyan-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}}@media print{html .list-group-item-cyan-200,html[data-netbox-color-mode=dark] .list-group-item-cyan-200,html[data-netbox-color-mode=light] .list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}html .list-group-item-cyan-200.list-group-item-action:hover,html .list-group-item-cyan-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}html .list-group-item-cyan-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}}@media print{html .list-group-item-cyan-300,html[data-netbox-color-mode=dark] .list-group-item-cyan-300,html[data-netbox-color-mode=light] .list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}html .list-group-item-cyan-300.list-group-item-action:hover,html .list-group-item-cyan-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html .list-group-item-cyan-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}}@media print{html .list-group-item-cyan-400,html[data-netbox-color-mode=dark] .list-group-item-cyan-400,html[data-netbox-color-mode=light] .list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}html .list-group-item-cyan-400.list-group-item-action:hover,html .list-group-item-cyan-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}html .list-group-item-cyan-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}}@media print{html .list-group-item-cyan-500,html[data-netbox-color-mode=dark] .list-group-item-cyan-500,html[data-netbox-color-mode=light] .list-group-item-cyan-500{color:#055160;background-color:#cff4fc}html .list-group-item-cyan-500.list-group-item-action:hover,html .list-group-item-cyan-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-cyan-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-cyan-600,html[data-netbox-color-mode=dark] .list-group-item-cyan-600,html[data-netbox-color-mode=light] .list-group-item-cyan-600{color:#066173;background-color:#ceecf2}html .list-group-item-cyan-600.list-group-item-action:hover,html .list-group-item-cyan-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}html .list-group-item-cyan-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}}@media print{html .list-group-item-cyan-700,html[data-netbox-color-mode=dark] .list-group-item-cyan-700,html[data-netbox-color-mode=light] .list-group-item-cyan-700{color:#054956;background-color:#cee4e9}html .list-group-item-cyan-700.list-group-item-action:hover,html .list-group-item-cyan-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}html .list-group-item-cyan-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}}@media print{html .list-group-item-cyan-800,html[data-netbox-color-mode=dark] .list-group-item-cyan-800,html[data-netbox-color-mode=light] .list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}html .list-group-item-cyan-800.list-group-item-action:hover,html .list-group-item-cyan-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}html .list-group-item-cyan-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}}@media print{html .list-group-item-cyan-900,html[data-netbox-color-mode=dark] .list-group-item-cyan-900,html[data-netbox-color-mode=light] .list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}html .list-group-item-cyan-900.list-group-item-action:hover,html .list-group-item-cyan-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}html .list-group-item-cyan-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}}@media print{html .list-group-item-indigo-100,html[data-netbox-color-mode=dark] .list-group-item-indigo-100,html[data-netbox-color-mode=light] .list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}html .list-group-item-indigo-100.list-group-item-action:hover,html .list-group-item-indigo-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}html .list-group-item-indigo-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}}@media print{html .list-group-item-indigo-200,html[data-netbox-color-mode=dark] .list-group-item-indigo-200,html[data-netbox-color-mode=light] .list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}html .list-group-item-indigo-200.list-group-item-action:hover,html .list-group-item-indigo-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}html .list-group-item-indigo-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}}@media print{html .list-group-item-indigo-300,html[data-netbox-color-mode=dark] .list-group-item-indigo-300,html[data-netbox-color-mode=light] .list-group-item-indigo-300{color:#624394;background-color:#ede2fd}html .list-group-item-indigo-300.list-group-item-action:hover,html .list-group-item-indigo-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html .list-group-item-indigo-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}}@media print{html .list-group-item-indigo-400,html[data-netbox-color-mode=dark] .list-group-item-indigo-400,html[data-netbox-color-mode=light] .list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}html .list-group-item-indigo-400.list-group-item-action:hover,html .list-group-item-indigo-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}html .list-group-item-indigo-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}}@media print{html .list-group-item-indigo-500,html[data-netbox-color-mode=dark] .list-group-item-indigo-500,html[data-netbox-color-mode=light] .list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}html .list-group-item-indigo-500.list-group-item-action:hover,html .list-group-item-indigo-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html .list-group-item-indigo-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .list-group-item-indigo-600,html[data-netbox-color-mode=dark] .list-group-item-indigo-600,html[data-netbox-color-mode=light] .list-group-item-indigo-600{color:#310874;background-color:#dccff3}html .list-group-item-indigo-600.list-group-item-action:hover,html .list-group-item-indigo-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}html .list-group-item-indigo-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}}@media print{html .list-group-item-indigo-700,html[data-netbox-color-mode=dark] .list-group-item-indigo-700,html[data-netbox-color-mode=light] .list-group-item-indigo-700{color:#250657;background-color:#d8cee9}html .list-group-item-indigo-700.list-group-item-action:hover,html .list-group-item-indigo-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}html .list-group-item-indigo-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}}@media print{html .list-group-item-indigo-800,html[data-netbox-color-mode=dark] .list-group-item-indigo-800,html[data-netbox-color-mode=light] .list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}html .list-group-item-indigo-800.list-group-item-action:hover,html .list-group-item-indigo-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}html .list-group-item-indigo-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}}@media print{html .list-group-item-indigo-900,html[data-netbox-color-mode=dark] .list-group-item-indigo-900,html[data-netbox-color-mode=light] .list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}html .list-group-item-indigo-900.list-group-item-action:hover,html .list-group-item-indigo-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}html .list-group-item-indigo-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}}@media print{html .list-group-item-purple-100,html[data-netbox-color-mode=dark] .list-group-item-purple-100,html[data-netbox-color-mode=light] .list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}html .list-group-item-purple-100.list-group-item-action:hover,html .list-group-item-purple-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}html .list-group-item-purple-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}}@media print{html .list-group-item-purple-200,html[data-netbox-color-mode=dark] .list-group-item-purple-200,html[data-netbox-color-mode=light] .list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}html .list-group-item-purple-200.list-group-item-action:hover,html .list-group-item-purple-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}html .list-group-item-purple-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}}@media print{html .list-group-item-purple-300,html[data-netbox-color-mode=dark] .list-group-item-purple-300,html[data-netbox-color-mode=light] .list-group-item-purple-300{color:#655583;background-color:#eee8f8}html .list-group-item-purple-300.list-group-item-action:hover,html .list-group-item-purple-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html .list-group-item-purple-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}}@media print{html .list-group-item-purple-400,html[data-netbox-color-mode=dark] .list-group-item-purple-400,html[data-netbox-color-mode=light] .list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}html .list-group-item-purple-400.list-group-item-action:hover,html .list-group-item-purple-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}html .list-group-item-purple-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}}@media print{html .list-group-item-purple-500,html[data-netbox-color-mode=dark] .list-group-item-purple-500,html[data-netbox-color-mode=light] .list-group-item-purple-500{color:#432874;background-color:#e2d9f3}html .list-group-item-purple-500.list-group-item-action:hover,html .list-group-item-purple-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html .list-group-item-purple-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .list-group-item-purple-600,html[data-netbox-color-mode=dark] .list-group-item-purple-600,html[data-netbox-color-mode=light] .list-group-item-purple-600{color:#35205c;background-color:#ded7eb}html .list-group-item-purple-600.list-group-item-action:hover,html .list-group-item-purple-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}html .list-group-item-purple-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}}@media print{html .list-group-item-purple-700,html[data-netbox-color-mode=dark] .list-group-item-purple-700,html[data-netbox-color-mode=light] .list-group-item-purple-700{color:#281846;background-color:#d9d4e3}html .list-group-item-purple-700.list-group-item-action:hover,html .list-group-item-purple-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}html .list-group-item-purple-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}}@media print{html .list-group-item-purple-800,html[data-netbox-color-mode=dark] .list-group-item-purple-800,html[data-netbox-color-mode=light] .list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}html .list-group-item-purple-800.list-group-item-action:hover,html .list-group-item-purple-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}html .list-group-item-purple-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}}@media print{html .list-group-item-purple-900,html[data-netbox-color-mode=dark] .list-group-item-purple-900,html[data-netbox-color-mode=light] .list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}html .list-group-item-purple-900.list-group-item-action:hover,html .list-group-item-purple-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}html .list-group-item-purple-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}}@media print{html .list-group-item-pink-100,html[data-netbox-color-mode=dark] .list-group-item-pink-100,html[data-netbox-color-mode=light] .list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}html .list-group-item-pink-100.list-group-item-action:hover,html .list-group-item-pink-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}html .list-group-item-pink-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}}@media print{html .list-group-item-pink-200,html[data-netbox-color-mode=dark] .list-group-item-pink-200,html[data-netbox-color-mode=light] .list-group-item-pink-200{color:#604552;background-color:#fceff5}html .list-group-item-pink-200.list-group-item-action:hover,html .list-group-item-pink-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}html .list-group-item-pink-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}}@media print{html .list-group-item-pink-300,html[data-netbox-color-mode=dark] .list-group-item-pink-300,html[data-netbox-color-mode=light] .list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}html .list-group-item-pink-300.list-group-item-action:hover,html .list-group-item-pink-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html .list-group-item-pink-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}}@media print{html .list-group-item-pink-400,html[data-netbox-color-mode=dark] .list-group-item-pink-400,html[data-netbox-color-mode=light] .list-group-item-pink-400{color:#85375e;background-color:#f8deeb}html .list-group-item-pink-400.list-group-item-action:hover,html .list-group-item-pink-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}html .list-group-item-pink-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}}@media print{html .list-group-item-pink-500,html[data-netbox-color-mode=dark] .list-group-item-pink-500,html[data-netbox-color-mode=light] .list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}html .list-group-item-pink-500.list-group-item-action:hover,html .list-group-item-pink-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html .list-group-item-pink-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .list-group-item-pink-600,html[data-netbox-color-mode=dark] .list-group-item-pink-600,html[data-netbox-color-mode=light] .list-group-item-pink-600{color:#671940;background-color:#eed4e1}html .list-group-item-pink-600.list-group-item-action:hover,html .list-group-item-pink-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}html .list-group-item-pink-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}}@media print{html .list-group-item-pink-700,html[data-netbox-color-mode=dark] .list-group-item-pink-700,html[data-netbox-color-mode=light] .list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}html .list-group-item-pink-700.list-group-item-action:hover,html .list-group-item-pink-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}html .list-group-item-pink-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}}@media print{html .list-group-item-pink-800,html[data-netbox-color-mode=dark] .list-group-item-pink-800,html[data-netbox-color-mode=light] .list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}html .list-group-item-pink-800.list-group-item-action:hover,html .list-group-item-pink-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}html .list-group-item-pink-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}}@media print{html .list-group-item-pink-900,html[data-netbox-color-mode=dark] .list-group-item-pink-900,html[data-netbox-color-mode=light] .list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}html .list-group-item-pink-900.list-group-item-action:hover,html .list-group-item-pink-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}html .list-group-item-pink-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}}@media print{html .btn-close,html[data-netbox-color-mode=dark] .btn-close,html[data-netbox-color-mode=light] .btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}html .btn-close:hover,html[data-netbox-color-mode=dark] .btn-close:hover,html[data-netbox-color-mode=light] .btn-close:hover{color:#000;text-decoration:none;opacity:.75}html .btn-close:focus,html[data-netbox-color-mode=dark] .btn-close:focus,html[data-netbox-color-mode=light] .btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}html .btn-close:disabled,html .btn-close.disabled,html[data-netbox-color-mode=dark] .btn-close:disabled,html[data-netbox-color-mode=dark] .btn-close.disabled,html[data-netbox-color-mode=light] .btn-close:disabled,html[data-netbox-color-mode=light] .btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}}@media print{html .btn-close-white,html[data-netbox-color-mode=dark] .btn-close-white,html[data-netbox-color-mode=light] .btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}}@media print{html .toast,html[data-netbox-color-mode=dark] .toast,html[data-netbox-color-mode=light] .toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}html .toast:not(.showing):not(.show),html[data-netbox-color-mode=dark] .toast:not(.showing):not(.show),html[data-netbox-color-mode=light] .toast:not(.showing):not(.show){opacity:0}html .toast.hide,html[data-netbox-color-mode=dark] .toast.hide,html[data-netbox-color-mode=light] .toast.hide{display:none}}@media print{html .toast-container,html[data-netbox-color-mode=dark] .toast-container,html[data-netbox-color-mode=light] .toast-container{width:max-content;max-width:100%;pointer-events:none}html .toast-container>:not(:last-child),html[data-netbox-color-mode=dark] .toast-container>:not(:last-child),html[data-netbox-color-mode=light] .toast-container>:not(:last-child){margin-bottom:.75rem}}@media print{html .toast-header,html[data-netbox-color-mode=dark] .toast-header,html[data-netbox-color-mode=light] .toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .toast-header .btn-close,html[data-netbox-color-mode=dark] .toast-header .btn-close,html[data-netbox-color-mode=light] .toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}}@media print{html .toast-body,html[data-netbox-color-mode=dark] .toast-body,html[data-netbox-color-mode=light] .toast-body{padding:.75rem;word-wrap:break-word}}@media print{html .modal,html[data-netbox-color-mode=dark] .modal,html[data-netbox-color-mode=light] .modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}}@media print{html .modal-dialog,html[data-netbox-color-mode=dark] .modal-dialog,html[data-netbox-color-mode=light] .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade html .modal-dialog,.modal.fade html[data-netbox-color-mode=dark] .modal-dialog,.modal.fade html[data-netbox-color-mode=light] .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}}@media print and (prefers-reduced-motion: reduce){.modal.fade html .modal-dialog,.modal.fade html[data-netbox-color-mode=dark] .modal-dialog,.modal.fade html[data-netbox-color-mode=light] .modal-dialog{transition:none}}@media print{.modal.show html .modal-dialog,.modal.show html[data-netbox-color-mode=dark] .modal-dialog,.modal.show html[data-netbox-color-mode=light] .modal-dialog{transform:none}}@media print{.modal.modal-static html .modal-dialog,.modal.modal-static html[data-netbox-color-mode=dark] .modal-dialog,.modal.modal-static html[data-netbox-color-mode=light] .modal-dialog{transform:scale(1.02)}}@media print{html .modal-dialog-scrollable,html[data-netbox-color-mode=dark] .modal-dialog-scrollable,html[data-netbox-color-mode=light] .modal-dialog-scrollable{height:calc(100% - 1rem)}html .modal-dialog-scrollable .modal-content,html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-content,html[data-netbox-color-mode=light] .modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}html .modal-dialog-scrollable .modal-body,html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-body,html[data-netbox-color-mode=light] .modal-dialog-scrollable .modal-body{overflow-y:auto}}@media print{html .modal-dialog-centered,html[data-netbox-color-mode=dark] .modal-dialog-centered,html[data-netbox-color-mode=light] .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}}@media print{html .modal-content,html[data-netbox-color-mode=dark] .modal-content,html[data-netbox-color-mode=light] .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem;outline:0}}@media print{html .modal-backdrop,html[data-netbox-color-mode=dark] .modal-backdrop,html[data-netbox-color-mode=light] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html .modal-backdrop.fade,html[data-netbox-color-mode=dark] .modal-backdrop.fade,html[data-netbox-color-mode=light] .modal-backdrop.fade{opacity:0}html .modal-backdrop.show,html[data-netbox-color-mode=dark] .modal-backdrop.show,html[data-netbox-color-mode=light] .modal-backdrop.show{opacity:.5}}@media print{html .modal-header,html[data-netbox-color-mode=dark] .modal-header,html[data-netbox-color-mode=light] .modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html .modal-header .btn-close,html[data-netbox-color-mode=dark] .modal-header .btn-close,html[data-netbox-color-mode=light] .modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}}@media print{html .modal-title,html[data-netbox-color-mode=dark] .modal-title,html[data-netbox-color-mode=light] .modal-title{margin-bottom:0;line-height:1.5}}@media print{html .modal-body,html[data-netbox-color-mode=dark] .modal-body,html[data-netbox-color-mode=light] .modal-body{position:relative;flex:1 1 auto;padding:1rem}}@media print{html .modal-footer,html[data-netbox-color-mode=dark] .modal-footer,html[data-netbox-color-mode=light] .modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}html .modal-footer>*,html[data-netbox-color-mode=dark] .modal-footer>*,html[data-netbox-color-mode=light] .modal-footer>*{margin:.25rem}}@media print and (min-width: 576px){html .modal-dialog,html[data-netbox-color-mode=dark] .modal-dialog,html[data-netbox-color-mode=light] .modal-dialog{max-width:500px;margin:1.75rem auto}html .modal-dialog-scrollable,html[data-netbox-color-mode=dark] .modal-dialog-scrollable,html[data-netbox-color-mode=light] .modal-dialog-scrollable{height:calc(100% - 3.5rem)}html .modal-dialog-centered,html[data-netbox-color-mode=dark] .modal-dialog-centered,html[data-netbox-color-mode=light] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html .modal-sm,html[data-netbox-color-mode=dark] .modal-sm,html[data-netbox-color-mode=light] .modal-sm{max-width:300px}}@media print and (min-width: 992px){html .modal-lg,html .modal-xl,html[data-netbox-color-mode=dark] .modal-lg,html[data-netbox-color-mode=dark] .modal-xl,html[data-netbox-color-mode=light] .modal-lg,html[data-netbox-color-mode=light] .modal-xl{max-width:800px}}@media print and (min-width: 1200px){html .modal-xl,html[data-netbox-color-mode=dark] .modal-xl,html[data-netbox-color-mode=light] .modal-xl{max-width:1140px}}@media print{html .modal-fullscreen,html[data-netbox-color-mode=dark] .modal-fullscreen,html[data-netbox-color-mode=light] .modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen .modal-header{border-radius:0}html .modal-fullscreen .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen .modal-body{overflow-y:auto}html .modal-fullscreen .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen .modal-footer{border-radius:0}}@media print and (max-width: 575.98px){html .modal-fullscreen-sm-down,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-sm-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-sm-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-header{border-radius:0}html .modal-fullscreen-sm-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-body{overflow-y:auto}html .modal-fullscreen-sm-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media print and (max-width: 767.98px){html .modal-fullscreen-md-down,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down,html[data-netbox-color-mode=light] .modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-md-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-md-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-header{border-radius:0}html .modal-fullscreen-md-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-body{overflow-y:auto}html .modal-fullscreen-md-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-footer{border-radius:0}}@media print and (max-width: 991.98px){html .modal-fullscreen-lg-down,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-lg-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-lg-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-header{border-radius:0}html .modal-fullscreen-lg-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-body{overflow-y:auto}html .modal-fullscreen-lg-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media print and (max-width: 1199.98px){html .modal-fullscreen-xl-down,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-xl-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-xl-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-header{border-radius:0}html .modal-fullscreen-xl-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-body{overflow-y:auto}html .modal-fullscreen-xl-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media print and (max-width: 1399.98px){html .modal-fullscreen-xxl-down,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-xxl-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-xxl-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-header{border-radius:0}html .modal-fullscreen-xxl-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-body{overflow-y:auto}html .modal-fullscreen-xxl-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-footer{border-radius:0}}@media print{html .tooltip,html[data-netbox-color-mode=dark] .tooltip,html[data-netbox-color-mode=light] .tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html .tooltip.show,html[data-netbox-color-mode=dark] .tooltip.show,html[data-netbox-color-mode=light] .tooltip.show{opacity:.9}html .tooltip .tooltip-arrow,html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow,html[data-netbox-color-mode=light] .tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}html .tooltip .tooltip-arrow:before,html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow:before,html[data-netbox-color-mode=light] .tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}}@media print{html .bs-tooltip-top,html .bs-tooltip-auto[data-popper-placement^=top],html[data-netbox-color-mode=dark] .bs-tooltip-top,html[data-netbox-color-mode=light] .bs-tooltip-top{padding:.4rem 0}html .bs-tooltip-top .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-top .tooltip-arrow{bottom:0}html .bs-tooltip-top .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}}@media print{html .bs-tooltip-end,html .bs-tooltip-auto[data-popper-placement^=right],html[data-netbox-color-mode=dark] .bs-tooltip-end,html[data-netbox-color-mode=light] .bs-tooltip-end{padding:0 .4rem}html .bs-tooltip-end .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}html .bs-tooltip-end .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}}@media print{html .bs-tooltip-bottom,html .bs-tooltip-auto[data-popper-placement^=bottom],html[data-netbox-color-mode=dark] .bs-tooltip-bottom,html[data-netbox-color-mode=light] .bs-tooltip-bottom{padding:.4rem 0}html .bs-tooltip-bottom .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-bottom .tooltip-arrow{top:0}html .bs-tooltip-bottom .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}}@media print{html .bs-tooltip-start,html .bs-tooltip-auto[data-popper-placement^=left],html[data-netbox-color-mode=dark] .bs-tooltip-start,html[data-netbox-color-mode=light] .bs-tooltip-start{padding:0 .4rem}html .bs-tooltip-start .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}html .bs-tooltip-start .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}}@media print{html .tooltip-inner,html[data-netbox-color-mode=dark] .tooltip-inner,html[data-netbox-color-mode=light] .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.375rem}}@media print{html .popover,html[data-netbox-color-mode=dark] .popover,html[data-netbox-color-mode=light] .popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem}html .popover .popover-arrow,html[data-netbox-color-mode=dark] .popover .popover-arrow,html[data-netbox-color-mode=light] .popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}html .popover .popover-arrow:before,html .popover .popover-arrow:after,html[data-netbox-color-mode=dark] .popover .popover-arrow:before,html[data-netbox-color-mode=dark] .popover .popover-arrow:after,html[data-netbox-color-mode=light] .popover .popover-arrow:before,html[data-netbox-color-mode=light] .popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}}@media print{html .bs-popover-top>.popover-arrow,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}html .bs-popover-top>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00000040}html .bs-popover-top>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}}@media print{html .bs-popover-end>.popover-arrow,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}html .bs-popover-end>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00000040}html .bs-popover-end>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}}@media print{html .bs-popover-bottom>.popover-arrow,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}html .bs-popover-bottom>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00000040}html .bs-popover-bottom>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}html .bs-popover-bottom .popover-header:before,html .bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,html[data-netbox-color-mode=dark] .bs-popover-bottom .popover-header:before,html[data-netbox-color-mode=light] .bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}}@media print{html .bs-popover-start>.popover-arrow,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}html .bs-popover-start>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00000040}html .bs-popover-start>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}}@media print{html .popover-header,html[data-netbox-color-mode=dark] .popover-header,html[data-netbox-color-mode=light] .popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html .popover-header:empty,html[data-netbox-color-mode=dark] .popover-header:empty,html[data-netbox-color-mode=light] .popover-header:empty{display:none}}@media print{html .popover-body,html[data-netbox-color-mode=dark] .popover-body,html[data-netbox-color-mode=light] .popover-body{padding:1rem;color:#212529}}@media print{html .carousel,html[data-netbox-color-mode=dark] .carousel,html[data-netbox-color-mode=light] .carousel{position:relative}}@media print{html .carousel.pointer-event,html[data-netbox-color-mode=dark] .carousel.pointer-event,html[data-netbox-color-mode=light] .carousel.pointer-event{touch-action:pan-y}}@media print{html .carousel-inner,html[data-netbox-color-mode=dark] .carousel-inner,html[data-netbox-color-mode=light] .carousel-inner{position:relative;width:100%;overflow:hidden}html .carousel-inner:after,html[data-netbox-color-mode=dark] .carousel-inner:after,html[data-netbox-color-mode=light] .carousel-inner:after{display:block;clear:both;content:""}}@media print{html .carousel-item,html[data-netbox-color-mode=dark] .carousel-item,html[data-netbox-color-mode=light] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .carousel-item,html[data-netbox-color-mode=dark] .carousel-item,html[data-netbox-color-mode=light] .carousel-item{transition:none}}@media print{html .carousel-item.active,html .carousel-item-next,html .carousel-item-prev,html[data-netbox-color-mode=dark] .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-item-next,html[data-netbox-color-mode=dark] .carousel-item-prev,html[data-netbox-color-mode=light] .carousel-item.active,html[data-netbox-color-mode=light] .carousel-item-next,html[data-netbox-color-mode=light] .carousel-item-prev{display:block}}@media print{html .carousel-item-next:not(.carousel-item-start),html .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=dark] .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=light] .active.carousel-item-end{transform:translate(100%)}}@media print{html .carousel-item-prev:not(.carousel-item-end),html .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=dark] .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=light] .active.carousel-item-start{transform:translate(-100%)}}@media print{html .carousel-fade .carousel-item,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item,html[data-netbox-color-mode=light] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html .carousel-fade .carousel-item.active,html .carousel-fade .carousel-item-next.carousel-item-start,html .carousel-fade .carousel-item-prev.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-prev.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=light] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}html .carousel-fade .active.carousel-item-start,html .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}}@media print and (prefers-reduced-motion: reduce){html .carousel-fade .active.carousel-item-start,html .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-end{transition:none}}@media print{html .carousel-control-prev,html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}}@media print and (prefers-reduced-motion: reduce){html .carousel-control-prev,html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-next{transition:none}}@media print{html .carousel-control-prev:hover,html .carousel-control-prev:focus,html .carousel-control-next:hover,html .carousel-control-next:focus,html[data-netbox-color-mode=dark] .carousel-control-prev:hover,html[data-netbox-color-mode=dark] .carousel-control-prev:focus,html[data-netbox-color-mode=dark] .carousel-control-next:hover,html[data-netbox-color-mode=dark] .carousel-control-next:focus,html[data-netbox-color-mode=light] .carousel-control-prev:hover,html[data-netbox-color-mode=light] .carousel-control-prev:focus,html[data-netbox-color-mode=light] .carousel-control-next:hover,html[data-netbox-color-mode=light] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}}@media print{html .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-prev{left:0}}@media print{html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-next{right:0}}@media print{html .carousel-control-prev-icon,html .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}}@media print{html .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}}@media print{html .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}}@media print{html .carousel-indicators,html[data-netbox-color-mode=dark] .carousel-indicators,html[data-netbox-color-mode=light] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}html .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}}@media print and (prefers-reduced-motion: reduce){html .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-indicators [data-bs-target]{transition:none}}@media print{html .carousel-indicators .active,html[data-netbox-color-mode=dark] .carousel-indicators .active,html[data-netbox-color-mode=light] .carousel-indicators .active{opacity:1}}@media print{html .carousel-caption,html[data-netbox-color-mode=dark] .carousel-caption,html[data-netbox-color-mode=light] .carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}}@media print{html .carousel-dark .carousel-control-prev-icon,html .carousel-dark .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}html .carousel-dark .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-dark .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}html .carousel-dark .carousel-caption,html[data-netbox-color-mode=dark] .carousel-dark .carousel-caption,html[data-netbox-color-mode=light] .carousel-dark .carousel-caption{color:#000}}@media print{@keyframes spinner-border{to{transform:rotate(360deg)}}}@media print{html .spinner-border,html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=light] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}}@media print{html .spinner-border-sm,html[data-netbox-color-mode=dark] .spinner-border-sm,html[data-netbox-color-mode=light] .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}}@media print{@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}}@media print{html .spinner-grow,html[data-netbox-color-mode=dark] .spinner-grow,html[data-netbox-color-mode=light] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}}@media print{html .spinner-grow-sm,html[data-netbox-color-mode=dark] .spinner-grow-sm,html[data-netbox-color-mode=light] .spinner-grow-sm{width:1rem;height:1rem}}@media print and (prefers-reduced-motion: reduce){html .spinner-border,html .spinner-grow,html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=dark] .spinner-grow,html[data-netbox-color-mode=light] .spinner-border,html[data-netbox-color-mode=light] .spinner-grow{animation-duration:1.5s}}@media print{html .clearfix:after,html[data-netbox-color-mode=dark] .clearfix:after,html[data-netbox-color-mode=light] .clearfix:after{display:block;clear:both;content:""}}@media print{html .link-primary,html[data-netbox-color-mode=dark] .link-primary,html[data-netbox-color-mode=light] .link-primary{color:#337ab7}html .link-primary:hover,html .link-primary:focus,html[data-netbox-color-mode=dark] .link-primary:hover,html[data-netbox-color-mode=dark] .link-primary:focus,html[data-netbox-color-mode=light] .link-primary:hover,html[data-netbox-color-mode=light] .link-primary:focus{color:#296292}}@media print{html .link-secondary,html[data-netbox-color-mode=dark] .link-secondary,html[data-netbox-color-mode=light] .link-secondary{color:#6c757d}html .link-secondary:hover,html .link-secondary:focus,html[data-netbox-color-mode=dark] .link-secondary:hover,html[data-netbox-color-mode=dark] .link-secondary:focus,html[data-netbox-color-mode=light] .link-secondary:hover,html[data-netbox-color-mode=light] .link-secondary:focus{color:#565e64}}@media print{html .link-success,html[data-netbox-color-mode=dark] .link-success,html[data-netbox-color-mode=light] .link-success{color:#198754}html .link-success:hover,html .link-success:focus,html[data-netbox-color-mode=dark] .link-success:hover,html[data-netbox-color-mode=dark] .link-success:focus,html[data-netbox-color-mode=light] .link-success:hover,html[data-netbox-color-mode=light] .link-success:focus{color:#146c43}}@media print{html .link-info,html[data-netbox-color-mode=dark] .link-info,html[data-netbox-color-mode=light] .link-info{color:#0dcaf0}html .link-info:hover,html .link-info:focus,html[data-netbox-color-mode=dark] .link-info:hover,html[data-netbox-color-mode=dark] .link-info:focus,html[data-netbox-color-mode=light] .link-info:hover,html[data-netbox-color-mode=light] .link-info:focus{color:#3dd5f3}}@media print{html .link-warning,html[data-netbox-color-mode=dark] .link-warning,html[data-netbox-color-mode=light] .link-warning{color:#ffc107}html .link-warning:hover,html .link-warning:focus,html[data-netbox-color-mode=dark] .link-warning:hover,html[data-netbox-color-mode=dark] .link-warning:focus,html[data-netbox-color-mode=light] .link-warning:hover,html[data-netbox-color-mode=light] .link-warning:focus{color:#ffcd39}}@media print{html .link-danger,html[data-netbox-color-mode=dark] .link-danger,html[data-netbox-color-mode=light] .link-danger{color:#dc3545}html .link-danger:hover,html .link-danger:focus,html[data-netbox-color-mode=dark] .link-danger:hover,html[data-netbox-color-mode=dark] .link-danger:focus,html[data-netbox-color-mode=light] .link-danger:hover,html[data-netbox-color-mode=light] .link-danger:focus{color:#b02a37}}@media print{html .link-light,html[data-netbox-color-mode=dark] .link-light,html[data-netbox-color-mode=light] .link-light{color:#f8f9fa}html .link-light:hover,html .link-light:focus,html[data-netbox-color-mode=dark] .link-light:hover,html[data-netbox-color-mode=dark] .link-light:focus,html[data-netbox-color-mode=light] .link-light:hover,html[data-netbox-color-mode=light] .link-light:focus{color:#f9fafb}}@media print{html .link-dark,html[data-netbox-color-mode=dark] .link-dark,html[data-netbox-color-mode=light] .link-dark{color:#212529}html .link-dark:hover,html .link-dark:focus,html[data-netbox-color-mode=dark] .link-dark:hover,html[data-netbox-color-mode=dark] .link-dark:focus,html[data-netbox-color-mode=light] .link-dark:hover,html[data-netbox-color-mode=light] .link-dark:focus{color:#1a1e21}}@media print{html .link-red,html[data-netbox-color-mode=dark] .link-red,html[data-netbox-color-mode=light] .link-red{color:#dc3545}html .link-red:hover,html .link-red:focus,html[data-netbox-color-mode=dark] .link-red:hover,html[data-netbox-color-mode=dark] .link-red:focus,html[data-netbox-color-mode=light] .link-red:hover,html[data-netbox-color-mode=light] .link-red:focus{color:#b02a37}}@media print{html .link-yellow,html[data-netbox-color-mode=dark] .link-yellow,html[data-netbox-color-mode=light] .link-yellow{color:#ffc107}html .link-yellow:hover,html .link-yellow:focus,html[data-netbox-color-mode=dark] .link-yellow:hover,html[data-netbox-color-mode=dark] .link-yellow:focus,html[data-netbox-color-mode=light] .link-yellow:hover,html[data-netbox-color-mode=light] .link-yellow:focus{color:#ffcd39}}@media print{html .link-green,html[data-netbox-color-mode=dark] .link-green,html[data-netbox-color-mode=light] .link-green{color:#198754}html .link-green:hover,html .link-green:focus,html[data-netbox-color-mode=dark] .link-green:hover,html[data-netbox-color-mode=dark] .link-green:focus,html[data-netbox-color-mode=light] .link-green:hover,html[data-netbox-color-mode=light] .link-green:focus{color:#146c43}}@media print{html .link-blue,html[data-netbox-color-mode=dark] .link-blue,html[data-netbox-color-mode=light] .link-blue{color:#0d6efd}html .link-blue:hover,html .link-blue:focus,html[data-netbox-color-mode=dark] .link-blue:hover,html[data-netbox-color-mode=dark] .link-blue:focus,html[data-netbox-color-mode=light] .link-blue:hover,html[data-netbox-color-mode=light] .link-blue:focus{color:#0a58ca}}@media print{html .link-cyan,html[data-netbox-color-mode=dark] .link-cyan,html[data-netbox-color-mode=light] .link-cyan{color:#0dcaf0}html .link-cyan:hover,html .link-cyan:focus,html[data-netbox-color-mode=dark] .link-cyan:hover,html[data-netbox-color-mode=dark] .link-cyan:focus,html[data-netbox-color-mode=light] .link-cyan:hover,html[data-netbox-color-mode=light] .link-cyan:focus{color:#3dd5f3}}@media print{html .link-indigo,html[data-netbox-color-mode=dark] .link-indigo,html[data-netbox-color-mode=light] .link-indigo{color:#6610f2}html .link-indigo:hover,html .link-indigo:focus,html[data-netbox-color-mode=dark] .link-indigo:hover,html[data-netbox-color-mode=dark] .link-indigo:focus,html[data-netbox-color-mode=light] .link-indigo:hover,html[data-netbox-color-mode=light] .link-indigo:focus{color:#520dc2}}@media print{html .link-purple,html[data-netbox-color-mode=dark] .link-purple,html[data-netbox-color-mode=light] .link-purple{color:#6f42c1}html .link-purple:hover,html .link-purple:focus,html[data-netbox-color-mode=dark] .link-purple:hover,html[data-netbox-color-mode=dark] .link-purple:focus,html[data-netbox-color-mode=light] .link-purple:hover,html[data-netbox-color-mode=light] .link-purple:focus{color:#59359a}}@media print{html .link-pink,html[data-netbox-color-mode=dark] .link-pink,html[data-netbox-color-mode=light] .link-pink{color:#d63384}html .link-pink:hover,html .link-pink:focus,html[data-netbox-color-mode=dark] .link-pink:hover,html[data-netbox-color-mode=dark] .link-pink:focus,html[data-netbox-color-mode=light] .link-pink:hover,html[data-netbox-color-mode=light] .link-pink:focus{color:#ab296a}}@media print{html .link-darker,html[data-netbox-color-mode=dark] .link-darker,html[data-netbox-color-mode=light] .link-darker{color:#1b1f22}html .link-darker:hover,html .link-darker:focus,html[data-netbox-color-mode=dark] .link-darker:hover,html[data-netbox-color-mode=dark] .link-darker:focus,html[data-netbox-color-mode=light] .link-darker:hover,html[data-netbox-color-mode=light] .link-darker:focus{color:#16191b}}@media print{html .link-darkest,html[data-netbox-color-mode=dark] .link-darkest,html[data-netbox-color-mode=light] .link-darkest{color:#171b1d}html .link-darkest:hover,html .link-darkest:focus,html[data-netbox-color-mode=dark] .link-darkest:hover,html[data-netbox-color-mode=dark] .link-darkest:focus,html[data-netbox-color-mode=light] .link-darkest:hover,html[data-netbox-color-mode=light] .link-darkest:focus{color:#121617}}@media print{html .link-gray,html[data-netbox-color-mode=dark] .link-gray,html[data-netbox-color-mode=light] .link-gray{color:#ced4da}html .link-gray:hover,html .link-gray:focus,html[data-netbox-color-mode=dark] .link-gray:hover,html[data-netbox-color-mode=dark] .link-gray:focus,html[data-netbox-color-mode=light] .link-gray:hover,html[data-netbox-color-mode=light] .link-gray:focus{color:#d8dde1}}@media print{html .link-gray-100,html[data-netbox-color-mode=dark] .link-gray-100,html[data-netbox-color-mode=light] .link-gray-100{color:#f8f9fa}html .link-gray-100:hover,html .link-gray-100:focus,html[data-netbox-color-mode=dark] .link-gray-100:hover,html[data-netbox-color-mode=dark] .link-gray-100:focus,html[data-netbox-color-mode=light] .link-gray-100:hover,html[data-netbox-color-mode=light] .link-gray-100:focus{color:#f9fafb}}@media print{html .link-gray-200,html[data-netbox-color-mode=dark] .link-gray-200,html[data-netbox-color-mode=light] .link-gray-200{color:#e9ecef}html .link-gray-200:hover,html .link-gray-200:focus,html[data-netbox-color-mode=dark] .link-gray-200:hover,html[data-netbox-color-mode=dark] .link-gray-200:focus,html[data-netbox-color-mode=light] .link-gray-200:hover,html[data-netbox-color-mode=light] .link-gray-200:focus{color:#edf0f2}}@media print{html .link-gray-300,html[data-netbox-color-mode=dark] .link-gray-300,html[data-netbox-color-mode=light] .link-gray-300{color:#dee2e6}html .link-gray-300:hover,html .link-gray-300:focus,html[data-netbox-color-mode=dark] .link-gray-300:hover,html[data-netbox-color-mode=dark] .link-gray-300:focus,html[data-netbox-color-mode=light] .link-gray-300:hover,html[data-netbox-color-mode=light] .link-gray-300:focus{color:#e5e8eb}}@media print{html .link-gray-400,html[data-netbox-color-mode=dark] .link-gray-400,html[data-netbox-color-mode=light] .link-gray-400{color:#ced4da}html .link-gray-400:hover,html .link-gray-400:focus,html[data-netbox-color-mode=dark] .link-gray-400:hover,html[data-netbox-color-mode=dark] .link-gray-400:focus,html[data-netbox-color-mode=light] .link-gray-400:hover,html[data-netbox-color-mode=light] .link-gray-400:focus{color:#d8dde1}}@media print{html .link-gray-500,html[data-netbox-color-mode=dark] .link-gray-500,html[data-netbox-color-mode=light] .link-gray-500{color:#adb5bd}html .link-gray-500:hover,html .link-gray-500:focus,html[data-netbox-color-mode=dark] .link-gray-500:hover,html[data-netbox-color-mode=dark] .link-gray-500:focus,html[data-netbox-color-mode=light] .link-gray-500:hover,html[data-netbox-color-mode=light] .link-gray-500:focus{color:#bdc4ca}}@media print{html .link-gray-600,html[data-netbox-color-mode=dark] .link-gray-600,html[data-netbox-color-mode=light] .link-gray-600{color:#6c757d}html .link-gray-600:hover,html .link-gray-600:focus,html[data-netbox-color-mode=dark] .link-gray-600:hover,html[data-netbox-color-mode=dark] .link-gray-600:focus,html[data-netbox-color-mode=light] .link-gray-600:hover,html[data-netbox-color-mode=light] .link-gray-600:focus{color:#565e64}}@media print{html .link-gray-700,html[data-netbox-color-mode=dark] .link-gray-700,html[data-netbox-color-mode=light] .link-gray-700{color:#495057}html .link-gray-700:hover,html .link-gray-700:focus,html[data-netbox-color-mode=dark] .link-gray-700:hover,html[data-netbox-color-mode=dark] .link-gray-700:focus,html[data-netbox-color-mode=light] .link-gray-700:hover,html[data-netbox-color-mode=light] .link-gray-700:focus{color:#3a4046}}@media print{html .link-gray-800,html[data-netbox-color-mode=dark] .link-gray-800,html[data-netbox-color-mode=light] .link-gray-800{color:#343a40}html .link-gray-800:hover,html .link-gray-800:focus,html[data-netbox-color-mode=dark] .link-gray-800:hover,html[data-netbox-color-mode=dark] .link-gray-800:focus,html[data-netbox-color-mode=light] .link-gray-800:hover,html[data-netbox-color-mode=light] .link-gray-800:focus{color:#2a2e33}}@media print{html .link-gray-900,html[data-netbox-color-mode=dark] .link-gray-900,html[data-netbox-color-mode=light] .link-gray-900{color:#212529}html .link-gray-900:hover,html .link-gray-900:focus,html[data-netbox-color-mode=dark] .link-gray-900:hover,html[data-netbox-color-mode=dark] .link-gray-900:focus,html[data-netbox-color-mode=light] .link-gray-900:hover,html[data-netbox-color-mode=light] .link-gray-900:focus{color:#1a1e21}}@media print{html .link-red-100,html[data-netbox-color-mode=dark] .link-red-100,html[data-netbox-color-mode=light] .link-red-100{color:#f8d7da}html .link-red-100:hover,html .link-red-100:focus,html[data-netbox-color-mode=dark] .link-red-100:hover,html[data-netbox-color-mode=dark] .link-red-100:focus,html[data-netbox-color-mode=light] .link-red-100:hover,html[data-netbox-color-mode=light] .link-red-100:focus{color:#f9dfe1}}@media print{html .link-red-200,html[data-netbox-color-mode=dark] .link-red-200,html[data-netbox-color-mode=light] .link-red-200{color:#f1aeb5}html .link-red-200:hover,html .link-red-200:focus,html[data-netbox-color-mode=dark] .link-red-200:hover,html[data-netbox-color-mode=dark] .link-red-200:focus,html[data-netbox-color-mode=light] .link-red-200:hover,html[data-netbox-color-mode=light] .link-red-200:focus{color:#f4bec4}}@media print{html .link-red-300,html[data-netbox-color-mode=dark] .link-red-300,html[data-netbox-color-mode=light] .link-red-300{color:#ea868f}html .link-red-300:hover,html .link-red-300:focus,html[data-netbox-color-mode=dark] .link-red-300:hover,html[data-netbox-color-mode=dark] .link-red-300:focus,html[data-netbox-color-mode=light] .link-red-300:hover,html[data-netbox-color-mode=light] .link-red-300:focus{color:#ee9ea5}}@media print{html .link-red-400,html[data-netbox-color-mode=dark] .link-red-400,html[data-netbox-color-mode=light] .link-red-400{color:#e35d6a}html .link-red-400:hover,html .link-red-400:focus,html[data-netbox-color-mode=dark] .link-red-400:hover,html[data-netbox-color-mode=dark] .link-red-400:focus,html[data-netbox-color-mode=light] .link-red-400:hover,html[data-netbox-color-mode=light] .link-red-400:focus{color:#e97d88}}@media print{html .link-red-500,html[data-netbox-color-mode=dark] .link-red-500,html[data-netbox-color-mode=light] .link-red-500{color:#dc3545}html .link-red-500:hover,html .link-red-500:focus,html[data-netbox-color-mode=dark] .link-red-500:hover,html[data-netbox-color-mode=dark] .link-red-500:focus,html[data-netbox-color-mode=light] .link-red-500:hover,html[data-netbox-color-mode=light] .link-red-500:focus{color:#b02a37}}@media print{html .link-red-600,html[data-netbox-color-mode=dark] .link-red-600,html[data-netbox-color-mode=light] .link-red-600{color:#b02a37}html .link-red-600:hover,html .link-red-600:focus,html[data-netbox-color-mode=dark] .link-red-600:hover,html[data-netbox-color-mode=dark] .link-red-600:focus,html[data-netbox-color-mode=light] .link-red-600:hover,html[data-netbox-color-mode=light] .link-red-600:focus{color:#8d222c}}@media print{html .link-red-700,html[data-netbox-color-mode=dark] .link-red-700,html[data-netbox-color-mode=light] .link-red-700{color:#842029}html .link-red-700:hover,html .link-red-700:focus,html[data-netbox-color-mode=dark] .link-red-700:hover,html[data-netbox-color-mode=dark] .link-red-700:focus,html[data-netbox-color-mode=light] .link-red-700:hover,html[data-netbox-color-mode=light] .link-red-700:focus{color:#6a1a21}}@media print{html .link-red-800,html[data-netbox-color-mode=dark] .link-red-800,html[data-netbox-color-mode=light] .link-red-800{color:#58151c}html .link-red-800:hover,html .link-red-800:focus,html[data-netbox-color-mode=dark] .link-red-800:hover,html[data-netbox-color-mode=dark] .link-red-800:focus,html[data-netbox-color-mode=light] .link-red-800:hover,html[data-netbox-color-mode=light] .link-red-800:focus{color:#461116}}@media print{html .link-red-900,html[data-netbox-color-mode=dark] .link-red-900,html[data-netbox-color-mode=light] .link-red-900{color:#2c0b0e}html .link-red-900:hover,html .link-red-900:focus,html[data-netbox-color-mode=dark] .link-red-900:hover,html[data-netbox-color-mode=dark] .link-red-900:focus,html[data-netbox-color-mode=light] .link-red-900:hover,html[data-netbox-color-mode=light] .link-red-900:focus{color:#23090b}}@media print{html .link-yellow-100,html[data-netbox-color-mode=dark] .link-yellow-100,html[data-netbox-color-mode=light] .link-yellow-100{color:#fff3cd}html .link-yellow-100:hover,html .link-yellow-100:focus,html[data-netbox-color-mode=dark] .link-yellow-100:hover,html[data-netbox-color-mode=dark] .link-yellow-100:focus,html[data-netbox-color-mode=light] .link-yellow-100:hover,html[data-netbox-color-mode=light] .link-yellow-100:focus{color:#fff5d7}}@media print{html .link-yellow-200,html[data-netbox-color-mode=dark] .link-yellow-200,html[data-netbox-color-mode=light] .link-yellow-200{color:#ffe69c}html .link-yellow-200:hover,html .link-yellow-200:focus,html[data-netbox-color-mode=dark] .link-yellow-200:hover,html[data-netbox-color-mode=dark] .link-yellow-200:focus,html[data-netbox-color-mode=light] .link-yellow-200:hover,html[data-netbox-color-mode=light] .link-yellow-200:focus{color:#ffebb0}}@media print{html .link-yellow-300,html[data-netbox-color-mode=dark] .link-yellow-300,html[data-netbox-color-mode=light] .link-yellow-300{color:#ffda6a}html .link-yellow-300:hover,html .link-yellow-300:focus,html[data-netbox-color-mode=dark] .link-yellow-300:hover,html[data-netbox-color-mode=dark] .link-yellow-300:focus,html[data-netbox-color-mode=light] .link-yellow-300:hover,html[data-netbox-color-mode=light] .link-yellow-300:focus{color:#ffe188}}@media print{html .link-yellow-400,html[data-netbox-color-mode=dark] .link-yellow-400,html[data-netbox-color-mode=light] .link-yellow-400{color:#ffcd39}html .link-yellow-400:hover,html .link-yellow-400:focus,html[data-netbox-color-mode=dark] .link-yellow-400:hover,html[data-netbox-color-mode=dark] .link-yellow-400:focus,html[data-netbox-color-mode=light] .link-yellow-400:hover,html[data-netbox-color-mode=light] .link-yellow-400:focus{color:#ffd761}}@media print{html .link-yellow-500,html[data-netbox-color-mode=dark] .link-yellow-500,html[data-netbox-color-mode=light] .link-yellow-500{color:#ffc107}html .link-yellow-500:hover,html .link-yellow-500:focus,html[data-netbox-color-mode=dark] .link-yellow-500:hover,html[data-netbox-color-mode=dark] .link-yellow-500:focus,html[data-netbox-color-mode=light] .link-yellow-500:hover,html[data-netbox-color-mode=light] .link-yellow-500:focus{color:#ffcd39}}@media print{html .link-yellow-600,html[data-netbox-color-mode=dark] .link-yellow-600,html[data-netbox-color-mode=light] .link-yellow-600{color:#cc9a06}html .link-yellow-600:hover,html .link-yellow-600:focus,html[data-netbox-color-mode=dark] .link-yellow-600:hover,html[data-netbox-color-mode=dark] .link-yellow-600:focus,html[data-netbox-color-mode=light] .link-yellow-600:hover,html[data-netbox-color-mode=light] .link-yellow-600:focus{color:#d6ae38}}@media print{html .link-yellow-700,html[data-netbox-color-mode=dark] .link-yellow-700,html[data-netbox-color-mode=light] .link-yellow-700{color:#997404}html .link-yellow-700:hover,html .link-yellow-700:focus,html[data-netbox-color-mode=dark] .link-yellow-700:hover,html[data-netbox-color-mode=dark] .link-yellow-700:focus,html[data-netbox-color-mode=light] .link-yellow-700:hover,html[data-netbox-color-mode=light] .link-yellow-700:focus{color:#ad9036}}@media print{html .link-yellow-800,html[data-netbox-color-mode=dark] .link-yellow-800,html[data-netbox-color-mode=light] .link-yellow-800{color:#664d03}html .link-yellow-800:hover,html .link-yellow-800:focus,html[data-netbox-color-mode=dark] .link-yellow-800:hover,html[data-netbox-color-mode=dark] .link-yellow-800:focus,html[data-netbox-color-mode=light] .link-yellow-800:hover,html[data-netbox-color-mode=light] .link-yellow-800:focus{color:#523e02}}@media print{html .link-yellow-900,html[data-netbox-color-mode=dark] .link-yellow-900,html[data-netbox-color-mode=light] .link-yellow-900{color:#332701}html .link-yellow-900:hover,html .link-yellow-900:focus,html[data-netbox-color-mode=dark] .link-yellow-900:hover,html[data-netbox-color-mode=dark] .link-yellow-900:focus,html[data-netbox-color-mode=light] .link-yellow-900:hover,html[data-netbox-color-mode=light] .link-yellow-900:focus{color:#291f01}}@media print{html .link-green-100,html[data-netbox-color-mode=dark] .link-green-100,html[data-netbox-color-mode=light] .link-green-100{color:#d1e7dd}html .link-green-100:hover,html .link-green-100:focus,html[data-netbox-color-mode=dark] .link-green-100:hover,html[data-netbox-color-mode=dark] .link-green-100:focus,html[data-netbox-color-mode=light] .link-green-100:hover,html[data-netbox-color-mode=light] .link-green-100:focus{color:#daece4}}@media print{html .link-green-200,html[data-netbox-color-mode=dark] .link-green-200,html[data-netbox-color-mode=light] .link-green-200{color:#a3cfbb}html .link-green-200:hover,html .link-green-200:focus,html[data-netbox-color-mode=dark] .link-green-200:hover,html[data-netbox-color-mode=dark] .link-green-200:focus,html[data-netbox-color-mode=light] .link-green-200:hover,html[data-netbox-color-mode=light] .link-green-200:focus{color:#b5d9c9}}@media print{html .link-green-300,html[data-netbox-color-mode=dark] .link-green-300,html[data-netbox-color-mode=light] .link-green-300{color:#75b798}html .link-green-300:hover,html .link-green-300:focus,html[data-netbox-color-mode=dark] .link-green-300:hover,html[data-netbox-color-mode=dark] .link-green-300:focus,html[data-netbox-color-mode=light] .link-green-300:hover,html[data-netbox-color-mode=light] .link-green-300:focus{color:#91c5ad}}@media print{html .link-green-400,html[data-netbox-color-mode=dark] .link-green-400,html[data-netbox-color-mode=light] .link-green-400{color:#479f76}html .link-green-400:hover,html .link-green-400:focus,html[data-netbox-color-mode=dark] .link-green-400:hover,html[data-netbox-color-mode=dark] .link-green-400:focus,html[data-netbox-color-mode=light] .link-green-400:hover,html[data-netbox-color-mode=light] .link-green-400:focus{color:#6cb291}}@media print{html .link-green-500,html[data-netbox-color-mode=dark] .link-green-500,html[data-netbox-color-mode=light] .link-green-500{color:#198754}html .link-green-500:hover,html .link-green-500:focus,html[data-netbox-color-mode=dark] .link-green-500:hover,html[data-netbox-color-mode=dark] .link-green-500:focus,html[data-netbox-color-mode=light] .link-green-500:hover,html[data-netbox-color-mode=light] .link-green-500:focus{color:#146c43}}@media print{html .link-green-600,html[data-netbox-color-mode=dark] .link-green-600,html[data-netbox-color-mode=light] .link-green-600{color:#146c43}html .link-green-600:hover,html .link-green-600:focus,html[data-netbox-color-mode=dark] .link-green-600:hover,html[data-netbox-color-mode=dark] .link-green-600:focus,html[data-netbox-color-mode=light] .link-green-600:hover,html[data-netbox-color-mode=light] .link-green-600:focus{color:#105636}}@media print{html .link-green-700,html[data-netbox-color-mode=dark] .link-green-700,html[data-netbox-color-mode=light] .link-green-700{color:#0f5132}html .link-green-700:hover,html .link-green-700:focus,html[data-netbox-color-mode=dark] .link-green-700:hover,html[data-netbox-color-mode=dark] .link-green-700:focus,html[data-netbox-color-mode=light] .link-green-700:hover,html[data-netbox-color-mode=light] .link-green-700:focus{color:#0c4128}}@media print{html .link-green-800,html[data-netbox-color-mode=dark] .link-green-800,html[data-netbox-color-mode=light] .link-green-800{color:#0a3622}html .link-green-800:hover,html .link-green-800:focus,html[data-netbox-color-mode=dark] .link-green-800:hover,html[data-netbox-color-mode=dark] .link-green-800:focus,html[data-netbox-color-mode=light] .link-green-800:hover,html[data-netbox-color-mode=light] .link-green-800:focus{color:#082b1b}}@media print{html .link-green-900,html[data-netbox-color-mode=dark] .link-green-900,html[data-netbox-color-mode=light] .link-green-900{color:#051b11}html .link-green-900:hover,html .link-green-900:focus,html[data-netbox-color-mode=dark] .link-green-900:hover,html[data-netbox-color-mode=dark] .link-green-900:focus,html[data-netbox-color-mode=light] .link-green-900:hover,html[data-netbox-color-mode=light] .link-green-900:focus{color:#04160e}}@media print{html .link-blue-100,html[data-netbox-color-mode=dark] .link-blue-100,html[data-netbox-color-mode=light] .link-blue-100{color:#cfe2ff}html .link-blue-100:hover,html .link-blue-100:focus,html[data-netbox-color-mode=dark] .link-blue-100:hover,html[data-netbox-color-mode=dark] .link-blue-100:focus,html[data-netbox-color-mode=light] .link-blue-100:hover,html[data-netbox-color-mode=light] .link-blue-100:focus{color:#d9e8ff}}@media print{html .link-blue-200,html[data-netbox-color-mode=dark] .link-blue-200,html[data-netbox-color-mode=light] .link-blue-200{color:#9ec5fe}html .link-blue-200:hover,html .link-blue-200:focus,html[data-netbox-color-mode=dark] .link-blue-200:hover,html[data-netbox-color-mode=dark] .link-blue-200:focus,html[data-netbox-color-mode=light] .link-blue-200:hover,html[data-netbox-color-mode=light] .link-blue-200:focus{color:#b1d1fe}}@media print{html .link-blue-300,html[data-netbox-color-mode=dark] .link-blue-300,html[data-netbox-color-mode=light] .link-blue-300{color:#6ea8fe}html .link-blue-300:hover,html .link-blue-300:focus,html[data-netbox-color-mode=dark] .link-blue-300:hover,html[data-netbox-color-mode=dark] .link-blue-300:focus,html[data-netbox-color-mode=light] .link-blue-300:hover,html[data-netbox-color-mode=light] .link-blue-300:focus{color:#8bb9fe}}@media print{html .link-blue-400,html[data-netbox-color-mode=dark] .link-blue-400,html[data-netbox-color-mode=light] .link-blue-400{color:#3d8bfd}html .link-blue-400:hover,html .link-blue-400:focus,html[data-netbox-color-mode=dark] .link-blue-400:hover,html[data-netbox-color-mode=dark] .link-blue-400:focus,html[data-netbox-color-mode=light] .link-blue-400:hover,html[data-netbox-color-mode=light] .link-blue-400:focus{color:#64a2fd}}@media print{html .link-blue-500,html[data-netbox-color-mode=dark] .link-blue-500,html[data-netbox-color-mode=light] .link-blue-500{color:#0d6efd}html .link-blue-500:hover,html .link-blue-500:focus,html[data-netbox-color-mode=dark] .link-blue-500:hover,html[data-netbox-color-mode=dark] .link-blue-500:focus,html[data-netbox-color-mode=light] .link-blue-500:hover,html[data-netbox-color-mode=light] .link-blue-500:focus{color:#0a58ca}}@media print{html .link-blue-600,html[data-netbox-color-mode=dark] .link-blue-600,html[data-netbox-color-mode=light] .link-blue-600{color:#0a58ca}html .link-blue-600:hover,html .link-blue-600:focus,html[data-netbox-color-mode=dark] .link-blue-600:hover,html[data-netbox-color-mode=dark] .link-blue-600:focus,html[data-netbox-color-mode=light] .link-blue-600:hover,html[data-netbox-color-mode=light] .link-blue-600:focus{color:#0846a2}}@media print{html .link-blue-700,html[data-netbox-color-mode=dark] .link-blue-700,html[data-netbox-color-mode=light] .link-blue-700{color:#084298}html .link-blue-700:hover,html .link-blue-700:focus,html[data-netbox-color-mode=dark] .link-blue-700:hover,html[data-netbox-color-mode=dark] .link-blue-700:focus,html[data-netbox-color-mode=light] .link-blue-700:hover,html[data-netbox-color-mode=light] .link-blue-700:focus{color:#06357a}}@media print{html .link-blue-800,html[data-netbox-color-mode=dark] .link-blue-800,html[data-netbox-color-mode=light] .link-blue-800{color:#052c65}html .link-blue-800:hover,html .link-blue-800:focus,html[data-netbox-color-mode=dark] .link-blue-800:hover,html[data-netbox-color-mode=dark] .link-blue-800:focus,html[data-netbox-color-mode=light] .link-blue-800:hover,html[data-netbox-color-mode=light] .link-blue-800:focus{color:#042351}}@media print{html .link-blue-900,html[data-netbox-color-mode=dark] .link-blue-900,html[data-netbox-color-mode=light] .link-blue-900{color:#031633}html .link-blue-900:hover,html .link-blue-900:focus,html[data-netbox-color-mode=dark] .link-blue-900:hover,html[data-netbox-color-mode=dark] .link-blue-900:focus,html[data-netbox-color-mode=light] .link-blue-900:hover,html[data-netbox-color-mode=light] .link-blue-900:focus{color:#021229}}@media print{html .link-cyan-100,html[data-netbox-color-mode=dark] .link-cyan-100,html[data-netbox-color-mode=light] .link-cyan-100{color:#cff4fc}html .link-cyan-100:hover,html .link-cyan-100:focus,html[data-netbox-color-mode=dark] .link-cyan-100:hover,html[data-netbox-color-mode=dark] .link-cyan-100:focus,html[data-netbox-color-mode=light] .link-cyan-100:hover,html[data-netbox-color-mode=light] .link-cyan-100:focus{color:#d9f6fd}}@media print{html .link-cyan-200,html[data-netbox-color-mode=dark] .link-cyan-200,html[data-netbox-color-mode=light] .link-cyan-200{color:#9eeaf9}html .link-cyan-200:hover,html .link-cyan-200:focus,html[data-netbox-color-mode=dark] .link-cyan-200:hover,html[data-netbox-color-mode=dark] .link-cyan-200:focus,html[data-netbox-color-mode=light] .link-cyan-200:hover,html[data-netbox-color-mode=light] .link-cyan-200:focus{color:#b1eefa}}@media print{html .link-cyan-300,html[data-netbox-color-mode=dark] .link-cyan-300,html[data-netbox-color-mode=light] .link-cyan-300{color:#6edff6}html .link-cyan-300:hover,html .link-cyan-300:focus,html[data-netbox-color-mode=dark] .link-cyan-300:hover,html[data-netbox-color-mode=dark] .link-cyan-300:focus,html[data-netbox-color-mode=light] .link-cyan-300:hover,html[data-netbox-color-mode=light] .link-cyan-300:focus{color:#8be5f8}}@media print{html .link-cyan-400,html[data-netbox-color-mode=dark] .link-cyan-400,html[data-netbox-color-mode=light] .link-cyan-400{color:#3dd5f3}html .link-cyan-400:hover,html .link-cyan-400:focus,html[data-netbox-color-mode=dark] .link-cyan-400:hover,html[data-netbox-color-mode=dark] .link-cyan-400:focus,html[data-netbox-color-mode=light] .link-cyan-400:hover,html[data-netbox-color-mode=light] .link-cyan-400:focus{color:#64ddf5}}@media print{html .link-cyan-500,html[data-netbox-color-mode=dark] .link-cyan-500,html[data-netbox-color-mode=light] .link-cyan-500{color:#0dcaf0}html .link-cyan-500:hover,html .link-cyan-500:focus,html[data-netbox-color-mode=dark] .link-cyan-500:hover,html[data-netbox-color-mode=dark] .link-cyan-500:focus,html[data-netbox-color-mode=light] .link-cyan-500:hover,html[data-netbox-color-mode=light] .link-cyan-500:focus{color:#3dd5f3}}@media print{html .link-cyan-600,html[data-netbox-color-mode=dark] .link-cyan-600,html[data-netbox-color-mode=light] .link-cyan-600{color:#0aa2c0}html .link-cyan-600:hover,html .link-cyan-600:focus,html[data-netbox-color-mode=dark] .link-cyan-600:hover,html[data-netbox-color-mode=dark] .link-cyan-600:focus,html[data-netbox-color-mode=light] .link-cyan-600:hover,html[data-netbox-color-mode=light] .link-cyan-600:focus{color:#3bb5cd}}@media print{html .link-cyan-700,html[data-netbox-color-mode=dark] .link-cyan-700,html[data-netbox-color-mode=light] .link-cyan-700{color:#087990}html .link-cyan-700:hover,html .link-cyan-700:focus,html[data-netbox-color-mode=dark] .link-cyan-700:hover,html[data-netbox-color-mode=dark] .link-cyan-700:focus,html[data-netbox-color-mode=light] .link-cyan-700:hover,html[data-netbox-color-mode=light] .link-cyan-700:focus{color:#066173}}@media print{html .link-cyan-800,html[data-netbox-color-mode=dark] .link-cyan-800,html[data-netbox-color-mode=light] .link-cyan-800{color:#055160}html .link-cyan-800:hover,html .link-cyan-800:focus,html[data-netbox-color-mode=dark] .link-cyan-800:hover,html[data-netbox-color-mode=dark] .link-cyan-800:focus,html[data-netbox-color-mode=light] .link-cyan-800:hover,html[data-netbox-color-mode=light] .link-cyan-800:focus{color:#04414d}}@media print{html .link-cyan-900,html[data-netbox-color-mode=dark] .link-cyan-900,html[data-netbox-color-mode=light] .link-cyan-900{color:#032830}html .link-cyan-900:hover,html .link-cyan-900:focus,html[data-netbox-color-mode=dark] .link-cyan-900:hover,html[data-netbox-color-mode=dark] .link-cyan-900:focus,html[data-netbox-color-mode=light] .link-cyan-900:hover,html[data-netbox-color-mode=light] .link-cyan-900:focus{color:#022026}}@media print{html .link-indigo-100,html[data-netbox-color-mode=dark] .link-indigo-100,html[data-netbox-color-mode=light] .link-indigo-100{color:#e0cffc}html .link-indigo-100:hover,html .link-indigo-100:focus,html[data-netbox-color-mode=dark] .link-indigo-100:hover,html[data-netbox-color-mode=dark] .link-indigo-100:focus,html[data-netbox-color-mode=light] .link-indigo-100:hover,html[data-netbox-color-mode=light] .link-indigo-100:focus{color:#e6d9fd}}@media print{html .link-indigo-200,html[data-netbox-color-mode=dark] .link-indigo-200,html[data-netbox-color-mode=light] .link-indigo-200{color:#c29ffa}html .link-indigo-200:hover,html .link-indigo-200:focus,html[data-netbox-color-mode=dark] .link-indigo-200:hover,html[data-netbox-color-mode=dark] .link-indigo-200:focus,html[data-netbox-color-mode=light] .link-indigo-200:hover,html[data-netbox-color-mode=light] .link-indigo-200:focus{color:#ceb2fb}}@media print{html .link-indigo-300,html[data-netbox-color-mode=dark] .link-indigo-300,html[data-netbox-color-mode=light] .link-indigo-300{color:#a370f7}html .link-indigo-300:hover,html .link-indigo-300:focus,html[data-netbox-color-mode=dark] .link-indigo-300:hover,html[data-netbox-color-mode=dark] .link-indigo-300:focus,html[data-netbox-color-mode=light] .link-indigo-300:hover,html[data-netbox-color-mode=light] .link-indigo-300:focus{color:#b58df9}}@media print{html .link-indigo-400,html[data-netbox-color-mode=dark] .link-indigo-400,html[data-netbox-color-mode=light] .link-indigo-400{color:#8540f5}html .link-indigo-400:hover,html .link-indigo-400:focus,html[data-netbox-color-mode=dark] .link-indigo-400:hover,html[data-netbox-color-mode=dark] .link-indigo-400:focus,html[data-netbox-color-mode=light] .link-indigo-400:hover,html[data-netbox-color-mode=light] .link-indigo-400:focus{color:#6a33c4}}@media print{html .link-indigo-500,html[data-netbox-color-mode=dark] .link-indigo-500,html[data-netbox-color-mode=light] .link-indigo-500{color:#6610f2}html .link-indigo-500:hover,html .link-indigo-500:focus,html[data-netbox-color-mode=dark] .link-indigo-500:hover,html[data-netbox-color-mode=dark] .link-indigo-500:focus,html[data-netbox-color-mode=light] .link-indigo-500:hover,html[data-netbox-color-mode=light] .link-indigo-500:focus{color:#520dc2}}@media print{html .link-indigo-600,html[data-netbox-color-mode=dark] .link-indigo-600,html[data-netbox-color-mode=light] .link-indigo-600{color:#520dc2}html .link-indigo-600:hover,html .link-indigo-600:focus,html[data-netbox-color-mode=dark] .link-indigo-600:hover,html[data-netbox-color-mode=dark] .link-indigo-600:focus,html[data-netbox-color-mode=light] .link-indigo-600:hover,html[data-netbox-color-mode=light] .link-indigo-600:focus{color:#420a9b}}@media print{html .link-indigo-700,html[data-netbox-color-mode=dark] .link-indigo-700,html[data-netbox-color-mode=light] .link-indigo-700{color:#3d0a91}html .link-indigo-700:hover,html .link-indigo-700:focus,html[data-netbox-color-mode=dark] .link-indigo-700:hover,html[data-netbox-color-mode=dark] .link-indigo-700:focus,html[data-netbox-color-mode=light] .link-indigo-700:hover,html[data-netbox-color-mode=light] .link-indigo-700:focus{color:#310874}}@media print{html .link-indigo-800,html[data-netbox-color-mode=dark] .link-indigo-800,html[data-netbox-color-mode=light] .link-indigo-800{color:#290661}html .link-indigo-800:hover,html .link-indigo-800:focus,html[data-netbox-color-mode=dark] .link-indigo-800:hover,html[data-netbox-color-mode=dark] .link-indigo-800:focus,html[data-netbox-color-mode=light] .link-indigo-800:hover,html[data-netbox-color-mode=light] .link-indigo-800:focus{color:#21054e}}@media print{html .link-indigo-900,html[data-netbox-color-mode=dark] .link-indigo-900,html[data-netbox-color-mode=light] .link-indigo-900{color:#140330}html .link-indigo-900:hover,html .link-indigo-900:focus,html[data-netbox-color-mode=dark] .link-indigo-900:hover,html[data-netbox-color-mode=dark] .link-indigo-900:focus,html[data-netbox-color-mode=light] .link-indigo-900:hover,html[data-netbox-color-mode=light] .link-indigo-900:focus{color:#100226}}@media print{html .link-purple-100,html[data-netbox-color-mode=dark] .link-purple-100,html[data-netbox-color-mode=light] .link-purple-100{color:#e2d9f3}html .link-purple-100:hover,html .link-purple-100:focus,html[data-netbox-color-mode=dark] .link-purple-100:hover,html[data-netbox-color-mode=dark] .link-purple-100:focus,html[data-netbox-color-mode=light] .link-purple-100:hover,html[data-netbox-color-mode=light] .link-purple-100:focus{color:#e8e1f5}}@media print{html .link-purple-200,html[data-netbox-color-mode=dark] .link-purple-200,html[data-netbox-color-mode=light] .link-purple-200{color:#c5b3e6}html .link-purple-200:hover,html .link-purple-200:focus,html[data-netbox-color-mode=dark] .link-purple-200:hover,html[data-netbox-color-mode=dark] .link-purple-200:focus,html[data-netbox-color-mode=light] .link-purple-200:hover,html[data-netbox-color-mode=light] .link-purple-200:focus{color:#d1c2eb}}@media print{html .link-purple-300,html[data-netbox-color-mode=dark] .link-purple-300,html[data-netbox-color-mode=light] .link-purple-300{color:#a98eda}html .link-purple-300:hover,html .link-purple-300:focus,html[data-netbox-color-mode=dark] .link-purple-300:hover,html[data-netbox-color-mode=dark] .link-purple-300:focus,html[data-netbox-color-mode=light] .link-purple-300:hover,html[data-netbox-color-mode=light] .link-purple-300:focus{color:#baa5e1}}@media print{html .link-purple-400,html[data-netbox-color-mode=dark] .link-purple-400,html[data-netbox-color-mode=light] .link-purple-400{color:#8c68cd}html .link-purple-400:hover,html .link-purple-400:focus,html[data-netbox-color-mode=dark] .link-purple-400:hover,html[data-netbox-color-mode=dark] .link-purple-400:focus,html[data-netbox-color-mode=light] .link-purple-400:hover,html[data-netbox-color-mode=light] .link-purple-400:focus{color:#a386d7}}@media print{html .link-purple-500,html[data-netbox-color-mode=dark] .link-purple-500,html[data-netbox-color-mode=light] .link-purple-500{color:#6f42c1}html .link-purple-500:hover,html .link-purple-500:focus,html[data-netbox-color-mode=dark] .link-purple-500:hover,html[data-netbox-color-mode=dark] .link-purple-500:focus,html[data-netbox-color-mode=light] .link-purple-500:hover,html[data-netbox-color-mode=light] .link-purple-500:focus{color:#59359a}}@media print{html .link-purple-600,html[data-netbox-color-mode=dark] .link-purple-600,html[data-netbox-color-mode=light] .link-purple-600{color:#59359a}html .link-purple-600:hover,html .link-purple-600:focus,html[data-netbox-color-mode=dark] .link-purple-600:hover,html[data-netbox-color-mode=dark] .link-purple-600:focus,html[data-netbox-color-mode=light] .link-purple-600:hover,html[data-netbox-color-mode=light] .link-purple-600:focus{color:#472a7b}}@media print{html .link-purple-700,html[data-netbox-color-mode=dark] .link-purple-700,html[data-netbox-color-mode=light] .link-purple-700{color:#432874}html .link-purple-700:hover,html .link-purple-700:focus,html[data-netbox-color-mode=dark] .link-purple-700:hover,html[data-netbox-color-mode=dark] .link-purple-700:focus,html[data-netbox-color-mode=light] .link-purple-700:hover,html[data-netbox-color-mode=light] .link-purple-700:focus{color:#36205d}}@media print{html .link-purple-800,html[data-netbox-color-mode=dark] .link-purple-800,html[data-netbox-color-mode=light] .link-purple-800{color:#2c1a4d}html .link-purple-800:hover,html .link-purple-800:focus,html[data-netbox-color-mode=dark] .link-purple-800:hover,html[data-netbox-color-mode=dark] .link-purple-800:focus,html[data-netbox-color-mode=light] .link-purple-800:hover,html[data-netbox-color-mode=light] .link-purple-800:focus{color:#23153e}}@media print{html .link-purple-900,html[data-netbox-color-mode=dark] .link-purple-900,html[data-netbox-color-mode=light] .link-purple-900{color:#160d27}html .link-purple-900:hover,html .link-purple-900:focus,html[data-netbox-color-mode=dark] .link-purple-900:hover,html[data-netbox-color-mode=dark] .link-purple-900:focus,html[data-netbox-color-mode=light] .link-purple-900:hover,html[data-netbox-color-mode=light] .link-purple-900:focus{color:#120a1f}}@media print{html .link-pink-100,html[data-netbox-color-mode=dark] .link-pink-100,html[data-netbox-color-mode=light] .link-pink-100{color:#f7d6e6}html .link-pink-100:hover,html .link-pink-100:focus,html[data-netbox-color-mode=dark] .link-pink-100:hover,html[data-netbox-color-mode=dark] .link-pink-100:focus,html[data-netbox-color-mode=light] .link-pink-100:hover,html[data-netbox-color-mode=light] .link-pink-100:focus{color:#f9deeb}}@media print{html .link-pink-200,html[data-netbox-color-mode=dark] .link-pink-200,html[data-netbox-color-mode=light] .link-pink-200{color:#efadce}html .link-pink-200:hover,html .link-pink-200:focus,html[data-netbox-color-mode=dark] .link-pink-200:hover,html[data-netbox-color-mode=dark] .link-pink-200:focus,html[data-netbox-color-mode=light] .link-pink-200:hover,html[data-netbox-color-mode=light] .link-pink-200:focus{color:#f2bdd8}}@media print{html .link-pink-300,html[data-netbox-color-mode=dark] .link-pink-300,html[data-netbox-color-mode=light] .link-pink-300{color:#e685b5}html .link-pink-300:hover,html .link-pink-300:focus,html[data-netbox-color-mode=dark] .link-pink-300:hover,html[data-netbox-color-mode=dark] .link-pink-300:focus,html[data-netbox-color-mode=light] .link-pink-300:hover,html[data-netbox-color-mode=light] .link-pink-300:focus{color:#eb9dc4}}@media print{html .link-pink-400,html[data-netbox-color-mode=dark] .link-pink-400,html[data-netbox-color-mode=light] .link-pink-400{color:#de5c9d}html .link-pink-400:hover,html .link-pink-400:focus,html[data-netbox-color-mode=dark] .link-pink-400:hover,html[data-netbox-color-mode=dark] .link-pink-400:focus,html[data-netbox-color-mode=light] .link-pink-400:hover,html[data-netbox-color-mode=light] .link-pink-400:focus{color:#e57db1}}@media print{html .link-pink-500,html[data-netbox-color-mode=dark] .link-pink-500,html[data-netbox-color-mode=light] .link-pink-500{color:#d63384}html .link-pink-500:hover,html .link-pink-500:focus,html[data-netbox-color-mode=dark] .link-pink-500:hover,html[data-netbox-color-mode=dark] .link-pink-500:focus,html[data-netbox-color-mode=light] .link-pink-500:hover,html[data-netbox-color-mode=light] .link-pink-500:focus{color:#ab296a}}@media print{html .link-pink-600,html[data-netbox-color-mode=dark] .link-pink-600,html[data-netbox-color-mode=light] .link-pink-600{color:#ab296a}html .link-pink-600:hover,html .link-pink-600:focus,html[data-netbox-color-mode=dark] .link-pink-600:hover,html[data-netbox-color-mode=dark] .link-pink-600:focus,html[data-netbox-color-mode=light] .link-pink-600:hover,html[data-netbox-color-mode=light] .link-pink-600:focus{color:#892155}}@media print{html .link-pink-700,html[data-netbox-color-mode=dark] .link-pink-700,html[data-netbox-color-mode=light] .link-pink-700{color:#801f4f}html .link-pink-700:hover,html .link-pink-700:focus,html[data-netbox-color-mode=dark] .link-pink-700:hover,html[data-netbox-color-mode=dark] .link-pink-700:focus,html[data-netbox-color-mode=light] .link-pink-700:hover,html[data-netbox-color-mode=light] .link-pink-700:focus{color:#66193f}}@media print{html .link-pink-800,html[data-netbox-color-mode=dark] .link-pink-800,html[data-netbox-color-mode=light] .link-pink-800{color:#561435}html .link-pink-800:hover,html .link-pink-800:focus,html[data-netbox-color-mode=dark] .link-pink-800:hover,html[data-netbox-color-mode=dark] .link-pink-800:focus,html[data-netbox-color-mode=light] .link-pink-800:hover,html[data-netbox-color-mode=light] .link-pink-800:focus{color:#45102a}}@media print{html .link-pink-900,html[data-netbox-color-mode=dark] .link-pink-900,html[data-netbox-color-mode=light] .link-pink-900{color:#2b0a1a}html .link-pink-900:hover,html .link-pink-900:focus,html[data-netbox-color-mode=dark] .link-pink-900:hover,html[data-netbox-color-mode=dark] .link-pink-900:focus,html[data-netbox-color-mode=light] .link-pink-900:hover,html[data-netbox-color-mode=light] .link-pink-900:focus{color:#220815}}@media print{html .ratio,html[data-netbox-color-mode=dark] .ratio,html[data-netbox-color-mode=light] .ratio{position:relative;width:100%}html .ratio:before,html[data-netbox-color-mode=dark] .ratio:before,html[data-netbox-color-mode=light] .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}html .ratio>*,html[data-netbox-color-mode=dark] .ratio>*,html[data-netbox-color-mode=light] .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}}@media print{html .ratio-1x1,html[data-netbox-color-mode=dark] .ratio-1x1,html[data-netbox-color-mode=light] .ratio-1x1{--bs-aspect-ratio: 100%}}@media print{html .ratio-4x3,html[data-netbox-color-mode=dark] .ratio-4x3,html[data-netbox-color-mode=light] .ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}}@media print{html .ratio-16x9,html[data-netbox-color-mode=dark] .ratio-16x9,html[data-netbox-color-mode=light] .ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}}@media print{html .ratio-21x9,html[data-netbox-color-mode=dark] .ratio-21x9,html[data-netbox-color-mode=light] .ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}}@media print{html .fixed-top,html[data-netbox-color-mode=dark] .fixed-top,html[data-netbox-color-mode=light] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}}@media print{html .fixed-bottom,html[data-netbox-color-mode=dark] .fixed-bottom,html[data-netbox-color-mode=light] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}}@media print{html .sticky-top,html[data-netbox-color-mode=dark] .sticky-top,html[data-netbox-color-mode=light] .sticky-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 576px){html .sticky-sm-top,html[data-netbox-color-mode=dark] .sticky-sm-top,html[data-netbox-color-mode=light] .sticky-sm-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 768px){html .sticky-md-top,html[data-netbox-color-mode=dark] .sticky-md-top,html[data-netbox-color-mode=light] .sticky-md-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 992px){html .sticky-lg-top,html[data-netbox-color-mode=dark] .sticky-lg-top,html[data-netbox-color-mode=light] .sticky-lg-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 1200px){html .sticky-xl-top,html[data-netbox-color-mode=dark] .sticky-xl-top,html[data-netbox-color-mode=light] .sticky-xl-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 1400px){html .sticky-xxl-top,html[data-netbox-color-mode=dark] .sticky-xxl-top,html[data-netbox-color-mode=light] .sticky-xxl-top{position:sticky;top:0;z-index:1020}}@media print{html .visually-hidden,html .visually-hidden-focusable:not(:focus):not(:focus-within),html[data-netbox-color-mode=dark] .visually-hidden,html[data-netbox-color-mode=dark] .visually-hidden-focusable:not(:focus):not(:focus-within),html[data-netbox-color-mode=light] .visually-hidden,html[data-netbox-color-mode=light] .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}}@media print{html .stretched-link:after,html[data-netbox-color-mode=dark] .stretched-link:after,html[data-netbox-color-mode=light] .stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}}@media print{html .text-truncate,html[data-netbox-color-mode=dark] .text-truncate,html[data-netbox-color-mode=light] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}@media print{html .align-baseline,html[data-netbox-color-mode=dark] .align-baseline,html[data-netbox-color-mode=light] .align-baseline{vertical-align:baseline!important}}@media print{html .align-top,html[data-netbox-color-mode=dark] .align-top,html[data-netbox-color-mode=light] .align-top{vertical-align:top!important}}@media print{html .align-middle,html[data-netbox-color-mode=dark] .align-middle,html[data-netbox-color-mode=light] .align-middle{vertical-align:middle!important}}@media print{html .align-bottom,html[data-netbox-color-mode=dark] .align-bottom,html[data-netbox-color-mode=light] .align-bottom{vertical-align:bottom!important}}@media print{html .align-text-bottom,html[data-netbox-color-mode=dark] .align-text-bottom,html[data-netbox-color-mode=light] .align-text-bottom{vertical-align:text-bottom!important}}@media print{html .align-text-top,html[data-netbox-color-mode=dark] .align-text-top,html[data-netbox-color-mode=light] .align-text-top{vertical-align:text-top!important}}@media print{html .float-start,html[data-netbox-color-mode=dark] .float-start,html[data-netbox-color-mode=light] .float-start{float:left!important}}@media print{html .float-end,html[data-netbox-color-mode=dark] .float-end,html[data-netbox-color-mode=light] .float-end{float:right!important}}@media print{html .float-none,html[data-netbox-color-mode=dark] .float-none,html[data-netbox-color-mode=light] .float-none{float:none!important}}@media print{html .overflow-auto,html[data-netbox-color-mode=dark] .overflow-auto,html[data-netbox-color-mode=light] .overflow-auto{overflow:auto!important}}@media print{html .overflow-hidden,html[data-netbox-color-mode=dark] .overflow-hidden,html[data-netbox-color-mode=light] .overflow-hidden{overflow:hidden!important}}@media print{html .overflow-visible,html[data-netbox-color-mode=dark] .overflow-visible,html[data-netbox-color-mode=light] .overflow-visible{overflow:visible!important}}@media print{html .overflow-scroll,html[data-netbox-color-mode=dark] .overflow-scroll,html[data-netbox-color-mode=light] .overflow-scroll{overflow:scroll!important}}@media print{html .d-inline,html[data-netbox-color-mode=dark] .d-inline,html[data-netbox-color-mode=light] .d-inline{display:inline!important}}@media print{html .d-inline-block,html[data-netbox-color-mode=dark] .d-inline-block,html[data-netbox-color-mode=light] .d-inline-block{display:inline-block!important}}@media print{html .d-block,html[data-netbox-color-mode=dark] .d-block,html[data-netbox-color-mode=light] .d-block{display:block!important}}@media print{html .d-grid,html[data-netbox-color-mode=dark] .d-grid,html[data-netbox-color-mode=light] .d-grid{display:grid!important}}@media print{html .d-table,html[data-netbox-color-mode=dark] .d-table,html[data-netbox-color-mode=light] .d-table{display:table!important}}@media print{html .d-table-row,html[data-netbox-color-mode=dark] .d-table-row,html[data-netbox-color-mode=light] .d-table-row{display:table-row!important}}@media print{html .d-table-cell,html[data-netbox-color-mode=dark] .d-table-cell,html[data-netbox-color-mode=light] .d-table-cell{display:table-cell!important}}@media print{html .d-flex,html[data-netbox-color-mode=dark] .d-flex,html[data-netbox-color-mode=light] .d-flex{display:flex!important}}@media print{html .d-inline-flex,html[data-netbox-color-mode=dark] .d-inline-flex,html[data-netbox-color-mode=light] .d-inline-flex{display:inline-flex!important}}@media print{html .d-none,html[data-netbox-color-mode=dark] .d-none,html[data-netbox-color-mode=light] .d-none{display:none!important}}@media print{html .shadow,html[data-netbox-color-mode=dark] .shadow,html[data-netbox-color-mode=light] .shadow{box-shadow:0 .5rem 1rem #00000026!important}}@media print{html .shadow-sm,html[data-netbox-color-mode=dark] .shadow-sm,html[data-netbox-color-mode=light] .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}}@media print{html .shadow-lg,html[data-netbox-color-mode=dark] .shadow-lg,html[data-netbox-color-mode=light] .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}}@media print{html .shadow-none,html[data-netbox-color-mode=dark] .shadow-none,html[data-netbox-color-mode=light] .shadow-none{box-shadow:none!important}}@media print{html .position-static,html[data-netbox-color-mode=dark] .position-static,html[data-netbox-color-mode=light] .position-static{position:static!important}}@media print{html .position-relative,html[data-netbox-color-mode=dark] .position-relative,html[data-netbox-color-mode=light] .position-relative{position:relative!important}}@media print{html .position-absolute,html[data-netbox-color-mode=dark] .position-absolute,html[data-netbox-color-mode=light] .position-absolute{position:absolute!important}}@media print{html .position-fixed,html[data-netbox-color-mode=dark] .position-fixed,html[data-netbox-color-mode=light] .position-fixed{position:fixed!important}}@media print{html .position-sticky,html[data-netbox-color-mode=dark] .position-sticky,html[data-netbox-color-mode=light] .position-sticky{position:sticky!important}}@media print{html .top-0,html[data-netbox-color-mode=dark] .top-0,html[data-netbox-color-mode=light] .top-0{top:0!important}}@media print{html .top-50,html[data-netbox-color-mode=dark] .top-50,html[data-netbox-color-mode=light] .top-50{top:50%!important}}@media print{html .top-100,html[data-netbox-color-mode=dark] .top-100,html[data-netbox-color-mode=light] .top-100{top:100%!important}}@media print{html .bottom-0,html[data-netbox-color-mode=dark] .bottom-0,html[data-netbox-color-mode=light] .bottom-0{bottom:0!important}}@media print{html .bottom-50,html[data-netbox-color-mode=dark] .bottom-50,html[data-netbox-color-mode=light] .bottom-50{bottom:50%!important}}@media print{html .bottom-100,html[data-netbox-color-mode=dark] .bottom-100,html[data-netbox-color-mode=light] .bottom-100{bottom:100%!important}}@media print{html .start-0,html[data-netbox-color-mode=dark] .start-0,html[data-netbox-color-mode=light] .start-0{left:0!important}}@media print{html .start-50,html[data-netbox-color-mode=dark] .start-50,html[data-netbox-color-mode=light] .start-50{left:50%!important}}@media print{html .start-100,html[data-netbox-color-mode=dark] .start-100,html[data-netbox-color-mode=light] .start-100{left:100%!important}}@media print{html .end-0,html[data-netbox-color-mode=dark] .end-0,html[data-netbox-color-mode=light] .end-0{right:0!important}}@media print{html .end-50,html[data-netbox-color-mode=dark] .end-50,html[data-netbox-color-mode=light] .end-50{right:50%!important}}@media print{html .end-100,html[data-netbox-color-mode=dark] .end-100,html[data-netbox-color-mode=light] .end-100{right:100%!important}}@media print{html .translate-middle,html[data-netbox-color-mode=dark] .translate-middle,html[data-netbox-color-mode=light] .translate-middle{transform:translate(-50%,-50%)!important}}@media print{html .translate-middle-x,html[data-netbox-color-mode=dark] .translate-middle-x,html[data-netbox-color-mode=light] .translate-middle-x{transform:translate(-50%)!important}}@media print{html .translate-middle-y,html[data-netbox-color-mode=dark] .translate-middle-y,html[data-netbox-color-mode=light] .translate-middle-y{transform:translateY(-50%)!important}}@media print{html .border,html[data-netbox-color-mode=dark] .border,html[data-netbox-color-mode=light] .border{border:1px solid #dee2e6!important}}@media print{html .border-0,html[data-netbox-color-mode=dark] .border-0,html[data-netbox-color-mode=light] .border-0{border:0!important}}@media print{html .border-top,html[data-netbox-color-mode=dark] .border-top,html[data-netbox-color-mode=light] .border-top{border-top:1px solid #dee2e6!important}}@media print{html .border-top-0,html[data-netbox-color-mode=dark] .border-top-0,html[data-netbox-color-mode=light] .border-top-0{border-top:0!important}}@media print{html .border-end,html[data-netbox-color-mode=dark] .border-end,html[data-netbox-color-mode=light] .border-end{border-right:1px solid #dee2e6!important}}@media print{html .border-end-0,html[data-netbox-color-mode=dark] .border-end-0,html[data-netbox-color-mode=light] .border-end-0{border-right:0!important}}@media print{html .border-bottom,html[data-netbox-color-mode=dark] .border-bottom,html[data-netbox-color-mode=light] .border-bottom{border-bottom:1px solid #dee2e6!important}}@media print{html .border-bottom-0,html[data-netbox-color-mode=dark] .border-bottom-0,html[data-netbox-color-mode=light] .border-bottom-0{border-bottom:0!important}}@media print{html .border-start,html[data-netbox-color-mode=dark] .border-start,html[data-netbox-color-mode=light] .border-start{border-left:1px solid #dee2e6!important}}@media print{html .border-start-0,html[data-netbox-color-mode=dark] .border-start-0,html[data-netbox-color-mode=light] .border-start-0{border-left:0!important}}@media print{html .border-primary,html[data-netbox-color-mode=dark] .border-primary,html[data-netbox-color-mode=light] .border-primary{border-color:#337ab7!important}}@media print{html .border-secondary,html[data-netbox-color-mode=dark] .border-secondary,html[data-netbox-color-mode=light] .border-secondary{border-color:#6c757d!important}}@media print{html .border-success,html[data-netbox-color-mode=dark] .border-success,html[data-netbox-color-mode=light] .border-success{border-color:#198754!important}}@media print{html .border-info,html[data-netbox-color-mode=dark] .border-info,html[data-netbox-color-mode=light] .border-info{border-color:#0dcaf0!important}}@media print{html .border-warning,html[data-netbox-color-mode=dark] .border-warning,html[data-netbox-color-mode=light] .border-warning{border-color:#ffc107!important}}@media print{html .border-danger,html[data-netbox-color-mode=dark] .border-danger,html[data-netbox-color-mode=light] .border-danger{border-color:#dc3545!important}}@media print{html .border-light,html[data-netbox-color-mode=dark] .border-light,html[data-netbox-color-mode=light] .border-light{border-color:#f8f9fa!important}}@media print{html .border-dark,html[data-netbox-color-mode=dark] .border-dark,html[data-netbox-color-mode=light] .border-dark{border-color:#212529!important}}@media print{html .border-red,html[data-netbox-color-mode=dark] .border-red,html[data-netbox-color-mode=light] .border-red{border-color:#dc3545!important}}@media print{html .border-yellow,html[data-netbox-color-mode=dark] .border-yellow,html[data-netbox-color-mode=light] .border-yellow{border-color:#ffc107!important}}@media print{html .border-green,html[data-netbox-color-mode=dark] .border-green,html[data-netbox-color-mode=light] .border-green{border-color:#198754!important}}@media print{html .border-blue,html[data-netbox-color-mode=dark] .border-blue,html[data-netbox-color-mode=light] .border-blue{border-color:#0d6efd!important}}@media print{html .border-cyan,html[data-netbox-color-mode=dark] .border-cyan,html[data-netbox-color-mode=light] .border-cyan{border-color:#0dcaf0!important}}@media print{html .border-indigo,html[data-netbox-color-mode=dark] .border-indigo,html[data-netbox-color-mode=light] .border-indigo{border-color:#6610f2!important}}@media print{html .border-purple,html[data-netbox-color-mode=dark] .border-purple,html[data-netbox-color-mode=light] .border-purple{border-color:#6f42c1!important}}@media print{html .border-pink,html[data-netbox-color-mode=dark] .border-pink,html[data-netbox-color-mode=light] .border-pink{border-color:#d63384!important}}@media print{html .border-darker,html[data-netbox-color-mode=dark] .border-darker,html[data-netbox-color-mode=light] .border-darker{border-color:#1b1f22!important}}@media print{html .border-darkest,html[data-netbox-color-mode=dark] .border-darkest,html[data-netbox-color-mode=light] .border-darkest{border-color:#171b1d!important}}@media print{html .border-gray,html[data-netbox-color-mode=dark] .border-gray,html[data-netbox-color-mode=light] .border-gray{border-color:#ced4da!important}}@media print{html .border-gray-100,html[data-netbox-color-mode=dark] .border-gray-100,html[data-netbox-color-mode=light] .border-gray-100{border-color:#f8f9fa!important}}@media print{html .border-gray-200,html[data-netbox-color-mode=dark] .border-gray-200,html[data-netbox-color-mode=light] .border-gray-200{border-color:#e9ecef!important}}@media print{html .border-gray-300,html[data-netbox-color-mode=dark] .border-gray-300,html[data-netbox-color-mode=light] .border-gray-300{border-color:#dee2e6!important}}@media print{html .border-gray-400,html[data-netbox-color-mode=dark] .border-gray-400,html[data-netbox-color-mode=light] .border-gray-400{border-color:#ced4da!important}}@media print{html .border-gray-500,html[data-netbox-color-mode=dark] .border-gray-500,html[data-netbox-color-mode=light] .border-gray-500{border-color:#adb5bd!important}}@media print{html .border-gray-600,html[data-netbox-color-mode=dark] .border-gray-600,html[data-netbox-color-mode=light] .border-gray-600{border-color:#6c757d!important}}@media print{html .border-gray-700,html[data-netbox-color-mode=dark] .border-gray-700,html[data-netbox-color-mode=light] .border-gray-700{border-color:#495057!important}}@media print{html .border-gray-800,html[data-netbox-color-mode=dark] .border-gray-800,html[data-netbox-color-mode=light] .border-gray-800{border-color:#343a40!important}}@media print{html .border-gray-900,html[data-netbox-color-mode=dark] .border-gray-900,html[data-netbox-color-mode=light] .border-gray-900{border-color:#212529!important}}@media print{html .border-red-100,html[data-netbox-color-mode=dark] .border-red-100,html[data-netbox-color-mode=light] .border-red-100{border-color:#f8d7da!important}}@media print{html .border-red-200,html[data-netbox-color-mode=dark] .border-red-200,html[data-netbox-color-mode=light] .border-red-200{border-color:#f1aeb5!important}}@media print{html .border-red-300,html[data-netbox-color-mode=dark] .border-red-300,html[data-netbox-color-mode=light] .border-red-300{border-color:#ea868f!important}}@media print{html .border-red-400,html[data-netbox-color-mode=dark] .border-red-400,html[data-netbox-color-mode=light] .border-red-400{border-color:#e35d6a!important}}@media print{html .border-red-500,html[data-netbox-color-mode=dark] .border-red-500,html[data-netbox-color-mode=light] .border-red-500{border-color:#dc3545!important}}@media print{html .border-red-600,html[data-netbox-color-mode=dark] .border-red-600,html[data-netbox-color-mode=light] .border-red-600{border-color:#b02a37!important}}@media print{html .border-red-700,html[data-netbox-color-mode=dark] .border-red-700,html[data-netbox-color-mode=light] .border-red-700{border-color:#842029!important}}@media print{html .border-red-800,html[data-netbox-color-mode=dark] .border-red-800,html[data-netbox-color-mode=light] .border-red-800{border-color:#58151c!important}}@media print{html .border-red-900,html[data-netbox-color-mode=dark] .border-red-900,html[data-netbox-color-mode=light] .border-red-900{border-color:#2c0b0e!important}}@media print{html .border-yellow-100,html[data-netbox-color-mode=dark] .border-yellow-100,html[data-netbox-color-mode=light] .border-yellow-100{border-color:#fff3cd!important}}@media print{html .border-yellow-200,html[data-netbox-color-mode=dark] .border-yellow-200,html[data-netbox-color-mode=light] .border-yellow-200{border-color:#ffe69c!important}}@media print{html .border-yellow-300,html[data-netbox-color-mode=dark] .border-yellow-300,html[data-netbox-color-mode=light] .border-yellow-300{border-color:#ffda6a!important}}@media print{html .border-yellow-400,html[data-netbox-color-mode=dark] .border-yellow-400,html[data-netbox-color-mode=light] .border-yellow-400{border-color:#ffcd39!important}}@media print{html .border-yellow-500,html[data-netbox-color-mode=dark] .border-yellow-500,html[data-netbox-color-mode=light] .border-yellow-500{border-color:#ffc107!important}}@media print{html .border-yellow-600,html[data-netbox-color-mode=dark] .border-yellow-600,html[data-netbox-color-mode=light] .border-yellow-600{border-color:#cc9a06!important}}@media print{html .border-yellow-700,html[data-netbox-color-mode=dark] .border-yellow-700,html[data-netbox-color-mode=light] .border-yellow-700{border-color:#997404!important}}@media print{html .border-yellow-800,html[data-netbox-color-mode=dark] .border-yellow-800,html[data-netbox-color-mode=light] .border-yellow-800{border-color:#664d03!important}}@media print{html .border-yellow-900,html[data-netbox-color-mode=dark] .border-yellow-900,html[data-netbox-color-mode=light] .border-yellow-900{border-color:#332701!important}}@media print{html .border-green-100,html[data-netbox-color-mode=dark] .border-green-100,html[data-netbox-color-mode=light] .border-green-100{border-color:#d1e7dd!important}}@media print{html .border-green-200,html[data-netbox-color-mode=dark] .border-green-200,html[data-netbox-color-mode=light] .border-green-200{border-color:#a3cfbb!important}}@media print{html .border-green-300,html[data-netbox-color-mode=dark] .border-green-300,html[data-netbox-color-mode=light] .border-green-300{border-color:#75b798!important}}@media print{html .border-green-400,html[data-netbox-color-mode=dark] .border-green-400,html[data-netbox-color-mode=light] .border-green-400{border-color:#479f76!important}}@media print{html .border-green-500,html[data-netbox-color-mode=dark] .border-green-500,html[data-netbox-color-mode=light] .border-green-500{border-color:#198754!important}}@media print{html .border-green-600,html[data-netbox-color-mode=dark] .border-green-600,html[data-netbox-color-mode=light] .border-green-600{border-color:#146c43!important}}@media print{html .border-green-700,html[data-netbox-color-mode=dark] .border-green-700,html[data-netbox-color-mode=light] .border-green-700{border-color:#0f5132!important}}@media print{html .border-green-800,html[data-netbox-color-mode=dark] .border-green-800,html[data-netbox-color-mode=light] .border-green-800{border-color:#0a3622!important}}@media print{html .border-green-900,html[data-netbox-color-mode=dark] .border-green-900,html[data-netbox-color-mode=light] .border-green-900{border-color:#051b11!important}}@media print{html .border-blue-100,html[data-netbox-color-mode=dark] .border-blue-100,html[data-netbox-color-mode=light] .border-blue-100{border-color:#cfe2ff!important}}@media print{html .border-blue-200,html[data-netbox-color-mode=dark] .border-blue-200,html[data-netbox-color-mode=light] .border-blue-200{border-color:#9ec5fe!important}}@media print{html .border-blue-300,html[data-netbox-color-mode=dark] .border-blue-300,html[data-netbox-color-mode=light] .border-blue-300{border-color:#6ea8fe!important}}@media print{html .border-blue-400,html[data-netbox-color-mode=dark] .border-blue-400,html[data-netbox-color-mode=light] .border-blue-400{border-color:#3d8bfd!important}}@media print{html .border-blue-500,html[data-netbox-color-mode=dark] .border-blue-500,html[data-netbox-color-mode=light] .border-blue-500{border-color:#0d6efd!important}}@media print{html .border-blue-600,html[data-netbox-color-mode=dark] .border-blue-600,html[data-netbox-color-mode=light] .border-blue-600{border-color:#0a58ca!important}}@media print{html .border-blue-700,html[data-netbox-color-mode=dark] .border-blue-700,html[data-netbox-color-mode=light] .border-blue-700{border-color:#084298!important}}@media print{html .border-blue-800,html[data-netbox-color-mode=dark] .border-blue-800,html[data-netbox-color-mode=light] .border-blue-800{border-color:#052c65!important}}@media print{html .border-blue-900,html[data-netbox-color-mode=dark] .border-blue-900,html[data-netbox-color-mode=light] .border-blue-900{border-color:#031633!important}}@media print{html .border-cyan-100,html[data-netbox-color-mode=dark] .border-cyan-100,html[data-netbox-color-mode=light] .border-cyan-100{border-color:#cff4fc!important}}@media print{html .border-cyan-200,html[data-netbox-color-mode=dark] .border-cyan-200,html[data-netbox-color-mode=light] .border-cyan-200{border-color:#9eeaf9!important}}@media print{html .border-cyan-300,html[data-netbox-color-mode=dark] .border-cyan-300,html[data-netbox-color-mode=light] .border-cyan-300{border-color:#6edff6!important}}@media print{html .border-cyan-400,html[data-netbox-color-mode=dark] .border-cyan-400,html[data-netbox-color-mode=light] .border-cyan-400{border-color:#3dd5f3!important}}@media print{html .border-cyan-500,html[data-netbox-color-mode=dark] .border-cyan-500,html[data-netbox-color-mode=light] .border-cyan-500{border-color:#0dcaf0!important}}@media print{html .border-cyan-600,html[data-netbox-color-mode=dark] .border-cyan-600,html[data-netbox-color-mode=light] .border-cyan-600{border-color:#0aa2c0!important}}@media print{html .border-cyan-700,html[data-netbox-color-mode=dark] .border-cyan-700,html[data-netbox-color-mode=light] .border-cyan-700{border-color:#087990!important}}@media print{html .border-cyan-800,html[data-netbox-color-mode=dark] .border-cyan-800,html[data-netbox-color-mode=light] .border-cyan-800{border-color:#055160!important}}@media print{html .border-cyan-900,html[data-netbox-color-mode=dark] .border-cyan-900,html[data-netbox-color-mode=light] .border-cyan-900{border-color:#032830!important}}@media print{html .border-indigo-100,html[data-netbox-color-mode=dark] .border-indigo-100,html[data-netbox-color-mode=light] .border-indigo-100{border-color:#e0cffc!important}}@media print{html .border-indigo-200,html[data-netbox-color-mode=dark] .border-indigo-200,html[data-netbox-color-mode=light] .border-indigo-200{border-color:#c29ffa!important}}@media print{html .border-indigo-300,html[data-netbox-color-mode=dark] .border-indigo-300,html[data-netbox-color-mode=light] .border-indigo-300{border-color:#a370f7!important}}@media print{html .border-indigo-400,html[data-netbox-color-mode=dark] .border-indigo-400,html[data-netbox-color-mode=light] .border-indigo-400{border-color:#8540f5!important}}@media print{html .border-indigo-500,html[data-netbox-color-mode=dark] .border-indigo-500,html[data-netbox-color-mode=light] .border-indigo-500{border-color:#6610f2!important}}@media print{html .border-indigo-600,html[data-netbox-color-mode=dark] .border-indigo-600,html[data-netbox-color-mode=light] .border-indigo-600{border-color:#520dc2!important}}@media print{html .border-indigo-700,html[data-netbox-color-mode=dark] .border-indigo-700,html[data-netbox-color-mode=light] .border-indigo-700{border-color:#3d0a91!important}}@media print{html .border-indigo-800,html[data-netbox-color-mode=dark] .border-indigo-800,html[data-netbox-color-mode=light] .border-indigo-800{border-color:#290661!important}}@media print{html .border-indigo-900,html[data-netbox-color-mode=dark] .border-indigo-900,html[data-netbox-color-mode=light] .border-indigo-900{border-color:#140330!important}}@media print{html .border-purple-100,html[data-netbox-color-mode=dark] .border-purple-100,html[data-netbox-color-mode=light] .border-purple-100{border-color:#e2d9f3!important}}@media print{html .border-purple-200,html[data-netbox-color-mode=dark] .border-purple-200,html[data-netbox-color-mode=light] .border-purple-200{border-color:#c5b3e6!important}}@media print{html .border-purple-300,html[data-netbox-color-mode=dark] .border-purple-300,html[data-netbox-color-mode=light] .border-purple-300{border-color:#a98eda!important}}@media print{html .border-purple-400,html[data-netbox-color-mode=dark] .border-purple-400,html[data-netbox-color-mode=light] .border-purple-400{border-color:#8c68cd!important}}@media print{html .border-purple-500,html[data-netbox-color-mode=dark] .border-purple-500,html[data-netbox-color-mode=light] .border-purple-500{border-color:#6f42c1!important}}@media print{html .border-purple-600,html[data-netbox-color-mode=dark] .border-purple-600,html[data-netbox-color-mode=light] .border-purple-600{border-color:#59359a!important}}@media print{html .border-purple-700,html[data-netbox-color-mode=dark] .border-purple-700,html[data-netbox-color-mode=light] .border-purple-700{border-color:#432874!important}}@media print{html .border-purple-800,html[data-netbox-color-mode=dark] .border-purple-800,html[data-netbox-color-mode=light] .border-purple-800{border-color:#2c1a4d!important}}@media print{html .border-purple-900,html[data-netbox-color-mode=dark] .border-purple-900,html[data-netbox-color-mode=light] .border-purple-900{border-color:#160d27!important}}@media print{html .border-pink-100,html[data-netbox-color-mode=dark] .border-pink-100,html[data-netbox-color-mode=light] .border-pink-100{border-color:#f7d6e6!important}}@media print{html .border-pink-200,html[data-netbox-color-mode=dark] .border-pink-200,html[data-netbox-color-mode=light] .border-pink-200{border-color:#efadce!important}}@media print{html .border-pink-300,html[data-netbox-color-mode=dark] .border-pink-300,html[data-netbox-color-mode=light] .border-pink-300{border-color:#e685b5!important}}@media print{html .border-pink-400,html[data-netbox-color-mode=dark] .border-pink-400,html[data-netbox-color-mode=light] .border-pink-400{border-color:#de5c9d!important}}@media print{html .border-pink-500,html[data-netbox-color-mode=dark] .border-pink-500,html[data-netbox-color-mode=light] .border-pink-500{border-color:#d63384!important}}@media print{html .border-pink-600,html[data-netbox-color-mode=dark] .border-pink-600,html[data-netbox-color-mode=light] .border-pink-600{border-color:#ab296a!important}}@media print{html .border-pink-700,html[data-netbox-color-mode=dark] .border-pink-700,html[data-netbox-color-mode=light] .border-pink-700{border-color:#801f4f!important}}@media print{html .border-pink-800,html[data-netbox-color-mode=dark] .border-pink-800,html[data-netbox-color-mode=light] .border-pink-800{border-color:#561435!important}}@media print{html .border-pink-900,html[data-netbox-color-mode=dark] .border-pink-900,html[data-netbox-color-mode=light] .border-pink-900{border-color:#2b0a1a!important}}@media print{html .border-white,html[data-netbox-color-mode=dark] .border-white,html[data-netbox-color-mode=light] .border-white{border-color:#fff!important}}@media print{html .border-1,html[data-netbox-color-mode=dark] .border-1,html[data-netbox-color-mode=light] .border-1{border-width:1px!important}}@media print{html .border-2,html[data-netbox-color-mode=dark] .border-2,html[data-netbox-color-mode=light] .border-2{border-width:2px!important}}@media print{html .border-3,html[data-netbox-color-mode=dark] .border-3,html[data-netbox-color-mode=light] .border-3{border-width:3px!important}}@media print{html .border-4,html[data-netbox-color-mode=dark] .border-4,html[data-netbox-color-mode=light] .border-4{border-width:4px!important}}@media print{html .border-5,html[data-netbox-color-mode=dark] .border-5,html[data-netbox-color-mode=light] .border-5{border-width:5px!important}}@media print{html .w-25,html[data-netbox-color-mode=dark] .w-25,html[data-netbox-color-mode=light] .w-25{width:25%!important}}@media print{html .w-50,html[data-netbox-color-mode=dark] .w-50,html[data-netbox-color-mode=light] .w-50{width:50%!important}}@media print{html .w-75,html[data-netbox-color-mode=dark] .w-75,html[data-netbox-color-mode=light] .w-75{width:75%!important}}@media print{html .w-100,html[data-netbox-color-mode=dark] .w-100,html[data-netbox-color-mode=light] .w-100{width:100%!important}}@media print{html .w-auto,html[data-netbox-color-mode=dark] .w-auto,html[data-netbox-color-mode=light] .w-auto{width:auto!important}}@media print{html .mw-100,html[data-netbox-color-mode=dark] .mw-100,html[data-netbox-color-mode=light] .mw-100{max-width:100%!important}}@media print{html .vw-100,html[data-netbox-color-mode=dark] .vw-100,html[data-netbox-color-mode=light] .vw-100{width:100vw!important}}@media print{html .min-vw-100,html[data-netbox-color-mode=dark] .min-vw-100,html[data-netbox-color-mode=light] .min-vw-100{min-width:100vw!important}}@media print{html .h-25,html[data-netbox-color-mode=dark] .h-25,html[data-netbox-color-mode=light] .h-25{height:25%!important}}@media print{html .h-50,html[data-netbox-color-mode=dark] .h-50,html[data-netbox-color-mode=light] .h-50{height:50%!important}}@media print{html .h-75,html[data-netbox-color-mode=dark] .h-75,html[data-netbox-color-mode=light] .h-75{height:75%!important}}@media print{html .h-100,html[data-netbox-color-mode=dark] .h-100,html[data-netbox-color-mode=light] .h-100{height:100%!important}}@media print{html .h-auto,html[data-netbox-color-mode=dark] .h-auto,html[data-netbox-color-mode=light] .h-auto{height:auto!important}}@media print{html .mh-100,html[data-netbox-color-mode=dark] .mh-100,html[data-netbox-color-mode=light] .mh-100{max-height:100%!important}}@media print{html .vh-100,html[data-netbox-color-mode=dark] .vh-100,html[data-netbox-color-mode=light] .vh-100{height:100vh!important}}@media print{html .min-vh-100,html[data-netbox-color-mode=dark] .min-vh-100,html[data-netbox-color-mode=light] .min-vh-100{min-height:100vh!important}}@media print{html .flex-fill,html[data-netbox-color-mode=dark] .flex-fill,html[data-netbox-color-mode=light] .flex-fill{flex:1 1 auto!important}}@media print{html .flex-row,html[data-netbox-color-mode=dark] .flex-row,html[data-netbox-color-mode=light] .flex-row{flex-direction:row!important}}@media print{html .flex-column,html[data-netbox-color-mode=dark] .flex-column,html[data-netbox-color-mode=light] .flex-column{flex-direction:column!important}}@media print{html .flex-row-reverse,html[data-netbox-color-mode=dark] .flex-row-reverse,html[data-netbox-color-mode=light] .flex-row-reverse{flex-direction:row-reverse!important}}@media print{html .flex-column-reverse,html[data-netbox-color-mode=dark] .flex-column-reverse,html[data-netbox-color-mode=light] .flex-column-reverse{flex-direction:column-reverse!important}}@media print{html .flex-grow-0,html[data-netbox-color-mode=dark] .flex-grow-0,html[data-netbox-color-mode=light] .flex-grow-0{flex-grow:0!important}}@media print{html .flex-grow-1,html[data-netbox-color-mode=dark] .flex-grow-1,html[data-netbox-color-mode=light] .flex-grow-1{flex-grow:1!important}}@media print{html .flex-shrink-0,html[data-netbox-color-mode=dark] .flex-shrink-0,html[data-netbox-color-mode=light] .flex-shrink-0{flex-shrink:0!important}}@media print{html .flex-shrink-1,html[data-netbox-color-mode=dark] .flex-shrink-1,html[data-netbox-color-mode=light] .flex-shrink-1{flex-shrink:1!important}}@media print{html .flex-wrap,html[data-netbox-color-mode=dark] .flex-wrap,html[data-netbox-color-mode=light] .flex-wrap{flex-wrap:wrap!important}}@media print{html .flex-nowrap,html[data-netbox-color-mode=dark] .flex-nowrap,html[data-netbox-color-mode=light] .flex-nowrap{flex-wrap:nowrap!important}}@media print{html .flex-wrap-reverse,html[data-netbox-color-mode=dark] .flex-wrap-reverse,html[data-netbox-color-mode=light] .flex-wrap-reverse{flex-wrap:wrap-reverse!important}}@media print{html .gap-0,html[data-netbox-color-mode=dark] .gap-0,html[data-netbox-color-mode=light] .gap-0{gap:0!important}}@media print{html .gap-1,html[data-netbox-color-mode=dark] .gap-1,html[data-netbox-color-mode=light] .gap-1{gap:.25rem!important}}@media print{html .gap-2,html[data-netbox-color-mode=dark] .gap-2,html[data-netbox-color-mode=light] .gap-2{gap:.5rem!important}}@media print{html .gap-3,html[data-netbox-color-mode=dark] .gap-3,html[data-netbox-color-mode=light] .gap-3{gap:1rem!important}}@media print{html .gap-4,html[data-netbox-color-mode=dark] .gap-4,html[data-netbox-color-mode=light] .gap-4{gap:1.5rem!important}}@media print{html .gap-5,html[data-netbox-color-mode=dark] .gap-5,html[data-netbox-color-mode=light] .gap-5{gap:3rem!important}}@media print{html .justify-content-start,html[data-netbox-color-mode=dark] .justify-content-start,html[data-netbox-color-mode=light] .justify-content-start{justify-content:flex-start!important}}@media print{html .justify-content-end,html[data-netbox-color-mode=dark] .justify-content-end,html[data-netbox-color-mode=light] .justify-content-end{justify-content:flex-end!important}}@media print{html .justify-content-center,html[data-netbox-color-mode=dark] .justify-content-center,html[data-netbox-color-mode=light] .justify-content-center{justify-content:center!important}}@media print{html .justify-content-between,html[data-netbox-color-mode=dark] .justify-content-between,html[data-netbox-color-mode=light] .justify-content-between{justify-content:space-between!important}}@media print{html .justify-content-around,html[data-netbox-color-mode=dark] .justify-content-around,html[data-netbox-color-mode=light] .justify-content-around{justify-content:space-around!important}}@media print{html .justify-content-evenly,html[data-netbox-color-mode=dark] .justify-content-evenly,html[data-netbox-color-mode=light] .justify-content-evenly{justify-content:space-evenly!important}}@media print{html .align-items-start,html[data-netbox-color-mode=dark] .align-items-start,html[data-netbox-color-mode=light] .align-items-start{align-items:flex-start!important}}@media print{html .align-items-end,html[data-netbox-color-mode=dark] .align-items-end,html[data-netbox-color-mode=light] .align-items-end{align-items:flex-end!important}}@media print{html .align-items-center,html[data-netbox-color-mode=dark] .align-items-center,html[data-netbox-color-mode=light] .align-items-center{align-items:center!important}}@media print{html .align-items-baseline,html[data-netbox-color-mode=dark] .align-items-baseline,html[data-netbox-color-mode=light] .align-items-baseline{align-items:baseline!important}}@media print{html .align-items-stretch,html[data-netbox-color-mode=dark] .align-items-stretch,html[data-netbox-color-mode=light] .align-items-stretch{align-items:stretch!important}}@media print{html .align-content-start,html[data-netbox-color-mode=dark] .align-content-start,html[data-netbox-color-mode=light] .align-content-start{align-content:flex-start!important}}@media print{html .align-content-end,html[data-netbox-color-mode=dark] .align-content-end,html[data-netbox-color-mode=light] .align-content-end{align-content:flex-end!important}}@media print{html .align-content-center,html[data-netbox-color-mode=dark] .align-content-center,html[data-netbox-color-mode=light] .align-content-center{align-content:center!important}}@media print{html .align-content-between,html[data-netbox-color-mode=dark] .align-content-between,html[data-netbox-color-mode=light] .align-content-between{align-content:space-between!important}}@media print{html .align-content-around,html[data-netbox-color-mode=dark] .align-content-around,html[data-netbox-color-mode=light] .align-content-around{align-content:space-around!important}}@media print{html .align-content-stretch,html[data-netbox-color-mode=dark] .align-content-stretch,html[data-netbox-color-mode=light] .align-content-stretch{align-content:stretch!important}}@media print{html .align-self-auto,html[data-netbox-color-mode=dark] .align-self-auto,html[data-netbox-color-mode=light] .align-self-auto{align-self:auto!important}}@media print{html .align-self-start,html[data-netbox-color-mode=dark] .align-self-start,html[data-netbox-color-mode=light] .align-self-start{align-self:flex-start!important}}@media print{html .align-self-end,html[data-netbox-color-mode=dark] .align-self-end,html[data-netbox-color-mode=light] .align-self-end{align-self:flex-end!important}}@media print{html .align-self-center,html[data-netbox-color-mode=dark] .align-self-center,html[data-netbox-color-mode=light] .align-self-center{align-self:center!important}}@media print{html .align-self-baseline,html[data-netbox-color-mode=dark] .align-self-baseline,html[data-netbox-color-mode=light] .align-self-baseline{align-self:baseline!important}}@media print{html .align-self-stretch,html[data-netbox-color-mode=dark] .align-self-stretch,html[data-netbox-color-mode=light] .align-self-stretch{align-self:stretch!important}}@media print{html .order-first,html[data-netbox-color-mode=dark] .order-first,html[data-netbox-color-mode=light] .order-first{order:-1!important}}@media print{html .order-0,html[data-netbox-color-mode=dark] .order-0,html[data-netbox-color-mode=light] .order-0{order:0!important}}@media print{html .order-1,html[data-netbox-color-mode=dark] .order-1,html[data-netbox-color-mode=light] .order-1{order:1!important}}@media print{html .order-2,html[data-netbox-color-mode=dark] .order-2,html[data-netbox-color-mode=light] .order-2{order:2!important}}@media print{html .order-3,html[data-netbox-color-mode=dark] .order-3,html[data-netbox-color-mode=light] .order-3{order:3!important}}@media print{html .order-4,html[data-netbox-color-mode=dark] .order-4,html[data-netbox-color-mode=light] .order-4{order:4!important}}@media print{html .order-5,html[data-netbox-color-mode=dark] .order-5,html[data-netbox-color-mode=light] .order-5{order:5!important}}@media print{html .order-last,html[data-netbox-color-mode=dark] .order-last,html[data-netbox-color-mode=light] .order-last{order:6!important}}@media print{html .m-0,html[data-netbox-color-mode=dark] .m-0,html[data-netbox-color-mode=light] .m-0{margin:0!important}}@media print{html .m-1,html[data-netbox-color-mode=dark] .m-1,html[data-netbox-color-mode=light] .m-1{margin:.25rem!important}}@media print{html .m-2,html[data-netbox-color-mode=dark] .m-2,html[data-netbox-color-mode=light] .m-2{margin:.5rem!important}}@media print{html .m-3,html[data-netbox-color-mode=dark] .m-3,html[data-netbox-color-mode=light] .m-3{margin:1rem!important}}@media print{html .m-4,html[data-netbox-color-mode=dark] .m-4,html[data-netbox-color-mode=light] .m-4{margin:1.5rem!important}}@media print{html .m-5,html[data-netbox-color-mode=dark] .m-5,html[data-netbox-color-mode=light] .m-5{margin:3rem!important}}@media print{html .m-auto,html[data-netbox-color-mode=dark] .m-auto,html[data-netbox-color-mode=light] .m-auto{margin:auto!important}}@media print{html .mx-0,html[data-netbox-color-mode=dark] .mx-0,html[data-netbox-color-mode=light] .mx-0{margin-right:0!important;margin-left:0!important}}@media print{html .mx-1,html[data-netbox-color-mode=dark] .mx-1,html[data-netbox-color-mode=light] .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}}@media print{html .mx-2,html[data-netbox-color-mode=dark] .mx-2,html[data-netbox-color-mode=light] .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}}@media print{html .mx-3,html[data-netbox-color-mode=dark] .mx-3,html[data-netbox-color-mode=light] .mx-3{margin-right:1rem!important;margin-left:1rem!important}}@media print{html .mx-4,html[data-netbox-color-mode=dark] .mx-4,html[data-netbox-color-mode=light] .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}}@media print{html .mx-5,html[data-netbox-color-mode=dark] .mx-5,html[data-netbox-color-mode=light] .mx-5{margin-right:3rem!important;margin-left:3rem!important}}@media print{html .mx-auto,html[data-netbox-color-mode=dark] .mx-auto,html[data-netbox-color-mode=light] .mx-auto{margin-right:auto!important;margin-left:auto!important}}@media print{html .my-0,html[data-netbox-color-mode=dark] .my-0,html[data-netbox-color-mode=light] .my-0{margin-top:0!important;margin-bottom:0!important}}@media print{html .my-1,html[data-netbox-color-mode=dark] .my-1,html[data-netbox-color-mode=light] .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}}@media print{html .my-2,html[data-netbox-color-mode=dark] .my-2,html[data-netbox-color-mode=light] .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}}@media print{html .my-3,html[data-netbox-color-mode=dark] .my-3,html[data-netbox-color-mode=light] .my-3{margin-top:1rem!important;margin-bottom:1rem!important}}@media print{html .my-4,html[data-netbox-color-mode=dark] .my-4,html[data-netbox-color-mode=light] .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}}@media print{html .my-5,html[data-netbox-color-mode=dark] .my-5,html[data-netbox-color-mode=light] .my-5{margin-top:3rem!important;margin-bottom:3rem!important}}@media print{html .my-auto,html[data-netbox-color-mode=dark] .my-auto,html[data-netbox-color-mode=light] .my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media print{html .mt-0,html[data-netbox-color-mode=dark] .mt-0,html[data-netbox-color-mode=light] .mt-0{margin-top:0!important}}@media print{html .mt-1,html[data-netbox-color-mode=dark] .mt-1,html[data-netbox-color-mode=light] .mt-1{margin-top:.25rem!important}}@media print{html .mt-2,html[data-netbox-color-mode=dark] .mt-2,html[data-netbox-color-mode=light] .mt-2{margin-top:.5rem!important}}@media print{html .mt-3,html[data-netbox-color-mode=dark] .mt-3,html[data-netbox-color-mode=light] .mt-3{margin-top:1rem!important}}@media print{html .mt-4,html[data-netbox-color-mode=dark] .mt-4,html[data-netbox-color-mode=light] .mt-4{margin-top:1.5rem!important}}@media print{html .mt-5,html[data-netbox-color-mode=dark] .mt-5,html[data-netbox-color-mode=light] .mt-5{margin-top:3rem!important}}@media print{html .mt-auto,html[data-netbox-color-mode=dark] .mt-auto,html[data-netbox-color-mode=light] .mt-auto{margin-top:auto!important}}@media print{html .me-0,html[data-netbox-color-mode=dark] .me-0,html[data-netbox-color-mode=light] .me-0{margin-right:0!important}}@media print{html .me-1,html[data-netbox-color-mode=dark] .me-1,html[data-netbox-color-mode=light] .me-1{margin-right:.25rem!important}}@media print{html .me-2,html[data-netbox-color-mode=dark] .me-2,html[data-netbox-color-mode=light] .me-2{margin-right:.5rem!important}}@media print{html .me-3,html[data-netbox-color-mode=dark] .me-3,html[data-netbox-color-mode=light] .me-3{margin-right:1rem!important}}@media print{html .me-4,html[data-netbox-color-mode=dark] .me-4,html[data-netbox-color-mode=light] .me-4{margin-right:1.5rem!important}}@media print{html .me-5,html[data-netbox-color-mode=dark] .me-5,html[data-netbox-color-mode=light] .me-5{margin-right:3rem!important}}@media print{html .me-auto,html[data-netbox-color-mode=dark] .me-auto,html[data-netbox-color-mode=light] .me-auto{margin-right:auto!important}}@media print{html .mb-0,html[data-netbox-color-mode=dark] .mb-0,html[data-netbox-color-mode=light] .mb-0{margin-bottom:0!important}}@media print{html .mb-1,html[data-netbox-color-mode=dark] .mb-1,html[data-netbox-color-mode=light] .mb-1{margin-bottom:.25rem!important}}@media print{html .mb-2,html[data-netbox-color-mode=dark] .mb-2,html[data-netbox-color-mode=light] .mb-2{margin-bottom:.5rem!important}}@media print{html .mb-3,html[data-netbox-color-mode=dark] .mb-3,html[data-netbox-color-mode=light] .mb-3{margin-bottom:1rem!important}}@media print{html .mb-4,html[data-netbox-color-mode=dark] .mb-4,html[data-netbox-color-mode=light] .mb-4{margin-bottom:1.5rem!important}}@media print{html .mb-5,html[data-netbox-color-mode=dark] .mb-5,html[data-netbox-color-mode=light] .mb-5{margin-bottom:3rem!important}}@media print{html .mb-auto,html[data-netbox-color-mode=dark] .mb-auto,html[data-netbox-color-mode=light] .mb-auto{margin-bottom:auto!important}}@media print{html .ms-0,html[data-netbox-color-mode=dark] .ms-0,html[data-netbox-color-mode=light] .ms-0{margin-left:0!important}}@media print{html .ms-1,html[data-netbox-color-mode=dark] .ms-1,html[data-netbox-color-mode=light] .ms-1{margin-left:.25rem!important}}@media print{html .ms-2,html[data-netbox-color-mode=dark] .ms-2,html[data-netbox-color-mode=light] .ms-2{margin-left:.5rem!important}}@media print{html .ms-3,html[data-netbox-color-mode=dark] .ms-3,html[data-netbox-color-mode=light] .ms-3{margin-left:1rem!important}}@media print{html .ms-4,html[data-netbox-color-mode=dark] .ms-4,html[data-netbox-color-mode=light] .ms-4{margin-left:1.5rem!important}}@media print{html .ms-5,html[data-netbox-color-mode=dark] .ms-5,html[data-netbox-color-mode=light] .ms-5{margin-left:3rem!important}}@media print{html .ms-auto,html[data-netbox-color-mode=dark] .ms-auto,html[data-netbox-color-mode=light] .ms-auto{margin-left:auto!important}}@media print{html .p-0,html[data-netbox-color-mode=dark] .p-0,html[data-netbox-color-mode=light] .p-0{padding:0!important}}@media print{html .p-1,html[data-netbox-color-mode=dark] .p-1,html[data-netbox-color-mode=light] .p-1{padding:.25rem!important}}@media print{html .p-2,html[data-netbox-color-mode=dark] .p-2,html[data-netbox-color-mode=light] .p-2{padding:.5rem!important}}@media print{html .p-3,html[data-netbox-color-mode=dark] .p-3,html[data-netbox-color-mode=light] .p-3{padding:1rem!important}}@media print{html .p-4,html[data-netbox-color-mode=dark] .p-4,html[data-netbox-color-mode=light] .p-4{padding:1.5rem!important}}@media print{html .p-5,html[data-netbox-color-mode=dark] .p-5,html[data-netbox-color-mode=light] .p-5{padding:3rem!important}}@media print{html .px-0,html[data-netbox-color-mode=dark] .px-0,html[data-netbox-color-mode=light] .px-0{padding-right:0!important;padding-left:0!important}}@media print{html .px-1,html[data-netbox-color-mode=dark] .px-1,html[data-netbox-color-mode=light] .px-1{padding-right:.25rem!important;padding-left:.25rem!important}}@media print{html .px-2,html[data-netbox-color-mode=dark] .px-2,html[data-netbox-color-mode=light] .px-2{padding-right:.5rem!important;padding-left:.5rem!important}}@media print{html .px-3,html[data-netbox-color-mode=dark] .px-3,html[data-netbox-color-mode=light] .px-3{padding-right:1rem!important;padding-left:1rem!important}}@media print{html .px-4,html[data-netbox-color-mode=dark] .px-4,html[data-netbox-color-mode=light] .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}}@media print{html .px-5,html[data-netbox-color-mode=dark] .px-5,html[data-netbox-color-mode=light] .px-5{padding-right:3rem!important;padding-left:3rem!important}}@media print{html .py-0,html[data-netbox-color-mode=dark] .py-0,html[data-netbox-color-mode=light] .py-0{padding-top:0!important;padding-bottom:0!important}}@media print{html .py-1,html[data-netbox-color-mode=dark] .py-1,html[data-netbox-color-mode=light] .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}}@media print{html .py-2,html[data-netbox-color-mode=dark] .py-2,html[data-netbox-color-mode=light] .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}}@media print{html .py-3,html[data-netbox-color-mode=dark] .py-3,html[data-netbox-color-mode=light] .py-3{padding-top:1rem!important;padding-bottom:1rem!important}}@media print{html .py-4,html[data-netbox-color-mode=dark] .py-4,html[data-netbox-color-mode=light] .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}}@media print{html .py-5,html[data-netbox-color-mode=dark] .py-5,html[data-netbox-color-mode=light] .py-5{padding-top:3rem!important;padding-bottom:3rem!important}}@media print{html .pt-0,html[data-netbox-color-mode=dark] .pt-0,html[data-netbox-color-mode=light] .pt-0{padding-top:0!important}}@media print{html .pt-1,html[data-netbox-color-mode=dark] .pt-1,html[data-netbox-color-mode=light] .pt-1{padding-top:.25rem!important}}@media print{html .pt-2,html[data-netbox-color-mode=dark] .pt-2,html[data-netbox-color-mode=light] .pt-2{padding-top:.5rem!important}}@media print{html .pt-3,html[data-netbox-color-mode=dark] .pt-3,html[data-netbox-color-mode=light] .pt-3{padding-top:1rem!important}}@media print{html .pt-4,html[data-netbox-color-mode=dark] .pt-4,html[data-netbox-color-mode=light] .pt-4{padding-top:1.5rem!important}}@media print{html .pt-5,html[data-netbox-color-mode=dark] .pt-5,html[data-netbox-color-mode=light] .pt-5{padding-top:3rem!important}}@media print{html .pe-0,html[data-netbox-color-mode=dark] .pe-0,html[data-netbox-color-mode=light] .pe-0{padding-right:0!important}}@media print{html .pe-1,html[data-netbox-color-mode=dark] .pe-1,html[data-netbox-color-mode=light] .pe-1{padding-right:.25rem!important}}@media print{html .pe-2,html[data-netbox-color-mode=dark] .pe-2,html[data-netbox-color-mode=light] .pe-2{padding-right:.5rem!important}}@media print{html .pe-3,html[data-netbox-color-mode=dark] .pe-3,html[data-netbox-color-mode=light] .pe-3{padding-right:1rem!important}}@media print{html .pe-4,html[data-netbox-color-mode=dark] .pe-4,html[data-netbox-color-mode=light] .pe-4{padding-right:1.5rem!important}}@media print{html .pe-5,html[data-netbox-color-mode=dark] .pe-5,html[data-netbox-color-mode=light] .pe-5{padding-right:3rem!important}}@media print{html .pb-0,html[data-netbox-color-mode=dark] .pb-0,html[data-netbox-color-mode=light] .pb-0{padding-bottom:0!important}}@media print{html .pb-1,html[data-netbox-color-mode=dark] .pb-1,html[data-netbox-color-mode=light] .pb-1{padding-bottom:.25rem!important}}@media print{html .pb-2,html[data-netbox-color-mode=dark] .pb-2,html[data-netbox-color-mode=light] .pb-2{padding-bottom:.5rem!important}}@media print{html .pb-3,html[data-netbox-color-mode=dark] .pb-3,html[data-netbox-color-mode=light] .pb-3{padding-bottom:1rem!important}}@media print{html .pb-4,html[data-netbox-color-mode=dark] .pb-4,html[data-netbox-color-mode=light] .pb-4{padding-bottom:1.5rem!important}}@media print{html .pb-5,html[data-netbox-color-mode=dark] .pb-5,html[data-netbox-color-mode=light] .pb-5{padding-bottom:3rem!important}}@media print{html .ps-0,html[data-netbox-color-mode=dark] .ps-0,html[data-netbox-color-mode=light] .ps-0{padding-left:0!important}}@media print{html .ps-1,html[data-netbox-color-mode=dark] .ps-1,html[data-netbox-color-mode=light] .ps-1{padding-left:.25rem!important}}@media print{html .ps-2,html[data-netbox-color-mode=dark] .ps-2,html[data-netbox-color-mode=light] .ps-2{padding-left:.5rem!important}}@media print{html .ps-3,html[data-netbox-color-mode=dark] .ps-3,html[data-netbox-color-mode=light] .ps-3{padding-left:1rem!important}}@media print{html .ps-4,html[data-netbox-color-mode=dark] .ps-4,html[data-netbox-color-mode=light] .ps-4{padding-left:1.5rem!important}}@media print{html .ps-5,html[data-netbox-color-mode=dark] .ps-5,html[data-netbox-color-mode=light] .ps-5{padding-left:3rem!important}}@media print{html .font-monospace,html[data-netbox-color-mode=dark] .font-monospace,html[data-netbox-color-mode=light] .font-monospace{font-family:var(--bs-font-monospace)!important}}@media print{html .fs-1,html[data-netbox-color-mode=dark] .fs-1,html[data-netbox-color-mode=light] .fs-1{font-size:calc(1.375rem + 1.5vw)!important}}@media print{html .fs-2,html[data-netbox-color-mode=dark] .fs-2,html[data-netbox-color-mode=light] .fs-2{font-size:calc(1.325rem + .9vw)!important}}@media print{html .fs-3,html[data-netbox-color-mode=dark] .fs-3,html[data-netbox-color-mode=light] .fs-3{font-size:calc(1.3rem + .6vw)!important}}@media print{html .fs-4,html[data-netbox-color-mode=dark] .fs-4,html[data-netbox-color-mode=light] .fs-4{font-size:calc(1.275rem + .3vw)!important}}@media print{html .fs-5,html[data-netbox-color-mode=dark] .fs-5,html[data-netbox-color-mode=light] .fs-5{font-size:1.25rem!important}}@media print{html .fs-6,html[data-netbox-color-mode=dark] .fs-6,html[data-netbox-color-mode=light] .fs-6{font-size:1rem!important}}@media print{html .fst-italic,html[data-netbox-color-mode=dark] .fst-italic,html[data-netbox-color-mode=light] .fst-italic{font-style:italic!important}}@media print{html .fst-normal,html[data-netbox-color-mode=dark] .fst-normal,html[data-netbox-color-mode=light] .fst-normal{font-style:normal!important}}@media print{html .fw-light,html[data-netbox-color-mode=dark] .fw-light,html[data-netbox-color-mode=light] .fw-light{font-weight:300!important}}@media print{html .fw-lighter,html[data-netbox-color-mode=dark] .fw-lighter,html[data-netbox-color-mode=light] .fw-lighter{font-weight:200!important}}@media print{html .fw-normal,html[data-netbox-color-mode=dark] .fw-normal,html[data-netbox-color-mode=light] .fw-normal{font-weight:400!important}}@media print{html .fw-bold,html[data-netbox-color-mode=dark] .fw-bold,html[data-netbox-color-mode=light] .fw-bold{font-weight:700!important}}@media print{html .fw-bolder,html[data-netbox-color-mode=dark] .fw-bolder,html[data-netbox-color-mode=light] .fw-bolder{font-weight:800!important}}@media print{html .lh-1,html[data-netbox-color-mode=dark] .lh-1,html[data-netbox-color-mode=light] .lh-1{line-height:1!important}}@media print{html .lh-sm,html[data-netbox-color-mode=dark] .lh-sm,html[data-netbox-color-mode=light] .lh-sm{line-height:1.25!important}}@media print{html .lh-base,html[data-netbox-color-mode=dark] .lh-base,html[data-netbox-color-mode=light] .lh-base{line-height:1.5!important}}@media print{html .lh-lg,html[data-netbox-color-mode=dark] .lh-lg,html[data-netbox-color-mode=light] .lh-lg{line-height:1.75!important}}@media print{html .text-start,html[data-netbox-color-mode=dark] .text-start,html[data-netbox-color-mode=light] .text-start{text-align:left!important}}@media print{html .text-end,html[data-netbox-color-mode=dark] .text-end,html[data-netbox-color-mode=light] .text-end{text-align:right!important}}@media print{html .text-center,html[data-netbox-color-mode=dark] .text-center,html[data-netbox-color-mode=light] .text-center{text-align:center!important}}@media print{html .text-decoration-none,html[data-netbox-color-mode=dark] .text-decoration-none,html[data-netbox-color-mode=light] .text-decoration-none{text-decoration:none!important}}@media print{html .text-decoration-underline,html[data-netbox-color-mode=dark] .text-decoration-underline,html[data-netbox-color-mode=light] .text-decoration-underline{text-decoration:underline!important}}@media print{html .text-decoration-line-through,html[data-netbox-color-mode=dark] .text-decoration-line-through,html[data-netbox-color-mode=light] .text-decoration-line-through{text-decoration:line-through!important}}@media print{html .text-lowercase,html[data-netbox-color-mode=dark] .text-lowercase,html[data-netbox-color-mode=light] .text-lowercase{text-transform:lowercase!important}}@media print{html .text-uppercase,html[data-netbox-color-mode=dark] .text-uppercase,html[data-netbox-color-mode=light] .text-uppercase{text-transform:uppercase!important}}@media print{html .text-capitalize,html[data-netbox-color-mode=dark] .text-capitalize,html[data-netbox-color-mode=light] .text-capitalize{text-transform:capitalize!important}}@media print{html .text-wrap,html[data-netbox-color-mode=dark] .text-wrap,html[data-netbox-color-mode=light] .text-wrap{white-space:normal!important}}@media print{html .text-nowrap,html[data-netbox-color-mode=dark] .text-nowrap,html[data-netbox-color-mode=light] .text-nowrap{white-space:nowrap!important}}@media print{html .text-break,html[data-netbox-color-mode=dark] .text-break,html[data-netbox-color-mode=light] .text-break{word-wrap:break-word!important;word-break:break-word!important}}@media print{html .text-primary,html[data-netbox-color-mode=dark] .text-primary,html[data-netbox-color-mode=light] .text-primary{color:#337ab7!important}}@media print{html .text-secondary,html[data-netbox-color-mode=dark] .text-secondary,html[data-netbox-color-mode=light] .text-secondary{color:#6c757d!important}}@media print{html .text-success,html[data-netbox-color-mode=dark] .text-success,html[data-netbox-color-mode=light] .text-success{color:#198754!important}}@media print{html .text-info,html[data-netbox-color-mode=dark] .text-info,html[data-netbox-color-mode=light] .text-info{color:#0dcaf0!important}}@media print{html .text-warning,html[data-netbox-color-mode=dark] .text-warning,html[data-netbox-color-mode=light] .text-warning{color:#ffc107!important}}@media print{html .text-danger,html[data-netbox-color-mode=dark] .text-danger,html[data-netbox-color-mode=light] .text-danger{color:#dc3545!important}}@media print{html .text-light,html[data-netbox-color-mode=dark] .text-light,html[data-netbox-color-mode=light] .text-light{color:#f8f9fa!important}}@media print{html .text-dark,html[data-netbox-color-mode=dark] .text-dark,html[data-netbox-color-mode=light] .text-dark{color:#212529!important}}@media print{html .text-red,html[data-netbox-color-mode=dark] .text-red,html[data-netbox-color-mode=light] .text-red{color:#dc3545!important}}@media print{html .text-yellow,html[data-netbox-color-mode=dark] .text-yellow,html[data-netbox-color-mode=light] .text-yellow{color:#ffc107!important}}@media print{html .text-green,html[data-netbox-color-mode=dark] .text-green,html[data-netbox-color-mode=light] .text-green{color:#198754!important}}@media print{html .text-blue,html[data-netbox-color-mode=dark] .text-blue,html[data-netbox-color-mode=light] .text-blue{color:#0d6efd!important}}@media print{html .text-cyan,html[data-netbox-color-mode=dark] .text-cyan,html[data-netbox-color-mode=light] .text-cyan{color:#0dcaf0!important}}@media print{html .text-indigo,html[data-netbox-color-mode=dark] .text-indigo,html[data-netbox-color-mode=light] .text-indigo{color:#6610f2!important}}@media print{html .text-purple,html[data-netbox-color-mode=dark] .text-purple,html[data-netbox-color-mode=light] .text-purple{color:#6f42c1!important}}@media print{html .text-pink,html[data-netbox-color-mode=dark] .text-pink,html[data-netbox-color-mode=light] .text-pink{color:#d63384!important}}@media print{html .text-darker,html[data-netbox-color-mode=dark] .text-darker,html[data-netbox-color-mode=light] .text-darker{color:#1b1f22!important}}@media print{html .text-darkest,html[data-netbox-color-mode=dark] .text-darkest,html[data-netbox-color-mode=light] .text-darkest{color:#171b1d!important}}@media print{html .text-gray,html[data-netbox-color-mode=dark] .text-gray,html[data-netbox-color-mode=light] .text-gray{color:#ced4da!important}}@media print{html .text-gray-100,html[data-netbox-color-mode=dark] .text-gray-100,html[data-netbox-color-mode=light] .text-gray-100{color:#f8f9fa!important}}@media print{html .text-gray-200,html[data-netbox-color-mode=dark] .text-gray-200,html[data-netbox-color-mode=light] .text-gray-200{color:#e9ecef!important}}@media print{html .text-gray-300,html[data-netbox-color-mode=dark] .text-gray-300,html[data-netbox-color-mode=light] .text-gray-300{color:#dee2e6!important}}@media print{html .text-gray-400,html[data-netbox-color-mode=dark] .text-gray-400,html[data-netbox-color-mode=light] .text-gray-400{color:#ced4da!important}}@media print{html .text-gray-500,html[data-netbox-color-mode=dark] .text-gray-500,html[data-netbox-color-mode=light] .text-gray-500{color:#adb5bd!important}}@media print{html .text-gray-600,html[data-netbox-color-mode=dark] .text-gray-600,html[data-netbox-color-mode=light] .text-gray-600{color:#6c757d!important}}@media print{html .text-gray-700,html[data-netbox-color-mode=dark] .text-gray-700,html[data-netbox-color-mode=light] .text-gray-700{color:#495057!important}}@media print{html .text-gray-800,html[data-netbox-color-mode=dark] .text-gray-800,html[data-netbox-color-mode=light] .text-gray-800{color:#343a40!important}}@media print{html .text-gray-900,html[data-netbox-color-mode=dark] .text-gray-900,html[data-netbox-color-mode=light] .text-gray-900{color:#212529!important}}@media print{html .text-red-100,html[data-netbox-color-mode=dark] .text-red-100,html[data-netbox-color-mode=light] .text-red-100{color:#f8d7da!important}}@media print{html .text-red-200,html[data-netbox-color-mode=dark] .text-red-200,html[data-netbox-color-mode=light] .text-red-200{color:#f1aeb5!important}}@media print{html .text-red-300,html[data-netbox-color-mode=dark] .text-red-300,html[data-netbox-color-mode=light] .text-red-300{color:#ea868f!important}}@media print{html .text-red-400,html[data-netbox-color-mode=dark] .text-red-400,html[data-netbox-color-mode=light] .text-red-400{color:#e35d6a!important}}@media print{html .text-red-500,html[data-netbox-color-mode=dark] .text-red-500,html[data-netbox-color-mode=light] .text-red-500{color:#dc3545!important}}@media print{html .text-red-600,html[data-netbox-color-mode=dark] .text-red-600,html[data-netbox-color-mode=light] .text-red-600{color:#b02a37!important}}@media print{html .text-red-700,html[data-netbox-color-mode=dark] .text-red-700,html[data-netbox-color-mode=light] .text-red-700{color:#842029!important}}@media print{html .text-red-800,html[data-netbox-color-mode=dark] .text-red-800,html[data-netbox-color-mode=light] .text-red-800{color:#58151c!important}}@media print{html .text-red-900,html[data-netbox-color-mode=dark] .text-red-900,html[data-netbox-color-mode=light] .text-red-900{color:#2c0b0e!important}}@media print{html .text-yellow-100,html[data-netbox-color-mode=dark] .text-yellow-100,html[data-netbox-color-mode=light] .text-yellow-100{color:#fff3cd!important}}@media print{html .text-yellow-200,html[data-netbox-color-mode=dark] .text-yellow-200,html[data-netbox-color-mode=light] .text-yellow-200{color:#ffe69c!important}}@media print{html .text-yellow-300,html[data-netbox-color-mode=dark] .text-yellow-300,html[data-netbox-color-mode=light] .text-yellow-300{color:#ffda6a!important}}@media print{html .text-yellow-400,html[data-netbox-color-mode=dark] .text-yellow-400,html[data-netbox-color-mode=light] .text-yellow-400{color:#ffcd39!important}}@media print{html .text-yellow-500,html[data-netbox-color-mode=dark] .text-yellow-500,html[data-netbox-color-mode=light] .text-yellow-500{color:#ffc107!important}}@media print{html .text-yellow-600,html[data-netbox-color-mode=dark] .text-yellow-600,html[data-netbox-color-mode=light] .text-yellow-600{color:#cc9a06!important}}@media print{html .text-yellow-700,html[data-netbox-color-mode=dark] .text-yellow-700,html[data-netbox-color-mode=light] .text-yellow-700{color:#997404!important}}@media print{html .text-yellow-800,html[data-netbox-color-mode=dark] .text-yellow-800,html[data-netbox-color-mode=light] .text-yellow-800{color:#664d03!important}}@media print{html .text-yellow-900,html[data-netbox-color-mode=dark] .text-yellow-900,html[data-netbox-color-mode=light] .text-yellow-900{color:#332701!important}}@media print{html .text-green-100,html[data-netbox-color-mode=dark] .text-green-100,html[data-netbox-color-mode=light] .text-green-100{color:#d1e7dd!important}}@media print{html .text-green-200,html[data-netbox-color-mode=dark] .text-green-200,html[data-netbox-color-mode=light] .text-green-200{color:#a3cfbb!important}}@media print{html .text-green-300,html[data-netbox-color-mode=dark] .text-green-300,html[data-netbox-color-mode=light] .text-green-300{color:#75b798!important}}@media print{html .text-green-400,html[data-netbox-color-mode=dark] .text-green-400,html[data-netbox-color-mode=light] .text-green-400{color:#479f76!important}}@media print{html .text-green-500,html[data-netbox-color-mode=dark] .text-green-500,html[data-netbox-color-mode=light] .text-green-500{color:#198754!important}}@media print{html .text-green-600,html[data-netbox-color-mode=dark] .text-green-600,html[data-netbox-color-mode=light] .text-green-600{color:#146c43!important}}@media print{html .text-green-700,html[data-netbox-color-mode=dark] .text-green-700,html[data-netbox-color-mode=light] .text-green-700{color:#0f5132!important}}@media print{html .text-green-800,html[data-netbox-color-mode=dark] .text-green-800,html[data-netbox-color-mode=light] .text-green-800{color:#0a3622!important}}@media print{html .text-green-900,html[data-netbox-color-mode=dark] .text-green-900,html[data-netbox-color-mode=light] .text-green-900{color:#051b11!important}}@media print{html .text-blue-100,html[data-netbox-color-mode=dark] .text-blue-100,html[data-netbox-color-mode=light] .text-blue-100{color:#cfe2ff!important}}@media print{html .text-blue-200,html[data-netbox-color-mode=dark] .text-blue-200,html[data-netbox-color-mode=light] .text-blue-200{color:#9ec5fe!important}}@media print{html .text-blue-300,html[data-netbox-color-mode=dark] .text-blue-300,html[data-netbox-color-mode=light] .text-blue-300{color:#6ea8fe!important}}@media print{html .text-blue-400,html[data-netbox-color-mode=dark] .text-blue-400,html[data-netbox-color-mode=light] .text-blue-400{color:#3d8bfd!important}}@media print{html .text-blue-500,html[data-netbox-color-mode=dark] .text-blue-500,html[data-netbox-color-mode=light] .text-blue-500{color:#0d6efd!important}}@media print{html .text-blue-600,html[data-netbox-color-mode=dark] .text-blue-600,html[data-netbox-color-mode=light] .text-blue-600{color:#0a58ca!important}}@media print{html .text-blue-700,html[data-netbox-color-mode=dark] .text-blue-700,html[data-netbox-color-mode=light] .text-blue-700{color:#084298!important}}@media print{html .text-blue-800,html[data-netbox-color-mode=dark] .text-blue-800,html[data-netbox-color-mode=light] .text-blue-800{color:#052c65!important}}@media print{html .text-blue-900,html[data-netbox-color-mode=dark] .text-blue-900,html[data-netbox-color-mode=light] .text-blue-900{color:#031633!important}}@media print{html .text-cyan-100,html[data-netbox-color-mode=dark] .text-cyan-100,html[data-netbox-color-mode=light] .text-cyan-100{color:#cff4fc!important}}@media print{html .text-cyan-200,html[data-netbox-color-mode=dark] .text-cyan-200,html[data-netbox-color-mode=light] .text-cyan-200{color:#9eeaf9!important}}@media print{html .text-cyan-300,html[data-netbox-color-mode=dark] .text-cyan-300,html[data-netbox-color-mode=light] .text-cyan-300{color:#6edff6!important}}@media print{html .text-cyan-400,html[data-netbox-color-mode=dark] .text-cyan-400,html[data-netbox-color-mode=light] .text-cyan-400{color:#3dd5f3!important}}@media print{html .text-cyan-500,html[data-netbox-color-mode=dark] .text-cyan-500,html[data-netbox-color-mode=light] .text-cyan-500{color:#0dcaf0!important}}@media print{html .text-cyan-600,html[data-netbox-color-mode=dark] .text-cyan-600,html[data-netbox-color-mode=light] .text-cyan-600{color:#0aa2c0!important}}@media print{html .text-cyan-700,html[data-netbox-color-mode=dark] .text-cyan-700,html[data-netbox-color-mode=light] .text-cyan-700{color:#087990!important}}@media print{html .text-cyan-800,html[data-netbox-color-mode=dark] .text-cyan-800,html[data-netbox-color-mode=light] .text-cyan-800{color:#055160!important}}@media print{html .text-cyan-900,html[data-netbox-color-mode=dark] .text-cyan-900,html[data-netbox-color-mode=light] .text-cyan-900{color:#032830!important}}@media print{html .text-indigo-100,html[data-netbox-color-mode=dark] .text-indigo-100,html[data-netbox-color-mode=light] .text-indigo-100{color:#e0cffc!important}}@media print{html .text-indigo-200,html[data-netbox-color-mode=dark] .text-indigo-200,html[data-netbox-color-mode=light] .text-indigo-200{color:#c29ffa!important}}@media print{html .text-indigo-300,html[data-netbox-color-mode=dark] .text-indigo-300,html[data-netbox-color-mode=light] .text-indigo-300{color:#a370f7!important}}@media print{html .text-indigo-400,html[data-netbox-color-mode=dark] .text-indigo-400,html[data-netbox-color-mode=light] .text-indigo-400{color:#8540f5!important}}@media print{html .text-indigo-500,html[data-netbox-color-mode=dark] .text-indigo-500,html[data-netbox-color-mode=light] .text-indigo-500{color:#6610f2!important}}@media print{html .text-indigo-600,html[data-netbox-color-mode=dark] .text-indigo-600,html[data-netbox-color-mode=light] .text-indigo-600{color:#520dc2!important}}@media print{html .text-indigo-700,html[data-netbox-color-mode=dark] .text-indigo-700,html[data-netbox-color-mode=light] .text-indigo-700{color:#3d0a91!important}}@media print{html .text-indigo-800,html[data-netbox-color-mode=dark] .text-indigo-800,html[data-netbox-color-mode=light] .text-indigo-800{color:#290661!important}}@media print{html .text-indigo-900,html[data-netbox-color-mode=dark] .text-indigo-900,html[data-netbox-color-mode=light] .text-indigo-900{color:#140330!important}}@media print{html .text-purple-100,html[data-netbox-color-mode=dark] .text-purple-100,html[data-netbox-color-mode=light] .text-purple-100{color:#e2d9f3!important}}@media print{html .text-purple-200,html[data-netbox-color-mode=dark] .text-purple-200,html[data-netbox-color-mode=light] .text-purple-200{color:#c5b3e6!important}}@media print{html .text-purple-300,html[data-netbox-color-mode=dark] .text-purple-300,html[data-netbox-color-mode=light] .text-purple-300{color:#a98eda!important}}@media print{html .text-purple-400,html[data-netbox-color-mode=dark] .text-purple-400,html[data-netbox-color-mode=light] .text-purple-400{color:#8c68cd!important}}@media print{html .text-purple-500,html[data-netbox-color-mode=dark] .text-purple-500,html[data-netbox-color-mode=light] .text-purple-500{color:#6f42c1!important}}@media print{html .text-purple-600,html[data-netbox-color-mode=dark] .text-purple-600,html[data-netbox-color-mode=light] .text-purple-600{color:#59359a!important}}@media print{html .text-purple-700,html[data-netbox-color-mode=dark] .text-purple-700,html[data-netbox-color-mode=light] .text-purple-700{color:#432874!important}}@media print{html .text-purple-800,html[data-netbox-color-mode=dark] .text-purple-800,html[data-netbox-color-mode=light] .text-purple-800{color:#2c1a4d!important}}@media print{html .text-purple-900,html[data-netbox-color-mode=dark] .text-purple-900,html[data-netbox-color-mode=light] .text-purple-900{color:#160d27!important}}@media print{html .text-pink-100,html[data-netbox-color-mode=dark] .text-pink-100,html[data-netbox-color-mode=light] .text-pink-100{color:#f7d6e6!important}}@media print{html .text-pink-200,html[data-netbox-color-mode=dark] .text-pink-200,html[data-netbox-color-mode=light] .text-pink-200{color:#efadce!important}}@media print{html .text-pink-300,html[data-netbox-color-mode=dark] .text-pink-300,html[data-netbox-color-mode=light] .text-pink-300{color:#e685b5!important}}@media print{html .text-pink-400,html[data-netbox-color-mode=dark] .text-pink-400,html[data-netbox-color-mode=light] .text-pink-400{color:#de5c9d!important}}@media print{html .text-pink-500,html[data-netbox-color-mode=dark] .text-pink-500,html[data-netbox-color-mode=light] .text-pink-500{color:#d63384!important}}@media print{html .text-pink-600,html[data-netbox-color-mode=dark] .text-pink-600,html[data-netbox-color-mode=light] .text-pink-600{color:#ab296a!important}}@media print{html .text-pink-700,html[data-netbox-color-mode=dark] .text-pink-700,html[data-netbox-color-mode=light] .text-pink-700{color:#801f4f!important}}@media print{html .text-pink-800,html[data-netbox-color-mode=dark] .text-pink-800,html[data-netbox-color-mode=light] .text-pink-800{color:#561435!important}}@media print{html .text-pink-900,html[data-netbox-color-mode=dark] .text-pink-900,html[data-netbox-color-mode=light] .text-pink-900{color:#2b0a1a!important}}@media print{html .text-white,html[data-netbox-color-mode=dark] .text-white,html[data-netbox-color-mode=light] .text-white{color:#fff!important}}@media print{html .text-body,html[data-netbox-color-mode=dark] .text-body,html[data-netbox-color-mode=light] .text-body{color:#212529!important}}@media print{html .text-muted,html[data-netbox-color-mode=dark] .text-muted,html[data-netbox-color-mode=light] .text-muted{color:#6c757d!important}}@media print{html .text-black-50,html[data-netbox-color-mode=dark] .text-black-50,html[data-netbox-color-mode=light] .text-black-50{color:#00000080!important}}@media print{html .text-white-50,html[data-netbox-color-mode=dark] .text-white-50,html[data-netbox-color-mode=light] .text-white-50{color:#ffffff80!important}}@media print{html .text-reset,html[data-netbox-color-mode=dark] .text-reset,html[data-netbox-color-mode=light] .text-reset{color:inherit!important}}@media print{html .bg-primary,html[data-netbox-color-mode=dark] .bg-primary,html[data-netbox-color-mode=light] .bg-primary{background-color:#337ab7!important}}@media print{html .bg-secondary,html[data-netbox-color-mode=dark] .bg-secondary,html[data-netbox-color-mode=light] .bg-secondary{background-color:#6c757d!important}}@media print{html .bg-success,html[data-netbox-color-mode=dark] .bg-success,html[data-netbox-color-mode=light] .bg-success{background-color:#198754!important}}@media print{html .bg-info,html[data-netbox-color-mode=dark] .bg-info,html[data-netbox-color-mode=light] .bg-info{background-color:#0dcaf0!important}}@media print{html .bg-warning,html[data-netbox-color-mode=dark] .bg-warning,html[data-netbox-color-mode=light] .bg-warning{background-color:#ffc107!important}}@media print{html .bg-danger,html[data-netbox-color-mode=dark] .bg-danger,html[data-netbox-color-mode=light] .bg-danger{background-color:#dc3545!important}}@media print{html .bg-light,html[data-netbox-color-mode=dark] .bg-light,html[data-netbox-color-mode=light] .bg-light{background-color:#f8f9fa!important}}@media print{html .bg-dark,html[data-netbox-color-mode=dark] .bg-dark,html[data-netbox-color-mode=light] .bg-dark{background-color:#212529!important}}@media print{html .bg-red,html[data-netbox-color-mode=dark] .bg-red,html[data-netbox-color-mode=light] .bg-red{background-color:#dc3545!important}}@media print{html .bg-yellow,html[data-netbox-color-mode=dark] .bg-yellow,html[data-netbox-color-mode=light] .bg-yellow{background-color:#ffc107!important}}@media print{html .bg-green,html[data-netbox-color-mode=dark] .bg-green,html[data-netbox-color-mode=light] .bg-green{background-color:#198754!important}}@media print{html .bg-blue,html[data-netbox-color-mode=dark] .bg-blue,html[data-netbox-color-mode=light] .bg-blue{background-color:#0d6efd!important}}@media print{html .bg-cyan,html[data-netbox-color-mode=dark] .bg-cyan,html[data-netbox-color-mode=light] .bg-cyan{background-color:#0dcaf0!important}}@media print{html .bg-indigo,html[data-netbox-color-mode=dark] .bg-indigo,html[data-netbox-color-mode=light] .bg-indigo{background-color:#6610f2!important}}@media print{html .bg-purple,html[data-netbox-color-mode=dark] .bg-purple,html[data-netbox-color-mode=light] .bg-purple{background-color:#6f42c1!important}}@media print{html .bg-pink,html[data-netbox-color-mode=dark] .bg-pink,html[data-netbox-color-mode=light] .bg-pink{background-color:#d63384!important}}@media print{html .bg-darker,html[data-netbox-color-mode=dark] .bg-darker,html[data-netbox-color-mode=light] .bg-darker{background-color:#1b1f22!important}}@media print{html .bg-darkest,html[data-netbox-color-mode=dark] .bg-darkest,html[data-netbox-color-mode=light] .bg-darkest{background-color:#171b1d!important}}@media print{html .bg-gray,html[data-netbox-color-mode=dark] .bg-gray,html[data-netbox-color-mode=light] .bg-gray{background-color:#ced4da!important}}@media print{html .bg-gray-100,html[data-netbox-color-mode=dark] .bg-gray-100,html[data-netbox-color-mode=light] .bg-gray-100{background-color:#f8f9fa!important}}@media print{html .bg-gray-200,html[data-netbox-color-mode=dark] .bg-gray-200,html[data-netbox-color-mode=light] .bg-gray-200{background-color:#e9ecef!important}}@media print{html .bg-gray-300,html[data-netbox-color-mode=dark] .bg-gray-300,html[data-netbox-color-mode=light] .bg-gray-300{background-color:#dee2e6!important}}@media print{html .bg-gray-400,html[data-netbox-color-mode=dark] .bg-gray-400,html[data-netbox-color-mode=light] .bg-gray-400{background-color:#ced4da!important}}@media print{html .bg-gray-500,html[data-netbox-color-mode=dark] .bg-gray-500,html[data-netbox-color-mode=light] .bg-gray-500{background-color:#adb5bd!important}}@media print{html .bg-gray-600,html[data-netbox-color-mode=dark] .bg-gray-600,html[data-netbox-color-mode=light] .bg-gray-600{background-color:#6c757d!important}}@media print{html .bg-gray-700,html[data-netbox-color-mode=dark] .bg-gray-700,html[data-netbox-color-mode=light] .bg-gray-700{background-color:#495057!important}}@media print{html .bg-gray-800,html[data-netbox-color-mode=dark] .bg-gray-800,html[data-netbox-color-mode=light] .bg-gray-800{background-color:#343a40!important}}@media print{html .bg-gray-900,html[data-netbox-color-mode=dark] .bg-gray-900,html[data-netbox-color-mode=light] .bg-gray-900{background-color:#212529!important}}@media print{html .bg-red-100,html[data-netbox-color-mode=dark] .bg-red-100,html[data-netbox-color-mode=light] .bg-red-100{background-color:#f8d7da!important}}@media print{html .bg-red-200,html[data-netbox-color-mode=dark] .bg-red-200,html[data-netbox-color-mode=light] .bg-red-200{background-color:#f1aeb5!important}}@media print{html .bg-red-300,html[data-netbox-color-mode=dark] .bg-red-300,html[data-netbox-color-mode=light] .bg-red-300{background-color:#ea868f!important}}@media print{html .bg-red-400,html[data-netbox-color-mode=dark] .bg-red-400,html[data-netbox-color-mode=light] .bg-red-400{background-color:#e35d6a!important}}@media print{html .bg-red-500,html[data-netbox-color-mode=dark] .bg-red-500,html[data-netbox-color-mode=light] .bg-red-500{background-color:#dc3545!important}}@media print{html .bg-red-600,html[data-netbox-color-mode=dark] .bg-red-600,html[data-netbox-color-mode=light] .bg-red-600{background-color:#b02a37!important}}@media print{html .bg-red-700,html[data-netbox-color-mode=dark] .bg-red-700,html[data-netbox-color-mode=light] .bg-red-700{background-color:#842029!important}}@media print{html .bg-red-800,html[data-netbox-color-mode=dark] .bg-red-800,html[data-netbox-color-mode=light] .bg-red-800{background-color:#58151c!important}}@media print{html .bg-red-900,html[data-netbox-color-mode=dark] .bg-red-900,html[data-netbox-color-mode=light] .bg-red-900{background-color:#2c0b0e!important}}@media print{html .bg-yellow-100,html[data-netbox-color-mode=dark] .bg-yellow-100,html[data-netbox-color-mode=light] .bg-yellow-100{background-color:#fff3cd!important}}@media print{html .bg-yellow-200,html[data-netbox-color-mode=dark] .bg-yellow-200,html[data-netbox-color-mode=light] .bg-yellow-200{background-color:#ffe69c!important}}@media print{html .bg-yellow-300,html[data-netbox-color-mode=dark] .bg-yellow-300,html[data-netbox-color-mode=light] .bg-yellow-300{background-color:#ffda6a!important}}@media print{html .bg-yellow-400,html[data-netbox-color-mode=dark] .bg-yellow-400,html[data-netbox-color-mode=light] .bg-yellow-400{background-color:#ffcd39!important}}@media print{html .bg-yellow-500,html[data-netbox-color-mode=dark] .bg-yellow-500,html[data-netbox-color-mode=light] .bg-yellow-500{background-color:#ffc107!important}}@media print{html .bg-yellow-600,html[data-netbox-color-mode=dark] .bg-yellow-600,html[data-netbox-color-mode=light] .bg-yellow-600{background-color:#cc9a06!important}}@media print{html .bg-yellow-700,html[data-netbox-color-mode=dark] .bg-yellow-700,html[data-netbox-color-mode=light] .bg-yellow-700{background-color:#997404!important}}@media print{html .bg-yellow-800,html[data-netbox-color-mode=dark] .bg-yellow-800,html[data-netbox-color-mode=light] .bg-yellow-800{background-color:#664d03!important}}@media print{html .bg-yellow-900,html[data-netbox-color-mode=dark] .bg-yellow-900,html[data-netbox-color-mode=light] .bg-yellow-900{background-color:#332701!important}}@media print{html .bg-green-100,html[data-netbox-color-mode=dark] .bg-green-100,html[data-netbox-color-mode=light] .bg-green-100{background-color:#d1e7dd!important}}@media print{html .bg-green-200,html[data-netbox-color-mode=dark] .bg-green-200,html[data-netbox-color-mode=light] .bg-green-200{background-color:#a3cfbb!important}}@media print{html .bg-green-300,html[data-netbox-color-mode=dark] .bg-green-300,html[data-netbox-color-mode=light] .bg-green-300{background-color:#75b798!important}}@media print{html .bg-green-400,html[data-netbox-color-mode=dark] .bg-green-400,html[data-netbox-color-mode=light] .bg-green-400{background-color:#479f76!important}}@media print{html .bg-green-500,html[data-netbox-color-mode=dark] .bg-green-500,html[data-netbox-color-mode=light] .bg-green-500{background-color:#198754!important}}@media print{html .bg-green-600,html[data-netbox-color-mode=dark] .bg-green-600,html[data-netbox-color-mode=light] .bg-green-600{background-color:#146c43!important}}@media print{html .bg-green-700,html[data-netbox-color-mode=dark] .bg-green-700,html[data-netbox-color-mode=light] .bg-green-700{background-color:#0f5132!important}}@media print{html .bg-green-800,html[data-netbox-color-mode=dark] .bg-green-800,html[data-netbox-color-mode=light] .bg-green-800{background-color:#0a3622!important}}@media print{html .bg-green-900,html[data-netbox-color-mode=dark] .bg-green-900,html[data-netbox-color-mode=light] .bg-green-900{background-color:#051b11!important}}@media print{html .bg-blue-100,html[data-netbox-color-mode=dark] .bg-blue-100,html[data-netbox-color-mode=light] .bg-blue-100{background-color:#cfe2ff!important}}@media print{html .bg-blue-200,html[data-netbox-color-mode=dark] .bg-blue-200,html[data-netbox-color-mode=light] .bg-blue-200{background-color:#9ec5fe!important}}@media print{html .bg-blue-300,html[data-netbox-color-mode=dark] .bg-blue-300,html[data-netbox-color-mode=light] .bg-blue-300{background-color:#6ea8fe!important}}@media print{html .bg-blue-400,html[data-netbox-color-mode=dark] .bg-blue-400,html[data-netbox-color-mode=light] .bg-blue-400{background-color:#3d8bfd!important}}@media print{html .bg-blue-500,html[data-netbox-color-mode=dark] .bg-blue-500,html[data-netbox-color-mode=light] .bg-blue-500{background-color:#0d6efd!important}}@media print{html .bg-blue-600,html[data-netbox-color-mode=dark] .bg-blue-600,html[data-netbox-color-mode=light] .bg-blue-600{background-color:#0a58ca!important}}@media print{html .bg-blue-700,html[data-netbox-color-mode=dark] .bg-blue-700,html[data-netbox-color-mode=light] .bg-blue-700{background-color:#084298!important}}@media print{html .bg-blue-800,html[data-netbox-color-mode=dark] .bg-blue-800,html[data-netbox-color-mode=light] .bg-blue-800{background-color:#052c65!important}}@media print{html .bg-blue-900,html[data-netbox-color-mode=dark] .bg-blue-900,html[data-netbox-color-mode=light] .bg-blue-900{background-color:#031633!important}}@media print{html .bg-cyan-100,html[data-netbox-color-mode=dark] .bg-cyan-100,html[data-netbox-color-mode=light] .bg-cyan-100{background-color:#cff4fc!important}}@media print{html .bg-cyan-200,html[data-netbox-color-mode=dark] .bg-cyan-200,html[data-netbox-color-mode=light] .bg-cyan-200{background-color:#9eeaf9!important}}@media print{html .bg-cyan-300,html[data-netbox-color-mode=dark] .bg-cyan-300,html[data-netbox-color-mode=light] .bg-cyan-300{background-color:#6edff6!important}}@media print{html .bg-cyan-400,html[data-netbox-color-mode=dark] .bg-cyan-400,html[data-netbox-color-mode=light] .bg-cyan-400{background-color:#3dd5f3!important}}@media print{html .bg-cyan-500,html[data-netbox-color-mode=dark] .bg-cyan-500,html[data-netbox-color-mode=light] .bg-cyan-500{background-color:#0dcaf0!important}}@media print{html .bg-cyan-600,html[data-netbox-color-mode=dark] .bg-cyan-600,html[data-netbox-color-mode=light] .bg-cyan-600{background-color:#0aa2c0!important}}@media print{html .bg-cyan-700,html[data-netbox-color-mode=dark] .bg-cyan-700,html[data-netbox-color-mode=light] .bg-cyan-700{background-color:#087990!important}}@media print{html .bg-cyan-800,html[data-netbox-color-mode=dark] .bg-cyan-800,html[data-netbox-color-mode=light] .bg-cyan-800{background-color:#055160!important}}@media print{html .bg-cyan-900,html[data-netbox-color-mode=dark] .bg-cyan-900,html[data-netbox-color-mode=light] .bg-cyan-900{background-color:#032830!important}}@media print{html .bg-indigo-100,html[data-netbox-color-mode=dark] .bg-indigo-100,html[data-netbox-color-mode=light] .bg-indigo-100{background-color:#e0cffc!important}}@media print{html .bg-indigo-200,html[data-netbox-color-mode=dark] .bg-indigo-200,html[data-netbox-color-mode=light] .bg-indigo-200{background-color:#c29ffa!important}}@media print{html .bg-indigo-300,html[data-netbox-color-mode=dark] .bg-indigo-300,html[data-netbox-color-mode=light] .bg-indigo-300{background-color:#a370f7!important}}@media print{html .bg-indigo-400,html[data-netbox-color-mode=dark] .bg-indigo-400,html[data-netbox-color-mode=light] .bg-indigo-400{background-color:#8540f5!important}}@media print{html .bg-indigo-500,html[data-netbox-color-mode=dark] .bg-indigo-500,html[data-netbox-color-mode=light] .bg-indigo-500{background-color:#6610f2!important}}@media print{html .bg-indigo-600,html[data-netbox-color-mode=dark] .bg-indigo-600,html[data-netbox-color-mode=light] .bg-indigo-600{background-color:#520dc2!important}}@media print{html .bg-indigo-700,html[data-netbox-color-mode=dark] .bg-indigo-700,html[data-netbox-color-mode=light] .bg-indigo-700{background-color:#3d0a91!important}}@media print{html .bg-indigo-800,html[data-netbox-color-mode=dark] .bg-indigo-800,html[data-netbox-color-mode=light] .bg-indigo-800{background-color:#290661!important}}@media print{html .bg-indigo-900,html[data-netbox-color-mode=dark] .bg-indigo-900,html[data-netbox-color-mode=light] .bg-indigo-900{background-color:#140330!important}}@media print{html .bg-purple-100,html[data-netbox-color-mode=dark] .bg-purple-100,html[data-netbox-color-mode=light] .bg-purple-100{background-color:#e2d9f3!important}}@media print{html .bg-purple-200,html[data-netbox-color-mode=dark] .bg-purple-200,html[data-netbox-color-mode=light] .bg-purple-200{background-color:#c5b3e6!important}}@media print{html .bg-purple-300,html[data-netbox-color-mode=dark] .bg-purple-300,html[data-netbox-color-mode=light] .bg-purple-300{background-color:#a98eda!important}}@media print{html .bg-purple-400,html[data-netbox-color-mode=dark] .bg-purple-400,html[data-netbox-color-mode=light] .bg-purple-400{background-color:#8c68cd!important}}@media print{html .bg-purple-500,html[data-netbox-color-mode=dark] .bg-purple-500,html[data-netbox-color-mode=light] .bg-purple-500{background-color:#6f42c1!important}}@media print{html .bg-purple-600,html[data-netbox-color-mode=dark] .bg-purple-600,html[data-netbox-color-mode=light] .bg-purple-600{background-color:#59359a!important}}@media print{html .bg-purple-700,html[data-netbox-color-mode=dark] .bg-purple-700,html[data-netbox-color-mode=light] .bg-purple-700{background-color:#432874!important}}@media print{html .bg-purple-800,html[data-netbox-color-mode=dark] .bg-purple-800,html[data-netbox-color-mode=light] .bg-purple-800{background-color:#2c1a4d!important}}@media print{html .bg-purple-900,html[data-netbox-color-mode=dark] .bg-purple-900,html[data-netbox-color-mode=light] .bg-purple-900{background-color:#160d27!important}}@media print{html .bg-pink-100,html[data-netbox-color-mode=dark] .bg-pink-100,html[data-netbox-color-mode=light] .bg-pink-100{background-color:#f7d6e6!important}}@media print{html .bg-pink-200,html[data-netbox-color-mode=dark] .bg-pink-200,html[data-netbox-color-mode=light] .bg-pink-200{background-color:#efadce!important}}@media print{html .bg-pink-300,html[data-netbox-color-mode=dark] .bg-pink-300,html[data-netbox-color-mode=light] .bg-pink-300{background-color:#e685b5!important}}@media print{html .bg-pink-400,html[data-netbox-color-mode=dark] .bg-pink-400,html[data-netbox-color-mode=light] .bg-pink-400{background-color:#de5c9d!important}}@media print{html .bg-pink-500,html[data-netbox-color-mode=dark] .bg-pink-500,html[data-netbox-color-mode=light] .bg-pink-500{background-color:#d63384!important}}@media print{html .bg-pink-600,html[data-netbox-color-mode=dark] .bg-pink-600,html[data-netbox-color-mode=light] .bg-pink-600{background-color:#ab296a!important}}@media print{html .bg-pink-700,html[data-netbox-color-mode=dark] .bg-pink-700,html[data-netbox-color-mode=light] .bg-pink-700{background-color:#801f4f!important}}@media print{html .bg-pink-800,html[data-netbox-color-mode=dark] .bg-pink-800,html[data-netbox-color-mode=light] .bg-pink-800{background-color:#561435!important}}@media print{html .bg-pink-900,html[data-netbox-color-mode=dark] .bg-pink-900,html[data-netbox-color-mode=light] .bg-pink-900{background-color:#2b0a1a!important}}@media print{html .bg-body,html[data-netbox-color-mode=dark] .bg-body,html[data-netbox-color-mode=light] .bg-body{background-color:#fff!important}}@media print{html .bg-white,html[data-netbox-color-mode=dark] .bg-white,html[data-netbox-color-mode=light] .bg-white{background-color:#fff!important}}@media print{html .bg-transparent,html[data-netbox-color-mode=dark] .bg-transparent,html[data-netbox-color-mode=light] .bg-transparent{background-color:transparent!important}}@media print{html .bg-gradient,html[data-netbox-color-mode=dark] .bg-gradient,html[data-netbox-color-mode=light] .bg-gradient{background-image:var(--bs-gradient)!important}}@media print{html .user-select-all,html[data-netbox-color-mode=dark] .user-select-all,html[data-netbox-color-mode=light] .user-select-all{user-select:all!important}}@media print{html .user-select-auto,html[data-netbox-color-mode=dark] .user-select-auto,html[data-netbox-color-mode=light] .user-select-auto{user-select:auto!important}}@media print{html .user-select-none,html[data-netbox-color-mode=dark] .user-select-none,html[data-netbox-color-mode=light] .user-select-none{user-select:none!important}}@media print{html .pe-none,html[data-netbox-color-mode=dark] .pe-none,html[data-netbox-color-mode=light] .pe-none{pointer-events:none!important}}@media print{html .pe-auto,html[data-netbox-color-mode=dark] .pe-auto,html[data-netbox-color-mode=light] .pe-auto{pointer-events:auto!important}}@media print{html .rounded,html[data-netbox-color-mode=dark] .rounded,html[data-netbox-color-mode=light] .rounded{border-radius:.375rem!important}}@media print{html .rounded-0,html[data-netbox-color-mode=dark] .rounded-0,html[data-netbox-color-mode=light] .rounded-0{border-radius:0!important}}@media print{html .rounded-1,html[data-netbox-color-mode=dark] .rounded-1,html[data-netbox-color-mode=light] .rounded-1{border-radius:.375rem!important}}@media print{html .rounded-2,html[data-netbox-color-mode=dark] .rounded-2,html[data-netbox-color-mode=light] .rounded-2{border-radius:.375rem!important}}@media print{html .rounded-3,html[data-netbox-color-mode=dark] .rounded-3,html[data-netbox-color-mode=light] .rounded-3{border-radius:.75rem!important}}@media print{html .rounded-circle,html[data-netbox-color-mode=dark] .rounded-circle,html[data-netbox-color-mode=light] .rounded-circle{border-radius:50%!important}}@media print{html .rounded-pill,html[data-netbox-color-mode=dark] .rounded-pill,html[data-netbox-color-mode=light] .rounded-pill{border-radius:50rem!important}}@media print{html .rounded-top,html[data-netbox-color-mode=dark] .rounded-top,html[data-netbox-color-mode=light] .rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}}@media print{html .rounded-end,html[data-netbox-color-mode=dark] .rounded-end,html[data-netbox-color-mode=light] .rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}}@media print{html .rounded-bottom,html[data-netbox-color-mode=dark] .rounded-bottom,html[data-netbox-color-mode=light] .rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}}@media print{html .rounded-start,html[data-netbox-color-mode=dark] .rounded-start,html[data-netbox-color-mode=light] .rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}}@media print{html .visible,html[data-netbox-color-mode=dark] .visible,html[data-netbox-color-mode=light] .visible{visibility:visible!important}}@media print{html .invisible,html[data-netbox-color-mode=dark] .invisible,html[data-netbox-color-mode=light] .invisible{visibility:hidden!important}}@media print and (min-width: 576px){html .float-sm-start,html[data-netbox-color-mode=dark] .float-sm-start,html[data-netbox-color-mode=light] .float-sm-start{float:left!important}html .float-sm-end,html[data-netbox-color-mode=dark] .float-sm-end,html[data-netbox-color-mode=light] .float-sm-end{float:right!important}html .float-sm-none,html[data-netbox-color-mode=dark] .float-sm-none,html[data-netbox-color-mode=light] .float-sm-none{float:none!important}html .d-sm-inline,html[data-netbox-color-mode=dark] .d-sm-inline,html[data-netbox-color-mode=light] .d-sm-inline{display:inline!important}html .d-sm-inline-block,html[data-netbox-color-mode=dark] .d-sm-inline-block,html[data-netbox-color-mode=light] .d-sm-inline-block{display:inline-block!important}html .d-sm-block,html[data-netbox-color-mode=dark] .d-sm-block,html[data-netbox-color-mode=light] .d-sm-block{display:block!important}html .d-sm-grid,html[data-netbox-color-mode=dark] .d-sm-grid,html[data-netbox-color-mode=light] .d-sm-grid{display:grid!important}html .d-sm-table,html[data-netbox-color-mode=dark] .d-sm-table,html[data-netbox-color-mode=light] .d-sm-table{display:table!important}html .d-sm-table-row,html[data-netbox-color-mode=dark] .d-sm-table-row,html[data-netbox-color-mode=light] .d-sm-table-row{display:table-row!important}html .d-sm-table-cell,html[data-netbox-color-mode=dark] .d-sm-table-cell,html[data-netbox-color-mode=light] .d-sm-table-cell{display:table-cell!important}html .d-sm-flex,html[data-netbox-color-mode=dark] .d-sm-flex,html[data-netbox-color-mode=light] .d-sm-flex{display:flex!important}html .d-sm-inline-flex,html[data-netbox-color-mode=dark] .d-sm-inline-flex,html[data-netbox-color-mode=light] .d-sm-inline-flex{display:inline-flex!important}html .d-sm-none,html[data-netbox-color-mode=dark] .d-sm-none,html[data-netbox-color-mode=light] .d-sm-none{display:none!important}html .flex-sm-fill,html[data-netbox-color-mode=dark] .flex-sm-fill,html[data-netbox-color-mode=light] .flex-sm-fill{flex:1 1 auto!important}html .flex-sm-row,html[data-netbox-color-mode=dark] .flex-sm-row,html[data-netbox-color-mode=light] .flex-sm-row{flex-direction:row!important}html .flex-sm-column,html[data-netbox-color-mode=dark] .flex-sm-column,html[data-netbox-color-mode=light] .flex-sm-column{flex-direction:column!important}html .flex-sm-row-reverse,html[data-netbox-color-mode=dark] .flex-sm-row-reverse,html[data-netbox-color-mode=light] .flex-sm-row-reverse{flex-direction:row-reverse!important}html .flex-sm-column-reverse,html[data-netbox-color-mode=dark] .flex-sm-column-reverse,html[data-netbox-color-mode=light] .flex-sm-column-reverse{flex-direction:column-reverse!important}html .flex-sm-grow-0,html[data-netbox-color-mode=dark] .flex-sm-grow-0,html[data-netbox-color-mode=light] .flex-sm-grow-0{flex-grow:0!important}html .flex-sm-grow-1,html[data-netbox-color-mode=dark] .flex-sm-grow-1,html[data-netbox-color-mode=light] .flex-sm-grow-1{flex-grow:1!important}html .flex-sm-shrink-0,html[data-netbox-color-mode=dark] .flex-sm-shrink-0,html[data-netbox-color-mode=light] .flex-sm-shrink-0{flex-shrink:0!important}html .flex-sm-shrink-1,html[data-netbox-color-mode=dark] .flex-sm-shrink-1,html[data-netbox-color-mode=light] .flex-sm-shrink-1{flex-shrink:1!important}html .flex-sm-wrap,html[data-netbox-color-mode=dark] .flex-sm-wrap,html[data-netbox-color-mode=light] .flex-sm-wrap{flex-wrap:wrap!important}html .flex-sm-nowrap,html[data-netbox-color-mode=dark] .flex-sm-nowrap,html[data-netbox-color-mode=light] .flex-sm-nowrap{flex-wrap:nowrap!important}html .flex-sm-wrap-reverse,html[data-netbox-color-mode=dark] .flex-sm-wrap-reverse,html[data-netbox-color-mode=light] .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-sm-0,html[data-netbox-color-mode=dark] .gap-sm-0,html[data-netbox-color-mode=light] .gap-sm-0{gap:0!important}html .gap-sm-1,html[data-netbox-color-mode=dark] .gap-sm-1,html[data-netbox-color-mode=light] .gap-sm-1{gap:.25rem!important}html .gap-sm-2,html[data-netbox-color-mode=dark] .gap-sm-2,html[data-netbox-color-mode=light] .gap-sm-2{gap:.5rem!important}html .gap-sm-3,html[data-netbox-color-mode=dark] .gap-sm-3,html[data-netbox-color-mode=light] .gap-sm-3{gap:1rem!important}html .gap-sm-4,html[data-netbox-color-mode=dark] .gap-sm-4,html[data-netbox-color-mode=light] .gap-sm-4{gap:1.5rem!important}html .gap-sm-5,html[data-netbox-color-mode=dark] .gap-sm-5,html[data-netbox-color-mode=light] .gap-sm-5{gap:3rem!important}html .justify-content-sm-start,html[data-netbox-color-mode=dark] .justify-content-sm-start,html[data-netbox-color-mode=light] .justify-content-sm-start{justify-content:flex-start!important}html .justify-content-sm-end,html[data-netbox-color-mode=dark] .justify-content-sm-end,html[data-netbox-color-mode=light] .justify-content-sm-end{justify-content:flex-end!important}html .justify-content-sm-center,html[data-netbox-color-mode=dark] .justify-content-sm-center,html[data-netbox-color-mode=light] .justify-content-sm-center{justify-content:center!important}html .justify-content-sm-between,html[data-netbox-color-mode=dark] .justify-content-sm-between,html[data-netbox-color-mode=light] .justify-content-sm-between{justify-content:space-between!important}html .justify-content-sm-around,html[data-netbox-color-mode=dark] .justify-content-sm-around,html[data-netbox-color-mode=light] .justify-content-sm-around{justify-content:space-around!important}html .justify-content-sm-evenly,html[data-netbox-color-mode=dark] .justify-content-sm-evenly,html[data-netbox-color-mode=light] .justify-content-sm-evenly{justify-content:space-evenly!important}html .align-items-sm-start,html[data-netbox-color-mode=dark] .align-items-sm-start,html[data-netbox-color-mode=light] .align-items-sm-start{align-items:flex-start!important}html .align-items-sm-end,html[data-netbox-color-mode=dark] .align-items-sm-end,html[data-netbox-color-mode=light] .align-items-sm-end{align-items:flex-end!important}html .align-items-sm-center,html[data-netbox-color-mode=dark] .align-items-sm-center,html[data-netbox-color-mode=light] .align-items-sm-center{align-items:center!important}html .align-items-sm-baseline,html[data-netbox-color-mode=dark] .align-items-sm-baseline,html[data-netbox-color-mode=light] .align-items-sm-baseline{align-items:baseline!important}html .align-items-sm-stretch,html[data-netbox-color-mode=dark] .align-items-sm-stretch,html[data-netbox-color-mode=light] .align-items-sm-stretch{align-items:stretch!important}html .align-content-sm-start,html[data-netbox-color-mode=dark] .align-content-sm-start,html[data-netbox-color-mode=light] .align-content-sm-start{align-content:flex-start!important}html .align-content-sm-end,html[data-netbox-color-mode=dark] .align-content-sm-end,html[data-netbox-color-mode=light] .align-content-sm-end{align-content:flex-end!important}html .align-content-sm-center,html[data-netbox-color-mode=dark] .align-content-sm-center,html[data-netbox-color-mode=light] .align-content-sm-center{align-content:center!important}html .align-content-sm-between,html[data-netbox-color-mode=dark] .align-content-sm-between,html[data-netbox-color-mode=light] .align-content-sm-between{align-content:space-between!important}html .align-content-sm-around,html[data-netbox-color-mode=dark] .align-content-sm-around,html[data-netbox-color-mode=light] .align-content-sm-around{align-content:space-around!important}html .align-content-sm-stretch,html[data-netbox-color-mode=dark] .align-content-sm-stretch,html[data-netbox-color-mode=light] .align-content-sm-stretch{align-content:stretch!important}html .align-self-sm-auto,html[data-netbox-color-mode=dark] .align-self-sm-auto,html[data-netbox-color-mode=light] .align-self-sm-auto{align-self:auto!important}html .align-self-sm-start,html[data-netbox-color-mode=dark] .align-self-sm-start,html[data-netbox-color-mode=light] .align-self-sm-start{align-self:flex-start!important}html .align-self-sm-end,html[data-netbox-color-mode=dark] .align-self-sm-end,html[data-netbox-color-mode=light] .align-self-sm-end{align-self:flex-end!important}html .align-self-sm-center,html[data-netbox-color-mode=dark] .align-self-sm-center,html[data-netbox-color-mode=light] .align-self-sm-center{align-self:center!important}html .align-self-sm-baseline,html[data-netbox-color-mode=dark] .align-self-sm-baseline,html[data-netbox-color-mode=light] .align-self-sm-baseline{align-self:baseline!important}html .align-self-sm-stretch,html[data-netbox-color-mode=dark] .align-self-sm-stretch,html[data-netbox-color-mode=light] .align-self-sm-stretch{align-self:stretch!important}html .order-sm-first,html[data-netbox-color-mode=dark] .order-sm-first,html[data-netbox-color-mode=light] .order-sm-first{order:-1!important}html .order-sm-0,html[data-netbox-color-mode=dark] .order-sm-0,html[data-netbox-color-mode=light] .order-sm-0{order:0!important}html .order-sm-1,html[data-netbox-color-mode=dark] .order-sm-1,html[data-netbox-color-mode=light] .order-sm-1{order:1!important}html .order-sm-2,html[data-netbox-color-mode=dark] .order-sm-2,html[data-netbox-color-mode=light] .order-sm-2{order:2!important}html .order-sm-3,html[data-netbox-color-mode=dark] .order-sm-3,html[data-netbox-color-mode=light] .order-sm-3{order:3!important}html .order-sm-4,html[data-netbox-color-mode=dark] .order-sm-4,html[data-netbox-color-mode=light] .order-sm-4{order:4!important}html .order-sm-5,html[data-netbox-color-mode=dark] .order-sm-5,html[data-netbox-color-mode=light] .order-sm-5{order:5!important}html .order-sm-last,html[data-netbox-color-mode=dark] .order-sm-last,html[data-netbox-color-mode=light] .order-sm-last{order:6!important}html .m-sm-0,html[data-netbox-color-mode=dark] .m-sm-0,html[data-netbox-color-mode=light] .m-sm-0{margin:0!important}html .m-sm-1,html[data-netbox-color-mode=dark] .m-sm-1,html[data-netbox-color-mode=light] .m-sm-1{margin:.25rem!important}html .m-sm-2,html[data-netbox-color-mode=dark] .m-sm-2,html[data-netbox-color-mode=light] .m-sm-2{margin:.5rem!important}html .m-sm-3,html[data-netbox-color-mode=dark] .m-sm-3,html[data-netbox-color-mode=light] .m-sm-3{margin:1rem!important}html .m-sm-4,html[data-netbox-color-mode=dark] .m-sm-4,html[data-netbox-color-mode=light] .m-sm-4{margin:1.5rem!important}html .m-sm-5,html[data-netbox-color-mode=dark] .m-sm-5,html[data-netbox-color-mode=light] .m-sm-5{margin:3rem!important}html .m-sm-auto,html[data-netbox-color-mode=dark] .m-sm-auto,html[data-netbox-color-mode=light] .m-sm-auto{margin:auto!important}html .mx-sm-0,html[data-netbox-color-mode=dark] .mx-sm-0,html[data-netbox-color-mode=light] .mx-sm-0{margin-right:0!important;margin-left:0!important}html .mx-sm-1,html[data-netbox-color-mode=dark] .mx-sm-1,html[data-netbox-color-mode=light] .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-sm-2,html[data-netbox-color-mode=dark] .mx-sm-2,html[data-netbox-color-mode=light] .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-sm-3,html[data-netbox-color-mode=dark] .mx-sm-3,html[data-netbox-color-mode=light] .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-sm-4,html[data-netbox-color-mode=dark] .mx-sm-4,html[data-netbox-color-mode=light] .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-sm-5,html[data-netbox-color-mode=dark] .mx-sm-5,html[data-netbox-color-mode=light] .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-sm-auto,html[data-netbox-color-mode=dark] .mx-sm-auto,html[data-netbox-color-mode=light] .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}html .my-sm-0,html[data-netbox-color-mode=dark] .my-sm-0,html[data-netbox-color-mode=light] .my-sm-0{margin-top:0!important;margin-bottom:0!important}html .my-sm-1,html[data-netbox-color-mode=dark] .my-sm-1,html[data-netbox-color-mode=light] .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-sm-2,html[data-netbox-color-mode=dark] .my-sm-2,html[data-netbox-color-mode=light] .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-sm-3,html[data-netbox-color-mode=dark] .my-sm-3,html[data-netbox-color-mode=light] .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-sm-4,html[data-netbox-color-mode=dark] .my-sm-4,html[data-netbox-color-mode=light] .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-sm-5,html[data-netbox-color-mode=dark] .my-sm-5,html[data-netbox-color-mode=light] .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-sm-auto,html[data-netbox-color-mode=dark] .my-sm-auto,html[data-netbox-color-mode=light] .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-sm-0,html[data-netbox-color-mode=dark] .mt-sm-0,html[data-netbox-color-mode=light] .mt-sm-0{margin-top:0!important}html .mt-sm-1,html[data-netbox-color-mode=dark] .mt-sm-1,html[data-netbox-color-mode=light] .mt-sm-1{margin-top:.25rem!important}html .mt-sm-2,html[data-netbox-color-mode=dark] .mt-sm-2,html[data-netbox-color-mode=light] .mt-sm-2{margin-top:.5rem!important}html .mt-sm-3,html[data-netbox-color-mode=dark] .mt-sm-3,html[data-netbox-color-mode=light] .mt-sm-3{margin-top:1rem!important}html .mt-sm-4,html[data-netbox-color-mode=dark] .mt-sm-4,html[data-netbox-color-mode=light] .mt-sm-4{margin-top:1.5rem!important}html .mt-sm-5,html[data-netbox-color-mode=dark] .mt-sm-5,html[data-netbox-color-mode=light] .mt-sm-5{margin-top:3rem!important}html .mt-sm-auto,html[data-netbox-color-mode=dark] .mt-sm-auto,html[data-netbox-color-mode=light] .mt-sm-auto{margin-top:auto!important}html .me-sm-0,html[data-netbox-color-mode=dark] .me-sm-0,html[data-netbox-color-mode=light] .me-sm-0{margin-right:0!important}html .me-sm-1,html[data-netbox-color-mode=dark] .me-sm-1,html[data-netbox-color-mode=light] .me-sm-1{margin-right:.25rem!important}html .me-sm-2,html[data-netbox-color-mode=dark] .me-sm-2,html[data-netbox-color-mode=light] .me-sm-2{margin-right:.5rem!important}html .me-sm-3,html[data-netbox-color-mode=dark] .me-sm-3,html[data-netbox-color-mode=light] .me-sm-3{margin-right:1rem!important}html .me-sm-4,html[data-netbox-color-mode=dark] .me-sm-4,html[data-netbox-color-mode=light] .me-sm-4{margin-right:1.5rem!important}html .me-sm-5,html[data-netbox-color-mode=dark] .me-sm-5,html[data-netbox-color-mode=light] .me-sm-5{margin-right:3rem!important}html .me-sm-auto,html[data-netbox-color-mode=dark] .me-sm-auto,html[data-netbox-color-mode=light] .me-sm-auto{margin-right:auto!important}html .mb-sm-0,html[data-netbox-color-mode=dark] .mb-sm-0,html[data-netbox-color-mode=light] .mb-sm-0{margin-bottom:0!important}html .mb-sm-1,html[data-netbox-color-mode=dark] .mb-sm-1,html[data-netbox-color-mode=light] .mb-sm-1{margin-bottom:.25rem!important}html .mb-sm-2,html[data-netbox-color-mode=dark] .mb-sm-2,html[data-netbox-color-mode=light] .mb-sm-2{margin-bottom:.5rem!important}html .mb-sm-3,html[data-netbox-color-mode=dark] .mb-sm-3,html[data-netbox-color-mode=light] .mb-sm-3{margin-bottom:1rem!important}html .mb-sm-4,html[data-netbox-color-mode=dark] .mb-sm-4,html[data-netbox-color-mode=light] .mb-sm-4{margin-bottom:1.5rem!important}html .mb-sm-5,html[data-netbox-color-mode=dark] .mb-sm-5,html[data-netbox-color-mode=light] .mb-sm-5{margin-bottom:3rem!important}html .mb-sm-auto,html[data-netbox-color-mode=dark] .mb-sm-auto,html[data-netbox-color-mode=light] .mb-sm-auto{margin-bottom:auto!important}html .ms-sm-0,html[data-netbox-color-mode=dark] .ms-sm-0,html[data-netbox-color-mode=light] .ms-sm-0{margin-left:0!important}html .ms-sm-1,html[data-netbox-color-mode=dark] .ms-sm-1,html[data-netbox-color-mode=light] .ms-sm-1{margin-left:.25rem!important}html .ms-sm-2,html[data-netbox-color-mode=dark] .ms-sm-2,html[data-netbox-color-mode=light] .ms-sm-2{margin-left:.5rem!important}html .ms-sm-3,html[data-netbox-color-mode=dark] .ms-sm-3,html[data-netbox-color-mode=light] .ms-sm-3{margin-left:1rem!important}html .ms-sm-4,html[data-netbox-color-mode=dark] .ms-sm-4,html[data-netbox-color-mode=light] .ms-sm-4{margin-left:1.5rem!important}html .ms-sm-5,html[data-netbox-color-mode=dark] .ms-sm-5,html[data-netbox-color-mode=light] .ms-sm-5{margin-left:3rem!important}html .ms-sm-auto,html[data-netbox-color-mode=dark] .ms-sm-auto,html[data-netbox-color-mode=light] .ms-sm-auto{margin-left:auto!important}html .p-sm-0,html[data-netbox-color-mode=dark] .p-sm-0,html[data-netbox-color-mode=light] .p-sm-0{padding:0!important}html .p-sm-1,html[data-netbox-color-mode=dark] .p-sm-1,html[data-netbox-color-mode=light] .p-sm-1{padding:.25rem!important}html .p-sm-2,html[data-netbox-color-mode=dark] .p-sm-2,html[data-netbox-color-mode=light] .p-sm-2{padding:.5rem!important}html .p-sm-3,html[data-netbox-color-mode=dark] .p-sm-3,html[data-netbox-color-mode=light] .p-sm-3{padding:1rem!important}html .p-sm-4,html[data-netbox-color-mode=dark] .p-sm-4,html[data-netbox-color-mode=light] .p-sm-4{padding:1.5rem!important}html .p-sm-5,html[data-netbox-color-mode=dark] .p-sm-5,html[data-netbox-color-mode=light] .p-sm-5{padding:3rem!important}html .px-sm-0,html[data-netbox-color-mode=dark] .px-sm-0,html[data-netbox-color-mode=light] .px-sm-0{padding-right:0!important;padding-left:0!important}html .px-sm-1,html[data-netbox-color-mode=dark] .px-sm-1,html[data-netbox-color-mode=light] .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-sm-2,html[data-netbox-color-mode=dark] .px-sm-2,html[data-netbox-color-mode=light] .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-sm-3,html[data-netbox-color-mode=dark] .px-sm-3,html[data-netbox-color-mode=light] .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}html .px-sm-4,html[data-netbox-color-mode=dark] .px-sm-4,html[data-netbox-color-mode=light] .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-sm-5,html[data-netbox-color-mode=dark] .px-sm-5,html[data-netbox-color-mode=light] .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}html .py-sm-0,html[data-netbox-color-mode=dark] .py-sm-0,html[data-netbox-color-mode=light] .py-sm-0{padding-top:0!important;padding-bottom:0!important}html .py-sm-1,html[data-netbox-color-mode=dark] .py-sm-1,html[data-netbox-color-mode=light] .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-sm-2,html[data-netbox-color-mode=dark] .py-sm-2,html[data-netbox-color-mode=light] .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-sm-3,html[data-netbox-color-mode=dark] .py-sm-3,html[data-netbox-color-mode=light] .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-sm-4,html[data-netbox-color-mode=dark] .py-sm-4,html[data-netbox-color-mode=light] .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-sm-5,html[data-netbox-color-mode=dark] .py-sm-5,html[data-netbox-color-mode=light] .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-sm-0,html[data-netbox-color-mode=dark] .pt-sm-0,html[data-netbox-color-mode=light] .pt-sm-0{padding-top:0!important}html .pt-sm-1,html[data-netbox-color-mode=dark] .pt-sm-1,html[data-netbox-color-mode=light] .pt-sm-1{padding-top:.25rem!important}html .pt-sm-2,html[data-netbox-color-mode=dark] .pt-sm-2,html[data-netbox-color-mode=light] .pt-sm-2{padding-top:.5rem!important}html .pt-sm-3,html[data-netbox-color-mode=dark] .pt-sm-3,html[data-netbox-color-mode=light] .pt-sm-3{padding-top:1rem!important}html .pt-sm-4,html[data-netbox-color-mode=dark] .pt-sm-4,html[data-netbox-color-mode=light] .pt-sm-4{padding-top:1.5rem!important}html .pt-sm-5,html[data-netbox-color-mode=dark] .pt-sm-5,html[data-netbox-color-mode=light] .pt-sm-5{padding-top:3rem!important}html .pe-sm-0,html[data-netbox-color-mode=dark] .pe-sm-0,html[data-netbox-color-mode=light] .pe-sm-0{padding-right:0!important}html .pe-sm-1,html[data-netbox-color-mode=dark] .pe-sm-1,html[data-netbox-color-mode=light] .pe-sm-1{padding-right:.25rem!important}html .pe-sm-2,html[data-netbox-color-mode=dark] .pe-sm-2,html[data-netbox-color-mode=light] .pe-sm-2{padding-right:.5rem!important}html .pe-sm-3,html[data-netbox-color-mode=dark] .pe-sm-3,html[data-netbox-color-mode=light] .pe-sm-3{padding-right:1rem!important}html .pe-sm-4,html[data-netbox-color-mode=dark] .pe-sm-4,html[data-netbox-color-mode=light] .pe-sm-4{padding-right:1.5rem!important}html .pe-sm-5,html[data-netbox-color-mode=dark] .pe-sm-5,html[data-netbox-color-mode=light] .pe-sm-5{padding-right:3rem!important}html .pb-sm-0,html[data-netbox-color-mode=dark] .pb-sm-0,html[data-netbox-color-mode=light] .pb-sm-0{padding-bottom:0!important}html .pb-sm-1,html[data-netbox-color-mode=dark] .pb-sm-1,html[data-netbox-color-mode=light] .pb-sm-1{padding-bottom:.25rem!important}html .pb-sm-2,html[data-netbox-color-mode=dark] .pb-sm-2,html[data-netbox-color-mode=light] .pb-sm-2{padding-bottom:.5rem!important}html .pb-sm-3,html[data-netbox-color-mode=dark] .pb-sm-3,html[data-netbox-color-mode=light] .pb-sm-3{padding-bottom:1rem!important}html .pb-sm-4,html[data-netbox-color-mode=dark] .pb-sm-4,html[data-netbox-color-mode=light] .pb-sm-4{padding-bottom:1.5rem!important}html .pb-sm-5,html[data-netbox-color-mode=dark] .pb-sm-5,html[data-netbox-color-mode=light] .pb-sm-5{padding-bottom:3rem!important}html .ps-sm-0,html[data-netbox-color-mode=dark] .ps-sm-0,html[data-netbox-color-mode=light] .ps-sm-0{padding-left:0!important}html .ps-sm-1,html[data-netbox-color-mode=dark] .ps-sm-1,html[data-netbox-color-mode=light] .ps-sm-1{padding-left:.25rem!important}html .ps-sm-2,html[data-netbox-color-mode=dark] .ps-sm-2,html[data-netbox-color-mode=light] .ps-sm-2{padding-left:.5rem!important}html .ps-sm-3,html[data-netbox-color-mode=dark] .ps-sm-3,html[data-netbox-color-mode=light] .ps-sm-3{padding-left:1rem!important}html .ps-sm-4,html[data-netbox-color-mode=dark] .ps-sm-4,html[data-netbox-color-mode=light] .ps-sm-4{padding-left:1.5rem!important}html .ps-sm-5,html[data-netbox-color-mode=dark] .ps-sm-5,html[data-netbox-color-mode=light] .ps-sm-5{padding-left:3rem!important}html .text-sm-start,html[data-netbox-color-mode=dark] .text-sm-start,html[data-netbox-color-mode=light] .text-sm-start{text-align:left!important}html .text-sm-end,html[data-netbox-color-mode=dark] .text-sm-end,html[data-netbox-color-mode=light] .text-sm-end{text-align:right!important}html .text-sm-center,html[data-netbox-color-mode=dark] .text-sm-center,html[data-netbox-color-mode=light] .text-sm-center{text-align:center!important}}@media print and (min-width: 768px){html .float-md-start,html[data-netbox-color-mode=dark] .float-md-start,html[data-netbox-color-mode=light] .float-md-start{float:left!important}html .float-md-end,html[data-netbox-color-mode=dark] .float-md-end,html[data-netbox-color-mode=light] .float-md-end{float:right!important}html .float-md-none,html[data-netbox-color-mode=dark] .float-md-none,html[data-netbox-color-mode=light] .float-md-none{float:none!important}html .d-md-inline,html[data-netbox-color-mode=dark] .d-md-inline,html[data-netbox-color-mode=light] .d-md-inline{display:inline!important}html .d-md-inline-block,html[data-netbox-color-mode=dark] .d-md-inline-block,html[data-netbox-color-mode=light] .d-md-inline-block{display:inline-block!important}html .d-md-block,html[data-netbox-color-mode=dark] .d-md-block,html[data-netbox-color-mode=light] .d-md-block{display:block!important}html .d-md-grid,html[data-netbox-color-mode=dark] .d-md-grid,html[data-netbox-color-mode=light] .d-md-grid{display:grid!important}html .d-md-table,html[data-netbox-color-mode=dark] .d-md-table,html[data-netbox-color-mode=light] .d-md-table{display:table!important}html .d-md-table-row,html[data-netbox-color-mode=dark] .d-md-table-row,html[data-netbox-color-mode=light] .d-md-table-row{display:table-row!important}html .d-md-table-cell,html[data-netbox-color-mode=dark] .d-md-table-cell,html[data-netbox-color-mode=light] .d-md-table-cell{display:table-cell!important}html .d-md-flex,html[data-netbox-color-mode=dark] .d-md-flex,html[data-netbox-color-mode=light] .d-md-flex{display:flex!important}html .d-md-inline-flex,html[data-netbox-color-mode=dark] .d-md-inline-flex,html[data-netbox-color-mode=light] .d-md-inline-flex{display:inline-flex!important}html .d-md-none,html[data-netbox-color-mode=dark] .d-md-none,html[data-netbox-color-mode=light] .d-md-none{display:none!important}html .flex-md-fill,html[data-netbox-color-mode=dark] .flex-md-fill,html[data-netbox-color-mode=light] .flex-md-fill{flex:1 1 auto!important}html .flex-md-row,html[data-netbox-color-mode=dark] .flex-md-row,html[data-netbox-color-mode=light] .flex-md-row{flex-direction:row!important}html .flex-md-column,html[data-netbox-color-mode=dark] .flex-md-column,html[data-netbox-color-mode=light] .flex-md-column{flex-direction:column!important}html .flex-md-row-reverse,html[data-netbox-color-mode=dark] .flex-md-row-reverse,html[data-netbox-color-mode=light] .flex-md-row-reverse{flex-direction:row-reverse!important}html .flex-md-column-reverse,html[data-netbox-color-mode=dark] .flex-md-column-reverse,html[data-netbox-color-mode=light] .flex-md-column-reverse{flex-direction:column-reverse!important}html .flex-md-grow-0,html[data-netbox-color-mode=dark] .flex-md-grow-0,html[data-netbox-color-mode=light] .flex-md-grow-0{flex-grow:0!important}html .flex-md-grow-1,html[data-netbox-color-mode=dark] .flex-md-grow-1,html[data-netbox-color-mode=light] .flex-md-grow-1{flex-grow:1!important}html .flex-md-shrink-0,html[data-netbox-color-mode=dark] .flex-md-shrink-0,html[data-netbox-color-mode=light] .flex-md-shrink-0{flex-shrink:0!important}html .flex-md-shrink-1,html[data-netbox-color-mode=dark] .flex-md-shrink-1,html[data-netbox-color-mode=light] .flex-md-shrink-1{flex-shrink:1!important}html .flex-md-wrap,html[data-netbox-color-mode=dark] .flex-md-wrap,html[data-netbox-color-mode=light] .flex-md-wrap{flex-wrap:wrap!important}html .flex-md-nowrap,html[data-netbox-color-mode=dark] .flex-md-nowrap,html[data-netbox-color-mode=light] .flex-md-nowrap{flex-wrap:nowrap!important}html .flex-md-wrap-reverse,html[data-netbox-color-mode=dark] .flex-md-wrap-reverse,html[data-netbox-color-mode=light] .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-md-0,html[data-netbox-color-mode=dark] .gap-md-0,html[data-netbox-color-mode=light] .gap-md-0{gap:0!important}html .gap-md-1,html[data-netbox-color-mode=dark] .gap-md-1,html[data-netbox-color-mode=light] .gap-md-1{gap:.25rem!important}html .gap-md-2,html[data-netbox-color-mode=dark] .gap-md-2,html[data-netbox-color-mode=light] .gap-md-2{gap:.5rem!important}html .gap-md-3,html[data-netbox-color-mode=dark] .gap-md-3,html[data-netbox-color-mode=light] .gap-md-3{gap:1rem!important}html .gap-md-4,html[data-netbox-color-mode=dark] .gap-md-4,html[data-netbox-color-mode=light] .gap-md-4{gap:1.5rem!important}html .gap-md-5,html[data-netbox-color-mode=dark] .gap-md-5,html[data-netbox-color-mode=light] .gap-md-5{gap:3rem!important}html .justify-content-md-start,html[data-netbox-color-mode=dark] .justify-content-md-start,html[data-netbox-color-mode=light] .justify-content-md-start{justify-content:flex-start!important}html .justify-content-md-end,html[data-netbox-color-mode=dark] .justify-content-md-end,html[data-netbox-color-mode=light] .justify-content-md-end{justify-content:flex-end!important}html .justify-content-md-center,html[data-netbox-color-mode=dark] .justify-content-md-center,html[data-netbox-color-mode=light] .justify-content-md-center{justify-content:center!important}html .justify-content-md-between,html[data-netbox-color-mode=dark] .justify-content-md-between,html[data-netbox-color-mode=light] .justify-content-md-between{justify-content:space-between!important}html .justify-content-md-around,html[data-netbox-color-mode=dark] .justify-content-md-around,html[data-netbox-color-mode=light] .justify-content-md-around{justify-content:space-around!important}html .justify-content-md-evenly,html[data-netbox-color-mode=dark] .justify-content-md-evenly,html[data-netbox-color-mode=light] .justify-content-md-evenly{justify-content:space-evenly!important}html .align-items-md-start,html[data-netbox-color-mode=dark] .align-items-md-start,html[data-netbox-color-mode=light] .align-items-md-start{align-items:flex-start!important}html .align-items-md-end,html[data-netbox-color-mode=dark] .align-items-md-end,html[data-netbox-color-mode=light] .align-items-md-end{align-items:flex-end!important}html .align-items-md-center,html[data-netbox-color-mode=dark] .align-items-md-center,html[data-netbox-color-mode=light] .align-items-md-center{align-items:center!important}html .align-items-md-baseline,html[data-netbox-color-mode=dark] .align-items-md-baseline,html[data-netbox-color-mode=light] .align-items-md-baseline{align-items:baseline!important}html .align-items-md-stretch,html[data-netbox-color-mode=dark] .align-items-md-stretch,html[data-netbox-color-mode=light] .align-items-md-stretch{align-items:stretch!important}html .align-content-md-start,html[data-netbox-color-mode=dark] .align-content-md-start,html[data-netbox-color-mode=light] .align-content-md-start{align-content:flex-start!important}html .align-content-md-end,html[data-netbox-color-mode=dark] .align-content-md-end,html[data-netbox-color-mode=light] .align-content-md-end{align-content:flex-end!important}html .align-content-md-center,html[data-netbox-color-mode=dark] .align-content-md-center,html[data-netbox-color-mode=light] .align-content-md-center{align-content:center!important}html .align-content-md-between,html[data-netbox-color-mode=dark] .align-content-md-between,html[data-netbox-color-mode=light] .align-content-md-between{align-content:space-between!important}html .align-content-md-around,html[data-netbox-color-mode=dark] .align-content-md-around,html[data-netbox-color-mode=light] .align-content-md-around{align-content:space-around!important}html .align-content-md-stretch,html[data-netbox-color-mode=dark] .align-content-md-stretch,html[data-netbox-color-mode=light] .align-content-md-stretch{align-content:stretch!important}html .align-self-md-auto,html[data-netbox-color-mode=dark] .align-self-md-auto,html[data-netbox-color-mode=light] .align-self-md-auto{align-self:auto!important}html .align-self-md-start,html[data-netbox-color-mode=dark] .align-self-md-start,html[data-netbox-color-mode=light] .align-self-md-start{align-self:flex-start!important}html .align-self-md-end,html[data-netbox-color-mode=dark] .align-self-md-end,html[data-netbox-color-mode=light] .align-self-md-end{align-self:flex-end!important}html .align-self-md-center,html[data-netbox-color-mode=dark] .align-self-md-center,html[data-netbox-color-mode=light] .align-self-md-center{align-self:center!important}html .align-self-md-baseline,html[data-netbox-color-mode=dark] .align-self-md-baseline,html[data-netbox-color-mode=light] .align-self-md-baseline{align-self:baseline!important}html .align-self-md-stretch,html[data-netbox-color-mode=dark] .align-self-md-stretch,html[data-netbox-color-mode=light] .align-self-md-stretch{align-self:stretch!important}html .order-md-first,html[data-netbox-color-mode=dark] .order-md-first,html[data-netbox-color-mode=light] .order-md-first{order:-1!important}html .order-md-0,html[data-netbox-color-mode=dark] .order-md-0,html[data-netbox-color-mode=light] .order-md-0{order:0!important}html .order-md-1,html[data-netbox-color-mode=dark] .order-md-1,html[data-netbox-color-mode=light] .order-md-1{order:1!important}html .order-md-2,html[data-netbox-color-mode=dark] .order-md-2,html[data-netbox-color-mode=light] .order-md-2{order:2!important}html .order-md-3,html[data-netbox-color-mode=dark] .order-md-3,html[data-netbox-color-mode=light] .order-md-3{order:3!important}html .order-md-4,html[data-netbox-color-mode=dark] .order-md-4,html[data-netbox-color-mode=light] .order-md-4{order:4!important}html .order-md-5,html[data-netbox-color-mode=dark] .order-md-5,html[data-netbox-color-mode=light] .order-md-5{order:5!important}html .order-md-last,html[data-netbox-color-mode=dark] .order-md-last,html[data-netbox-color-mode=light] .order-md-last{order:6!important}html .m-md-0,html[data-netbox-color-mode=dark] .m-md-0,html[data-netbox-color-mode=light] .m-md-0{margin:0!important}html .m-md-1,html[data-netbox-color-mode=dark] .m-md-1,html[data-netbox-color-mode=light] .m-md-1{margin:.25rem!important}html .m-md-2,html[data-netbox-color-mode=dark] .m-md-2,html[data-netbox-color-mode=light] .m-md-2{margin:.5rem!important}html .m-md-3,html[data-netbox-color-mode=dark] .m-md-3,html[data-netbox-color-mode=light] .m-md-3{margin:1rem!important}html .m-md-4,html[data-netbox-color-mode=dark] .m-md-4,html[data-netbox-color-mode=light] .m-md-4{margin:1.5rem!important}html .m-md-5,html[data-netbox-color-mode=dark] .m-md-5,html[data-netbox-color-mode=light] .m-md-5{margin:3rem!important}html .m-md-auto,html[data-netbox-color-mode=dark] .m-md-auto,html[data-netbox-color-mode=light] .m-md-auto{margin:auto!important}html .mx-md-0,html[data-netbox-color-mode=dark] .mx-md-0,html[data-netbox-color-mode=light] .mx-md-0{margin-right:0!important;margin-left:0!important}html .mx-md-1,html[data-netbox-color-mode=dark] .mx-md-1,html[data-netbox-color-mode=light] .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-md-2,html[data-netbox-color-mode=dark] .mx-md-2,html[data-netbox-color-mode=light] .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-md-3,html[data-netbox-color-mode=dark] .mx-md-3,html[data-netbox-color-mode=light] .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-md-4,html[data-netbox-color-mode=dark] .mx-md-4,html[data-netbox-color-mode=light] .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-md-5,html[data-netbox-color-mode=dark] .mx-md-5,html[data-netbox-color-mode=light] .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-md-auto,html[data-netbox-color-mode=dark] .mx-md-auto,html[data-netbox-color-mode=light] .mx-md-auto{margin-right:auto!important;margin-left:auto!important}html .my-md-0,html[data-netbox-color-mode=dark] .my-md-0,html[data-netbox-color-mode=light] .my-md-0{margin-top:0!important;margin-bottom:0!important}html .my-md-1,html[data-netbox-color-mode=dark] .my-md-1,html[data-netbox-color-mode=light] .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-md-2,html[data-netbox-color-mode=dark] .my-md-2,html[data-netbox-color-mode=light] .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-md-3,html[data-netbox-color-mode=dark] .my-md-3,html[data-netbox-color-mode=light] .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-md-4,html[data-netbox-color-mode=dark] .my-md-4,html[data-netbox-color-mode=light] .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-md-5,html[data-netbox-color-mode=dark] .my-md-5,html[data-netbox-color-mode=light] .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-md-auto,html[data-netbox-color-mode=dark] .my-md-auto,html[data-netbox-color-mode=light] .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-md-0,html[data-netbox-color-mode=dark] .mt-md-0,html[data-netbox-color-mode=light] .mt-md-0{margin-top:0!important}html .mt-md-1,html[data-netbox-color-mode=dark] .mt-md-1,html[data-netbox-color-mode=light] .mt-md-1{margin-top:.25rem!important}html .mt-md-2,html[data-netbox-color-mode=dark] .mt-md-2,html[data-netbox-color-mode=light] .mt-md-2{margin-top:.5rem!important}html .mt-md-3,html[data-netbox-color-mode=dark] .mt-md-3,html[data-netbox-color-mode=light] .mt-md-3{margin-top:1rem!important}html .mt-md-4,html[data-netbox-color-mode=dark] .mt-md-4,html[data-netbox-color-mode=light] .mt-md-4{margin-top:1.5rem!important}html .mt-md-5,html[data-netbox-color-mode=dark] .mt-md-5,html[data-netbox-color-mode=light] .mt-md-5{margin-top:3rem!important}html .mt-md-auto,html[data-netbox-color-mode=dark] .mt-md-auto,html[data-netbox-color-mode=light] .mt-md-auto{margin-top:auto!important}html .me-md-0,html[data-netbox-color-mode=dark] .me-md-0,html[data-netbox-color-mode=light] .me-md-0{margin-right:0!important}html .me-md-1,html[data-netbox-color-mode=dark] .me-md-1,html[data-netbox-color-mode=light] .me-md-1{margin-right:.25rem!important}html .me-md-2,html[data-netbox-color-mode=dark] .me-md-2,html[data-netbox-color-mode=light] .me-md-2{margin-right:.5rem!important}html .me-md-3,html[data-netbox-color-mode=dark] .me-md-3,html[data-netbox-color-mode=light] .me-md-3{margin-right:1rem!important}html .me-md-4,html[data-netbox-color-mode=dark] .me-md-4,html[data-netbox-color-mode=light] .me-md-4{margin-right:1.5rem!important}html .me-md-5,html[data-netbox-color-mode=dark] .me-md-5,html[data-netbox-color-mode=light] .me-md-5{margin-right:3rem!important}html .me-md-auto,html[data-netbox-color-mode=dark] .me-md-auto,html[data-netbox-color-mode=light] .me-md-auto{margin-right:auto!important}html .mb-md-0,html[data-netbox-color-mode=dark] .mb-md-0,html[data-netbox-color-mode=light] .mb-md-0{margin-bottom:0!important}html .mb-md-1,html[data-netbox-color-mode=dark] .mb-md-1,html[data-netbox-color-mode=light] .mb-md-1{margin-bottom:.25rem!important}html .mb-md-2,html[data-netbox-color-mode=dark] .mb-md-2,html[data-netbox-color-mode=light] .mb-md-2{margin-bottom:.5rem!important}html .mb-md-3,html[data-netbox-color-mode=dark] .mb-md-3,html[data-netbox-color-mode=light] .mb-md-3{margin-bottom:1rem!important}html .mb-md-4,html[data-netbox-color-mode=dark] .mb-md-4,html[data-netbox-color-mode=light] .mb-md-4{margin-bottom:1.5rem!important}html .mb-md-5,html[data-netbox-color-mode=dark] .mb-md-5,html[data-netbox-color-mode=light] .mb-md-5{margin-bottom:3rem!important}html .mb-md-auto,html[data-netbox-color-mode=dark] .mb-md-auto,html[data-netbox-color-mode=light] .mb-md-auto{margin-bottom:auto!important}html .ms-md-0,html[data-netbox-color-mode=dark] .ms-md-0,html[data-netbox-color-mode=light] .ms-md-0{margin-left:0!important}html .ms-md-1,html[data-netbox-color-mode=dark] .ms-md-1,html[data-netbox-color-mode=light] .ms-md-1{margin-left:.25rem!important}html .ms-md-2,html[data-netbox-color-mode=dark] .ms-md-2,html[data-netbox-color-mode=light] .ms-md-2{margin-left:.5rem!important}html .ms-md-3,html[data-netbox-color-mode=dark] .ms-md-3,html[data-netbox-color-mode=light] .ms-md-3{margin-left:1rem!important}html .ms-md-4,html[data-netbox-color-mode=dark] .ms-md-4,html[data-netbox-color-mode=light] .ms-md-4{margin-left:1.5rem!important}html .ms-md-5,html[data-netbox-color-mode=dark] .ms-md-5,html[data-netbox-color-mode=light] .ms-md-5{margin-left:3rem!important}html .ms-md-auto,html[data-netbox-color-mode=dark] .ms-md-auto,html[data-netbox-color-mode=light] .ms-md-auto{margin-left:auto!important}html .p-md-0,html[data-netbox-color-mode=dark] .p-md-0,html[data-netbox-color-mode=light] .p-md-0{padding:0!important}html .p-md-1,html[data-netbox-color-mode=dark] .p-md-1,html[data-netbox-color-mode=light] .p-md-1{padding:.25rem!important}html .p-md-2,html[data-netbox-color-mode=dark] .p-md-2,html[data-netbox-color-mode=light] .p-md-2{padding:.5rem!important}html .p-md-3,html[data-netbox-color-mode=dark] .p-md-3,html[data-netbox-color-mode=light] .p-md-3{padding:1rem!important}html .p-md-4,html[data-netbox-color-mode=dark] .p-md-4,html[data-netbox-color-mode=light] .p-md-4{padding:1.5rem!important}html .p-md-5,html[data-netbox-color-mode=dark] .p-md-5,html[data-netbox-color-mode=light] .p-md-5{padding:3rem!important}html .px-md-0,html[data-netbox-color-mode=dark] .px-md-0,html[data-netbox-color-mode=light] .px-md-0{padding-right:0!important;padding-left:0!important}html .px-md-1,html[data-netbox-color-mode=dark] .px-md-1,html[data-netbox-color-mode=light] .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-md-2,html[data-netbox-color-mode=dark] .px-md-2,html[data-netbox-color-mode=light] .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-md-3,html[data-netbox-color-mode=dark] .px-md-3,html[data-netbox-color-mode=light] .px-md-3{padding-right:1rem!important;padding-left:1rem!important}html .px-md-4,html[data-netbox-color-mode=dark] .px-md-4,html[data-netbox-color-mode=light] .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-md-5,html[data-netbox-color-mode=dark] .px-md-5,html[data-netbox-color-mode=light] .px-md-5{padding-right:3rem!important;padding-left:3rem!important}html .py-md-0,html[data-netbox-color-mode=dark] .py-md-0,html[data-netbox-color-mode=light] .py-md-0{padding-top:0!important;padding-bottom:0!important}html .py-md-1,html[data-netbox-color-mode=dark] .py-md-1,html[data-netbox-color-mode=light] .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-md-2,html[data-netbox-color-mode=dark] .py-md-2,html[data-netbox-color-mode=light] .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-md-3,html[data-netbox-color-mode=dark] .py-md-3,html[data-netbox-color-mode=light] .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-md-4,html[data-netbox-color-mode=dark] .py-md-4,html[data-netbox-color-mode=light] .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-md-5,html[data-netbox-color-mode=dark] .py-md-5,html[data-netbox-color-mode=light] .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-md-0,html[data-netbox-color-mode=dark] .pt-md-0,html[data-netbox-color-mode=light] .pt-md-0{padding-top:0!important}html .pt-md-1,html[data-netbox-color-mode=dark] .pt-md-1,html[data-netbox-color-mode=light] .pt-md-1{padding-top:.25rem!important}html .pt-md-2,html[data-netbox-color-mode=dark] .pt-md-2,html[data-netbox-color-mode=light] .pt-md-2{padding-top:.5rem!important}html .pt-md-3,html[data-netbox-color-mode=dark] .pt-md-3,html[data-netbox-color-mode=light] .pt-md-3{padding-top:1rem!important}html .pt-md-4,html[data-netbox-color-mode=dark] .pt-md-4,html[data-netbox-color-mode=light] .pt-md-4{padding-top:1.5rem!important}html .pt-md-5,html[data-netbox-color-mode=dark] .pt-md-5,html[data-netbox-color-mode=light] .pt-md-5{padding-top:3rem!important}html .pe-md-0,html[data-netbox-color-mode=dark] .pe-md-0,html[data-netbox-color-mode=light] .pe-md-0{padding-right:0!important}html .pe-md-1,html[data-netbox-color-mode=dark] .pe-md-1,html[data-netbox-color-mode=light] .pe-md-1{padding-right:.25rem!important}html .pe-md-2,html[data-netbox-color-mode=dark] .pe-md-2,html[data-netbox-color-mode=light] .pe-md-2{padding-right:.5rem!important}html .pe-md-3,html[data-netbox-color-mode=dark] .pe-md-3,html[data-netbox-color-mode=light] .pe-md-3{padding-right:1rem!important}html .pe-md-4,html[data-netbox-color-mode=dark] .pe-md-4,html[data-netbox-color-mode=light] .pe-md-4{padding-right:1.5rem!important}html .pe-md-5,html[data-netbox-color-mode=dark] .pe-md-5,html[data-netbox-color-mode=light] .pe-md-5{padding-right:3rem!important}html .pb-md-0,html[data-netbox-color-mode=dark] .pb-md-0,html[data-netbox-color-mode=light] .pb-md-0{padding-bottom:0!important}html .pb-md-1,html[data-netbox-color-mode=dark] .pb-md-1,html[data-netbox-color-mode=light] .pb-md-1{padding-bottom:.25rem!important}html .pb-md-2,html[data-netbox-color-mode=dark] .pb-md-2,html[data-netbox-color-mode=light] .pb-md-2{padding-bottom:.5rem!important}html .pb-md-3,html[data-netbox-color-mode=dark] .pb-md-3,html[data-netbox-color-mode=light] .pb-md-3{padding-bottom:1rem!important}html .pb-md-4,html[data-netbox-color-mode=dark] .pb-md-4,html[data-netbox-color-mode=light] .pb-md-4{padding-bottom:1.5rem!important}html .pb-md-5,html[data-netbox-color-mode=dark] .pb-md-5,html[data-netbox-color-mode=light] .pb-md-5{padding-bottom:3rem!important}html .ps-md-0,html[data-netbox-color-mode=dark] .ps-md-0,html[data-netbox-color-mode=light] .ps-md-0{padding-left:0!important}html .ps-md-1,html[data-netbox-color-mode=dark] .ps-md-1,html[data-netbox-color-mode=light] .ps-md-1{padding-left:.25rem!important}html .ps-md-2,html[data-netbox-color-mode=dark] .ps-md-2,html[data-netbox-color-mode=light] .ps-md-2{padding-left:.5rem!important}html .ps-md-3,html[data-netbox-color-mode=dark] .ps-md-3,html[data-netbox-color-mode=light] .ps-md-3{padding-left:1rem!important}html .ps-md-4,html[data-netbox-color-mode=dark] .ps-md-4,html[data-netbox-color-mode=light] .ps-md-4{padding-left:1.5rem!important}html .ps-md-5,html[data-netbox-color-mode=dark] .ps-md-5,html[data-netbox-color-mode=light] .ps-md-5{padding-left:3rem!important}html .text-md-start,html[data-netbox-color-mode=dark] .text-md-start,html[data-netbox-color-mode=light] .text-md-start{text-align:left!important}html .text-md-end,html[data-netbox-color-mode=dark] .text-md-end,html[data-netbox-color-mode=light] .text-md-end{text-align:right!important}html .text-md-center,html[data-netbox-color-mode=dark] .text-md-center,html[data-netbox-color-mode=light] .text-md-center{text-align:center!important}}@media print and (min-width: 992px){html .float-lg-start,html[data-netbox-color-mode=dark] .float-lg-start,html[data-netbox-color-mode=light] .float-lg-start{float:left!important}html .float-lg-end,html[data-netbox-color-mode=dark] .float-lg-end,html[data-netbox-color-mode=light] .float-lg-end{float:right!important}html .float-lg-none,html[data-netbox-color-mode=dark] .float-lg-none,html[data-netbox-color-mode=light] .float-lg-none{float:none!important}html .d-lg-inline,html[data-netbox-color-mode=dark] .d-lg-inline,html[data-netbox-color-mode=light] .d-lg-inline{display:inline!important}html .d-lg-inline-block,html[data-netbox-color-mode=dark] .d-lg-inline-block,html[data-netbox-color-mode=light] .d-lg-inline-block{display:inline-block!important}html .d-lg-block,html[data-netbox-color-mode=dark] .d-lg-block,html[data-netbox-color-mode=light] .d-lg-block{display:block!important}html .d-lg-grid,html[data-netbox-color-mode=dark] .d-lg-grid,html[data-netbox-color-mode=light] .d-lg-grid{display:grid!important}html .d-lg-table,html[data-netbox-color-mode=dark] .d-lg-table,html[data-netbox-color-mode=light] .d-lg-table{display:table!important}html .d-lg-table-row,html[data-netbox-color-mode=dark] .d-lg-table-row,html[data-netbox-color-mode=light] .d-lg-table-row{display:table-row!important}html .d-lg-table-cell,html[data-netbox-color-mode=dark] .d-lg-table-cell,html[data-netbox-color-mode=light] .d-lg-table-cell{display:table-cell!important}html .d-lg-flex,html[data-netbox-color-mode=dark] .d-lg-flex,html[data-netbox-color-mode=light] .d-lg-flex{display:flex!important}html .d-lg-inline-flex,html[data-netbox-color-mode=dark] .d-lg-inline-flex,html[data-netbox-color-mode=light] .d-lg-inline-flex{display:inline-flex!important}html .d-lg-none,html[data-netbox-color-mode=dark] .d-lg-none,html[data-netbox-color-mode=light] .d-lg-none{display:none!important}html .flex-lg-fill,html[data-netbox-color-mode=dark] .flex-lg-fill,html[data-netbox-color-mode=light] .flex-lg-fill{flex:1 1 auto!important}html .flex-lg-row,html[data-netbox-color-mode=dark] .flex-lg-row,html[data-netbox-color-mode=light] .flex-lg-row{flex-direction:row!important}html .flex-lg-column,html[data-netbox-color-mode=dark] .flex-lg-column,html[data-netbox-color-mode=light] .flex-lg-column{flex-direction:column!important}html .flex-lg-row-reverse,html[data-netbox-color-mode=dark] .flex-lg-row-reverse,html[data-netbox-color-mode=light] .flex-lg-row-reverse{flex-direction:row-reverse!important}html .flex-lg-column-reverse,html[data-netbox-color-mode=dark] .flex-lg-column-reverse,html[data-netbox-color-mode=light] .flex-lg-column-reverse{flex-direction:column-reverse!important}html .flex-lg-grow-0,html[data-netbox-color-mode=dark] .flex-lg-grow-0,html[data-netbox-color-mode=light] .flex-lg-grow-0{flex-grow:0!important}html .flex-lg-grow-1,html[data-netbox-color-mode=dark] .flex-lg-grow-1,html[data-netbox-color-mode=light] .flex-lg-grow-1{flex-grow:1!important}html .flex-lg-shrink-0,html[data-netbox-color-mode=dark] .flex-lg-shrink-0,html[data-netbox-color-mode=light] .flex-lg-shrink-0{flex-shrink:0!important}html .flex-lg-shrink-1,html[data-netbox-color-mode=dark] .flex-lg-shrink-1,html[data-netbox-color-mode=light] .flex-lg-shrink-1{flex-shrink:1!important}html .flex-lg-wrap,html[data-netbox-color-mode=dark] .flex-lg-wrap,html[data-netbox-color-mode=light] .flex-lg-wrap{flex-wrap:wrap!important}html .flex-lg-nowrap,html[data-netbox-color-mode=dark] .flex-lg-nowrap,html[data-netbox-color-mode=light] .flex-lg-nowrap{flex-wrap:nowrap!important}html .flex-lg-wrap-reverse,html[data-netbox-color-mode=dark] .flex-lg-wrap-reverse,html[data-netbox-color-mode=light] .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-lg-0,html[data-netbox-color-mode=dark] .gap-lg-0,html[data-netbox-color-mode=light] .gap-lg-0{gap:0!important}html .gap-lg-1,html[data-netbox-color-mode=dark] .gap-lg-1,html[data-netbox-color-mode=light] .gap-lg-1{gap:.25rem!important}html .gap-lg-2,html[data-netbox-color-mode=dark] .gap-lg-2,html[data-netbox-color-mode=light] .gap-lg-2{gap:.5rem!important}html .gap-lg-3,html[data-netbox-color-mode=dark] .gap-lg-3,html[data-netbox-color-mode=light] .gap-lg-3{gap:1rem!important}html .gap-lg-4,html[data-netbox-color-mode=dark] .gap-lg-4,html[data-netbox-color-mode=light] .gap-lg-4{gap:1.5rem!important}html .gap-lg-5,html[data-netbox-color-mode=dark] .gap-lg-5,html[data-netbox-color-mode=light] .gap-lg-5{gap:3rem!important}html .justify-content-lg-start,html[data-netbox-color-mode=dark] .justify-content-lg-start,html[data-netbox-color-mode=light] .justify-content-lg-start{justify-content:flex-start!important}html .justify-content-lg-end,html[data-netbox-color-mode=dark] .justify-content-lg-end,html[data-netbox-color-mode=light] .justify-content-lg-end{justify-content:flex-end!important}html .justify-content-lg-center,html[data-netbox-color-mode=dark] .justify-content-lg-center,html[data-netbox-color-mode=light] .justify-content-lg-center{justify-content:center!important}html .justify-content-lg-between,html[data-netbox-color-mode=dark] .justify-content-lg-between,html[data-netbox-color-mode=light] .justify-content-lg-between{justify-content:space-between!important}html .justify-content-lg-around,html[data-netbox-color-mode=dark] .justify-content-lg-around,html[data-netbox-color-mode=light] .justify-content-lg-around{justify-content:space-around!important}html .justify-content-lg-evenly,html[data-netbox-color-mode=dark] .justify-content-lg-evenly,html[data-netbox-color-mode=light] .justify-content-lg-evenly{justify-content:space-evenly!important}html .align-items-lg-start,html[data-netbox-color-mode=dark] .align-items-lg-start,html[data-netbox-color-mode=light] .align-items-lg-start{align-items:flex-start!important}html .align-items-lg-end,html[data-netbox-color-mode=dark] .align-items-lg-end,html[data-netbox-color-mode=light] .align-items-lg-end{align-items:flex-end!important}html .align-items-lg-center,html[data-netbox-color-mode=dark] .align-items-lg-center,html[data-netbox-color-mode=light] .align-items-lg-center{align-items:center!important}html .align-items-lg-baseline,html[data-netbox-color-mode=dark] .align-items-lg-baseline,html[data-netbox-color-mode=light] .align-items-lg-baseline{align-items:baseline!important}html .align-items-lg-stretch,html[data-netbox-color-mode=dark] .align-items-lg-stretch,html[data-netbox-color-mode=light] .align-items-lg-stretch{align-items:stretch!important}html .align-content-lg-start,html[data-netbox-color-mode=dark] .align-content-lg-start,html[data-netbox-color-mode=light] .align-content-lg-start{align-content:flex-start!important}html .align-content-lg-end,html[data-netbox-color-mode=dark] .align-content-lg-end,html[data-netbox-color-mode=light] .align-content-lg-end{align-content:flex-end!important}html .align-content-lg-center,html[data-netbox-color-mode=dark] .align-content-lg-center,html[data-netbox-color-mode=light] .align-content-lg-center{align-content:center!important}html .align-content-lg-between,html[data-netbox-color-mode=dark] .align-content-lg-between,html[data-netbox-color-mode=light] .align-content-lg-between{align-content:space-between!important}html .align-content-lg-around,html[data-netbox-color-mode=dark] .align-content-lg-around,html[data-netbox-color-mode=light] .align-content-lg-around{align-content:space-around!important}html .align-content-lg-stretch,html[data-netbox-color-mode=dark] .align-content-lg-stretch,html[data-netbox-color-mode=light] .align-content-lg-stretch{align-content:stretch!important}html .align-self-lg-auto,html[data-netbox-color-mode=dark] .align-self-lg-auto,html[data-netbox-color-mode=light] .align-self-lg-auto{align-self:auto!important}html .align-self-lg-start,html[data-netbox-color-mode=dark] .align-self-lg-start,html[data-netbox-color-mode=light] .align-self-lg-start{align-self:flex-start!important}html .align-self-lg-end,html[data-netbox-color-mode=dark] .align-self-lg-end,html[data-netbox-color-mode=light] .align-self-lg-end{align-self:flex-end!important}html .align-self-lg-center,html[data-netbox-color-mode=dark] .align-self-lg-center,html[data-netbox-color-mode=light] .align-self-lg-center{align-self:center!important}html .align-self-lg-baseline,html[data-netbox-color-mode=dark] .align-self-lg-baseline,html[data-netbox-color-mode=light] .align-self-lg-baseline{align-self:baseline!important}html .align-self-lg-stretch,html[data-netbox-color-mode=dark] .align-self-lg-stretch,html[data-netbox-color-mode=light] .align-self-lg-stretch{align-self:stretch!important}html .order-lg-first,html[data-netbox-color-mode=dark] .order-lg-first,html[data-netbox-color-mode=light] .order-lg-first{order:-1!important}html .order-lg-0,html[data-netbox-color-mode=dark] .order-lg-0,html[data-netbox-color-mode=light] .order-lg-0{order:0!important}html .order-lg-1,html[data-netbox-color-mode=dark] .order-lg-1,html[data-netbox-color-mode=light] .order-lg-1{order:1!important}html .order-lg-2,html[data-netbox-color-mode=dark] .order-lg-2,html[data-netbox-color-mode=light] .order-lg-2{order:2!important}html .order-lg-3,html[data-netbox-color-mode=dark] .order-lg-3,html[data-netbox-color-mode=light] .order-lg-3{order:3!important}html .order-lg-4,html[data-netbox-color-mode=dark] .order-lg-4,html[data-netbox-color-mode=light] .order-lg-4{order:4!important}html .order-lg-5,html[data-netbox-color-mode=dark] .order-lg-5,html[data-netbox-color-mode=light] .order-lg-5{order:5!important}html .order-lg-last,html[data-netbox-color-mode=dark] .order-lg-last,html[data-netbox-color-mode=light] .order-lg-last{order:6!important}html .m-lg-0,html[data-netbox-color-mode=dark] .m-lg-0,html[data-netbox-color-mode=light] .m-lg-0{margin:0!important}html .m-lg-1,html[data-netbox-color-mode=dark] .m-lg-1,html[data-netbox-color-mode=light] .m-lg-1{margin:.25rem!important}html .m-lg-2,html[data-netbox-color-mode=dark] .m-lg-2,html[data-netbox-color-mode=light] .m-lg-2{margin:.5rem!important}html .m-lg-3,html[data-netbox-color-mode=dark] .m-lg-3,html[data-netbox-color-mode=light] .m-lg-3{margin:1rem!important}html .m-lg-4,html[data-netbox-color-mode=dark] .m-lg-4,html[data-netbox-color-mode=light] .m-lg-4{margin:1.5rem!important}html .m-lg-5,html[data-netbox-color-mode=dark] .m-lg-5,html[data-netbox-color-mode=light] .m-lg-5{margin:3rem!important}html .m-lg-auto,html[data-netbox-color-mode=dark] .m-lg-auto,html[data-netbox-color-mode=light] .m-lg-auto{margin:auto!important}html .mx-lg-0,html[data-netbox-color-mode=dark] .mx-lg-0,html[data-netbox-color-mode=light] .mx-lg-0{margin-right:0!important;margin-left:0!important}html .mx-lg-1,html[data-netbox-color-mode=dark] .mx-lg-1,html[data-netbox-color-mode=light] .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-lg-2,html[data-netbox-color-mode=dark] .mx-lg-2,html[data-netbox-color-mode=light] .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-lg-3,html[data-netbox-color-mode=dark] .mx-lg-3,html[data-netbox-color-mode=light] .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-lg-4,html[data-netbox-color-mode=dark] .mx-lg-4,html[data-netbox-color-mode=light] .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-lg-5,html[data-netbox-color-mode=dark] .mx-lg-5,html[data-netbox-color-mode=light] .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-lg-auto,html[data-netbox-color-mode=dark] .mx-lg-auto,html[data-netbox-color-mode=light] .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}html .my-lg-0,html[data-netbox-color-mode=dark] .my-lg-0,html[data-netbox-color-mode=light] .my-lg-0{margin-top:0!important;margin-bottom:0!important}html .my-lg-1,html[data-netbox-color-mode=dark] .my-lg-1,html[data-netbox-color-mode=light] .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-lg-2,html[data-netbox-color-mode=dark] .my-lg-2,html[data-netbox-color-mode=light] .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-lg-3,html[data-netbox-color-mode=dark] .my-lg-3,html[data-netbox-color-mode=light] .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-lg-4,html[data-netbox-color-mode=dark] .my-lg-4,html[data-netbox-color-mode=light] .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-lg-5,html[data-netbox-color-mode=dark] .my-lg-5,html[data-netbox-color-mode=light] .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-lg-auto,html[data-netbox-color-mode=dark] .my-lg-auto,html[data-netbox-color-mode=light] .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-lg-0,html[data-netbox-color-mode=dark] .mt-lg-0,html[data-netbox-color-mode=light] .mt-lg-0{margin-top:0!important}html .mt-lg-1,html[data-netbox-color-mode=dark] .mt-lg-1,html[data-netbox-color-mode=light] .mt-lg-1{margin-top:.25rem!important}html .mt-lg-2,html[data-netbox-color-mode=dark] .mt-lg-2,html[data-netbox-color-mode=light] .mt-lg-2{margin-top:.5rem!important}html .mt-lg-3,html[data-netbox-color-mode=dark] .mt-lg-3,html[data-netbox-color-mode=light] .mt-lg-3{margin-top:1rem!important}html .mt-lg-4,html[data-netbox-color-mode=dark] .mt-lg-4,html[data-netbox-color-mode=light] .mt-lg-4{margin-top:1.5rem!important}html .mt-lg-5,html[data-netbox-color-mode=dark] .mt-lg-5,html[data-netbox-color-mode=light] .mt-lg-5{margin-top:3rem!important}html .mt-lg-auto,html[data-netbox-color-mode=dark] .mt-lg-auto,html[data-netbox-color-mode=light] .mt-lg-auto{margin-top:auto!important}html .me-lg-0,html[data-netbox-color-mode=dark] .me-lg-0,html[data-netbox-color-mode=light] .me-lg-0{margin-right:0!important}html .me-lg-1,html[data-netbox-color-mode=dark] .me-lg-1,html[data-netbox-color-mode=light] .me-lg-1{margin-right:.25rem!important}html .me-lg-2,html[data-netbox-color-mode=dark] .me-lg-2,html[data-netbox-color-mode=light] .me-lg-2{margin-right:.5rem!important}html .me-lg-3,html[data-netbox-color-mode=dark] .me-lg-3,html[data-netbox-color-mode=light] .me-lg-3{margin-right:1rem!important}html .me-lg-4,html[data-netbox-color-mode=dark] .me-lg-4,html[data-netbox-color-mode=light] .me-lg-4{margin-right:1.5rem!important}html .me-lg-5,html[data-netbox-color-mode=dark] .me-lg-5,html[data-netbox-color-mode=light] .me-lg-5{margin-right:3rem!important}html .me-lg-auto,html[data-netbox-color-mode=dark] .me-lg-auto,html[data-netbox-color-mode=light] .me-lg-auto{margin-right:auto!important}html .mb-lg-0,html[data-netbox-color-mode=dark] .mb-lg-0,html[data-netbox-color-mode=light] .mb-lg-0{margin-bottom:0!important}html .mb-lg-1,html[data-netbox-color-mode=dark] .mb-lg-1,html[data-netbox-color-mode=light] .mb-lg-1{margin-bottom:.25rem!important}html .mb-lg-2,html[data-netbox-color-mode=dark] .mb-lg-2,html[data-netbox-color-mode=light] .mb-lg-2{margin-bottom:.5rem!important}html .mb-lg-3,html[data-netbox-color-mode=dark] .mb-lg-3,html[data-netbox-color-mode=light] .mb-lg-3{margin-bottom:1rem!important}html .mb-lg-4,html[data-netbox-color-mode=dark] .mb-lg-4,html[data-netbox-color-mode=light] .mb-lg-4{margin-bottom:1.5rem!important}html .mb-lg-5,html[data-netbox-color-mode=dark] .mb-lg-5,html[data-netbox-color-mode=light] .mb-lg-5{margin-bottom:3rem!important}html .mb-lg-auto,html[data-netbox-color-mode=dark] .mb-lg-auto,html[data-netbox-color-mode=light] .mb-lg-auto{margin-bottom:auto!important}html .ms-lg-0,html[data-netbox-color-mode=dark] .ms-lg-0,html[data-netbox-color-mode=light] .ms-lg-0{margin-left:0!important}html .ms-lg-1,html[data-netbox-color-mode=dark] .ms-lg-1,html[data-netbox-color-mode=light] .ms-lg-1{margin-left:.25rem!important}html .ms-lg-2,html[data-netbox-color-mode=dark] .ms-lg-2,html[data-netbox-color-mode=light] .ms-lg-2{margin-left:.5rem!important}html .ms-lg-3,html[data-netbox-color-mode=dark] .ms-lg-3,html[data-netbox-color-mode=light] .ms-lg-3{margin-left:1rem!important}html .ms-lg-4,html[data-netbox-color-mode=dark] .ms-lg-4,html[data-netbox-color-mode=light] .ms-lg-4{margin-left:1.5rem!important}html .ms-lg-5,html[data-netbox-color-mode=dark] .ms-lg-5,html[data-netbox-color-mode=light] .ms-lg-5{margin-left:3rem!important}html .ms-lg-auto,html[data-netbox-color-mode=dark] .ms-lg-auto,html[data-netbox-color-mode=light] .ms-lg-auto{margin-left:auto!important}html .p-lg-0,html[data-netbox-color-mode=dark] .p-lg-0,html[data-netbox-color-mode=light] .p-lg-0{padding:0!important}html .p-lg-1,html[data-netbox-color-mode=dark] .p-lg-1,html[data-netbox-color-mode=light] .p-lg-1{padding:.25rem!important}html .p-lg-2,html[data-netbox-color-mode=dark] .p-lg-2,html[data-netbox-color-mode=light] .p-lg-2{padding:.5rem!important}html .p-lg-3,html[data-netbox-color-mode=dark] .p-lg-3,html[data-netbox-color-mode=light] .p-lg-3{padding:1rem!important}html .p-lg-4,html[data-netbox-color-mode=dark] .p-lg-4,html[data-netbox-color-mode=light] .p-lg-4{padding:1.5rem!important}html .p-lg-5,html[data-netbox-color-mode=dark] .p-lg-5,html[data-netbox-color-mode=light] .p-lg-5{padding:3rem!important}html .px-lg-0,html[data-netbox-color-mode=dark] .px-lg-0,html[data-netbox-color-mode=light] .px-lg-0{padding-right:0!important;padding-left:0!important}html .px-lg-1,html[data-netbox-color-mode=dark] .px-lg-1,html[data-netbox-color-mode=light] .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-lg-2,html[data-netbox-color-mode=dark] .px-lg-2,html[data-netbox-color-mode=light] .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-lg-3,html[data-netbox-color-mode=dark] .px-lg-3,html[data-netbox-color-mode=light] .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}html .px-lg-4,html[data-netbox-color-mode=dark] .px-lg-4,html[data-netbox-color-mode=light] .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-lg-5,html[data-netbox-color-mode=dark] .px-lg-5,html[data-netbox-color-mode=light] .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}html .py-lg-0,html[data-netbox-color-mode=dark] .py-lg-0,html[data-netbox-color-mode=light] .py-lg-0{padding-top:0!important;padding-bottom:0!important}html .py-lg-1,html[data-netbox-color-mode=dark] .py-lg-1,html[data-netbox-color-mode=light] .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-lg-2,html[data-netbox-color-mode=dark] .py-lg-2,html[data-netbox-color-mode=light] .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-lg-3,html[data-netbox-color-mode=dark] .py-lg-3,html[data-netbox-color-mode=light] .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-lg-4,html[data-netbox-color-mode=dark] .py-lg-4,html[data-netbox-color-mode=light] .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-lg-5,html[data-netbox-color-mode=dark] .py-lg-5,html[data-netbox-color-mode=light] .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-lg-0,html[data-netbox-color-mode=dark] .pt-lg-0,html[data-netbox-color-mode=light] .pt-lg-0{padding-top:0!important}html .pt-lg-1,html[data-netbox-color-mode=dark] .pt-lg-1,html[data-netbox-color-mode=light] .pt-lg-1{padding-top:.25rem!important}html .pt-lg-2,html[data-netbox-color-mode=dark] .pt-lg-2,html[data-netbox-color-mode=light] .pt-lg-2{padding-top:.5rem!important}html .pt-lg-3,html[data-netbox-color-mode=dark] .pt-lg-3,html[data-netbox-color-mode=light] .pt-lg-3{padding-top:1rem!important}html .pt-lg-4,html[data-netbox-color-mode=dark] .pt-lg-4,html[data-netbox-color-mode=light] .pt-lg-4{padding-top:1.5rem!important}html .pt-lg-5,html[data-netbox-color-mode=dark] .pt-lg-5,html[data-netbox-color-mode=light] .pt-lg-5{padding-top:3rem!important}html .pe-lg-0,html[data-netbox-color-mode=dark] .pe-lg-0,html[data-netbox-color-mode=light] .pe-lg-0{padding-right:0!important}html .pe-lg-1,html[data-netbox-color-mode=dark] .pe-lg-1,html[data-netbox-color-mode=light] .pe-lg-1{padding-right:.25rem!important}html .pe-lg-2,html[data-netbox-color-mode=dark] .pe-lg-2,html[data-netbox-color-mode=light] .pe-lg-2{padding-right:.5rem!important}html .pe-lg-3,html[data-netbox-color-mode=dark] .pe-lg-3,html[data-netbox-color-mode=light] .pe-lg-3{padding-right:1rem!important}html .pe-lg-4,html[data-netbox-color-mode=dark] .pe-lg-4,html[data-netbox-color-mode=light] .pe-lg-4{padding-right:1.5rem!important}html .pe-lg-5,html[data-netbox-color-mode=dark] .pe-lg-5,html[data-netbox-color-mode=light] .pe-lg-5{padding-right:3rem!important}html .pb-lg-0,html[data-netbox-color-mode=dark] .pb-lg-0,html[data-netbox-color-mode=light] .pb-lg-0{padding-bottom:0!important}html .pb-lg-1,html[data-netbox-color-mode=dark] .pb-lg-1,html[data-netbox-color-mode=light] .pb-lg-1{padding-bottom:.25rem!important}html .pb-lg-2,html[data-netbox-color-mode=dark] .pb-lg-2,html[data-netbox-color-mode=light] .pb-lg-2{padding-bottom:.5rem!important}html .pb-lg-3,html[data-netbox-color-mode=dark] .pb-lg-3,html[data-netbox-color-mode=light] .pb-lg-3{padding-bottom:1rem!important}html .pb-lg-4,html[data-netbox-color-mode=dark] .pb-lg-4,html[data-netbox-color-mode=light] .pb-lg-4{padding-bottom:1.5rem!important}html .pb-lg-5,html[data-netbox-color-mode=dark] .pb-lg-5,html[data-netbox-color-mode=light] .pb-lg-5{padding-bottom:3rem!important}html .ps-lg-0,html[data-netbox-color-mode=dark] .ps-lg-0,html[data-netbox-color-mode=light] .ps-lg-0{padding-left:0!important}html .ps-lg-1,html[data-netbox-color-mode=dark] .ps-lg-1,html[data-netbox-color-mode=light] .ps-lg-1{padding-left:.25rem!important}html .ps-lg-2,html[data-netbox-color-mode=dark] .ps-lg-2,html[data-netbox-color-mode=light] .ps-lg-2{padding-left:.5rem!important}html .ps-lg-3,html[data-netbox-color-mode=dark] .ps-lg-3,html[data-netbox-color-mode=light] .ps-lg-3{padding-left:1rem!important}html .ps-lg-4,html[data-netbox-color-mode=dark] .ps-lg-4,html[data-netbox-color-mode=light] .ps-lg-4{padding-left:1.5rem!important}html .ps-lg-5,html[data-netbox-color-mode=dark] .ps-lg-5,html[data-netbox-color-mode=light] .ps-lg-5{padding-left:3rem!important}html .text-lg-start,html[data-netbox-color-mode=dark] .text-lg-start,html[data-netbox-color-mode=light] .text-lg-start{text-align:left!important}html .text-lg-end,html[data-netbox-color-mode=dark] .text-lg-end,html[data-netbox-color-mode=light] .text-lg-end{text-align:right!important}html .text-lg-center,html[data-netbox-color-mode=dark] .text-lg-center,html[data-netbox-color-mode=light] .text-lg-center{text-align:center!important}}@media print and (min-width: 1200px){html .float-xl-start,html[data-netbox-color-mode=dark] .float-xl-start,html[data-netbox-color-mode=light] .float-xl-start{float:left!important}html .float-xl-end,html[data-netbox-color-mode=dark] .float-xl-end,html[data-netbox-color-mode=light] .float-xl-end{float:right!important}html .float-xl-none,html[data-netbox-color-mode=dark] .float-xl-none,html[data-netbox-color-mode=light] .float-xl-none{float:none!important}html .d-xl-inline,html[data-netbox-color-mode=dark] .d-xl-inline,html[data-netbox-color-mode=light] .d-xl-inline{display:inline!important}html .d-xl-inline-block,html[data-netbox-color-mode=dark] .d-xl-inline-block,html[data-netbox-color-mode=light] .d-xl-inline-block{display:inline-block!important}html .d-xl-block,html[data-netbox-color-mode=dark] .d-xl-block,html[data-netbox-color-mode=light] .d-xl-block{display:block!important}html .d-xl-grid,html[data-netbox-color-mode=dark] .d-xl-grid,html[data-netbox-color-mode=light] .d-xl-grid{display:grid!important}html .d-xl-table,html[data-netbox-color-mode=dark] .d-xl-table,html[data-netbox-color-mode=light] .d-xl-table{display:table!important}html .d-xl-table-row,html[data-netbox-color-mode=dark] .d-xl-table-row,html[data-netbox-color-mode=light] .d-xl-table-row{display:table-row!important}html .d-xl-table-cell,html[data-netbox-color-mode=dark] .d-xl-table-cell,html[data-netbox-color-mode=light] .d-xl-table-cell{display:table-cell!important}html .d-xl-flex,html[data-netbox-color-mode=dark] .d-xl-flex,html[data-netbox-color-mode=light] .d-xl-flex{display:flex!important}html .d-xl-inline-flex,html[data-netbox-color-mode=dark] .d-xl-inline-flex,html[data-netbox-color-mode=light] .d-xl-inline-flex{display:inline-flex!important}html .d-xl-none,html[data-netbox-color-mode=dark] .d-xl-none,html[data-netbox-color-mode=light] .d-xl-none{display:none!important}html .flex-xl-fill,html[data-netbox-color-mode=dark] .flex-xl-fill,html[data-netbox-color-mode=light] .flex-xl-fill{flex:1 1 auto!important}html .flex-xl-row,html[data-netbox-color-mode=dark] .flex-xl-row,html[data-netbox-color-mode=light] .flex-xl-row{flex-direction:row!important}html .flex-xl-column,html[data-netbox-color-mode=dark] .flex-xl-column,html[data-netbox-color-mode=light] .flex-xl-column{flex-direction:column!important}html .flex-xl-row-reverse,html[data-netbox-color-mode=dark] .flex-xl-row-reverse,html[data-netbox-color-mode=light] .flex-xl-row-reverse{flex-direction:row-reverse!important}html .flex-xl-column-reverse,html[data-netbox-color-mode=dark] .flex-xl-column-reverse,html[data-netbox-color-mode=light] .flex-xl-column-reverse{flex-direction:column-reverse!important}html .flex-xl-grow-0,html[data-netbox-color-mode=dark] .flex-xl-grow-0,html[data-netbox-color-mode=light] .flex-xl-grow-0{flex-grow:0!important}html .flex-xl-grow-1,html[data-netbox-color-mode=dark] .flex-xl-grow-1,html[data-netbox-color-mode=light] .flex-xl-grow-1{flex-grow:1!important}html .flex-xl-shrink-0,html[data-netbox-color-mode=dark] .flex-xl-shrink-0,html[data-netbox-color-mode=light] .flex-xl-shrink-0{flex-shrink:0!important}html .flex-xl-shrink-1,html[data-netbox-color-mode=dark] .flex-xl-shrink-1,html[data-netbox-color-mode=light] .flex-xl-shrink-1{flex-shrink:1!important}html .flex-xl-wrap,html[data-netbox-color-mode=dark] .flex-xl-wrap,html[data-netbox-color-mode=light] .flex-xl-wrap{flex-wrap:wrap!important}html .flex-xl-nowrap,html[data-netbox-color-mode=dark] .flex-xl-nowrap,html[data-netbox-color-mode=light] .flex-xl-nowrap{flex-wrap:nowrap!important}html .flex-xl-wrap-reverse,html[data-netbox-color-mode=dark] .flex-xl-wrap-reverse,html[data-netbox-color-mode=light] .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-xl-0,html[data-netbox-color-mode=dark] .gap-xl-0,html[data-netbox-color-mode=light] .gap-xl-0{gap:0!important}html .gap-xl-1,html[data-netbox-color-mode=dark] .gap-xl-1,html[data-netbox-color-mode=light] .gap-xl-1{gap:.25rem!important}html .gap-xl-2,html[data-netbox-color-mode=dark] .gap-xl-2,html[data-netbox-color-mode=light] .gap-xl-2{gap:.5rem!important}html .gap-xl-3,html[data-netbox-color-mode=dark] .gap-xl-3,html[data-netbox-color-mode=light] .gap-xl-3{gap:1rem!important}html .gap-xl-4,html[data-netbox-color-mode=dark] .gap-xl-4,html[data-netbox-color-mode=light] .gap-xl-4{gap:1.5rem!important}html .gap-xl-5,html[data-netbox-color-mode=dark] .gap-xl-5,html[data-netbox-color-mode=light] .gap-xl-5{gap:3rem!important}html .justify-content-xl-start,html[data-netbox-color-mode=dark] .justify-content-xl-start,html[data-netbox-color-mode=light] .justify-content-xl-start{justify-content:flex-start!important}html .justify-content-xl-end,html[data-netbox-color-mode=dark] .justify-content-xl-end,html[data-netbox-color-mode=light] .justify-content-xl-end{justify-content:flex-end!important}html .justify-content-xl-center,html[data-netbox-color-mode=dark] .justify-content-xl-center,html[data-netbox-color-mode=light] .justify-content-xl-center{justify-content:center!important}html .justify-content-xl-between,html[data-netbox-color-mode=dark] .justify-content-xl-between,html[data-netbox-color-mode=light] .justify-content-xl-between{justify-content:space-between!important}html .justify-content-xl-around,html[data-netbox-color-mode=dark] .justify-content-xl-around,html[data-netbox-color-mode=light] .justify-content-xl-around{justify-content:space-around!important}html .justify-content-xl-evenly,html[data-netbox-color-mode=dark] .justify-content-xl-evenly,html[data-netbox-color-mode=light] .justify-content-xl-evenly{justify-content:space-evenly!important}html .align-items-xl-start,html[data-netbox-color-mode=dark] .align-items-xl-start,html[data-netbox-color-mode=light] .align-items-xl-start{align-items:flex-start!important}html .align-items-xl-end,html[data-netbox-color-mode=dark] .align-items-xl-end,html[data-netbox-color-mode=light] .align-items-xl-end{align-items:flex-end!important}html .align-items-xl-center,html[data-netbox-color-mode=dark] .align-items-xl-center,html[data-netbox-color-mode=light] .align-items-xl-center{align-items:center!important}html .align-items-xl-baseline,html[data-netbox-color-mode=dark] .align-items-xl-baseline,html[data-netbox-color-mode=light] .align-items-xl-baseline{align-items:baseline!important}html .align-items-xl-stretch,html[data-netbox-color-mode=dark] .align-items-xl-stretch,html[data-netbox-color-mode=light] .align-items-xl-stretch{align-items:stretch!important}html .align-content-xl-start,html[data-netbox-color-mode=dark] .align-content-xl-start,html[data-netbox-color-mode=light] .align-content-xl-start{align-content:flex-start!important}html .align-content-xl-end,html[data-netbox-color-mode=dark] .align-content-xl-end,html[data-netbox-color-mode=light] .align-content-xl-end{align-content:flex-end!important}html .align-content-xl-center,html[data-netbox-color-mode=dark] .align-content-xl-center,html[data-netbox-color-mode=light] .align-content-xl-center{align-content:center!important}html .align-content-xl-between,html[data-netbox-color-mode=dark] .align-content-xl-between,html[data-netbox-color-mode=light] .align-content-xl-between{align-content:space-between!important}html .align-content-xl-around,html[data-netbox-color-mode=dark] .align-content-xl-around,html[data-netbox-color-mode=light] .align-content-xl-around{align-content:space-around!important}html .align-content-xl-stretch,html[data-netbox-color-mode=dark] .align-content-xl-stretch,html[data-netbox-color-mode=light] .align-content-xl-stretch{align-content:stretch!important}html .align-self-xl-auto,html[data-netbox-color-mode=dark] .align-self-xl-auto,html[data-netbox-color-mode=light] .align-self-xl-auto{align-self:auto!important}html .align-self-xl-start,html[data-netbox-color-mode=dark] .align-self-xl-start,html[data-netbox-color-mode=light] .align-self-xl-start{align-self:flex-start!important}html .align-self-xl-end,html[data-netbox-color-mode=dark] .align-self-xl-end,html[data-netbox-color-mode=light] .align-self-xl-end{align-self:flex-end!important}html .align-self-xl-center,html[data-netbox-color-mode=dark] .align-self-xl-center,html[data-netbox-color-mode=light] .align-self-xl-center{align-self:center!important}html .align-self-xl-baseline,html[data-netbox-color-mode=dark] .align-self-xl-baseline,html[data-netbox-color-mode=light] .align-self-xl-baseline{align-self:baseline!important}html .align-self-xl-stretch,html[data-netbox-color-mode=dark] .align-self-xl-stretch,html[data-netbox-color-mode=light] .align-self-xl-stretch{align-self:stretch!important}html .order-xl-first,html[data-netbox-color-mode=dark] .order-xl-first,html[data-netbox-color-mode=light] .order-xl-first{order:-1!important}html .order-xl-0,html[data-netbox-color-mode=dark] .order-xl-0,html[data-netbox-color-mode=light] .order-xl-0{order:0!important}html .order-xl-1,html[data-netbox-color-mode=dark] .order-xl-1,html[data-netbox-color-mode=light] .order-xl-1{order:1!important}html .order-xl-2,html[data-netbox-color-mode=dark] .order-xl-2,html[data-netbox-color-mode=light] .order-xl-2{order:2!important}html .order-xl-3,html[data-netbox-color-mode=dark] .order-xl-3,html[data-netbox-color-mode=light] .order-xl-3{order:3!important}html .order-xl-4,html[data-netbox-color-mode=dark] .order-xl-4,html[data-netbox-color-mode=light] .order-xl-4{order:4!important}html .order-xl-5,html[data-netbox-color-mode=dark] .order-xl-5,html[data-netbox-color-mode=light] .order-xl-5{order:5!important}html .order-xl-last,html[data-netbox-color-mode=dark] .order-xl-last,html[data-netbox-color-mode=light] .order-xl-last{order:6!important}html .m-xl-0,html[data-netbox-color-mode=dark] .m-xl-0,html[data-netbox-color-mode=light] .m-xl-0{margin:0!important}html .m-xl-1,html[data-netbox-color-mode=dark] .m-xl-1,html[data-netbox-color-mode=light] .m-xl-1{margin:.25rem!important}html .m-xl-2,html[data-netbox-color-mode=dark] .m-xl-2,html[data-netbox-color-mode=light] .m-xl-2{margin:.5rem!important}html .m-xl-3,html[data-netbox-color-mode=dark] .m-xl-3,html[data-netbox-color-mode=light] .m-xl-3{margin:1rem!important}html .m-xl-4,html[data-netbox-color-mode=dark] .m-xl-4,html[data-netbox-color-mode=light] .m-xl-4{margin:1.5rem!important}html .m-xl-5,html[data-netbox-color-mode=dark] .m-xl-5,html[data-netbox-color-mode=light] .m-xl-5{margin:3rem!important}html .m-xl-auto,html[data-netbox-color-mode=dark] .m-xl-auto,html[data-netbox-color-mode=light] .m-xl-auto{margin:auto!important}html .mx-xl-0,html[data-netbox-color-mode=dark] .mx-xl-0,html[data-netbox-color-mode=light] .mx-xl-0{margin-right:0!important;margin-left:0!important}html .mx-xl-1,html[data-netbox-color-mode=dark] .mx-xl-1,html[data-netbox-color-mode=light] .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-xl-2,html[data-netbox-color-mode=dark] .mx-xl-2,html[data-netbox-color-mode=light] .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-xl-3,html[data-netbox-color-mode=dark] .mx-xl-3,html[data-netbox-color-mode=light] .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-xl-4,html[data-netbox-color-mode=dark] .mx-xl-4,html[data-netbox-color-mode=light] .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-xl-5,html[data-netbox-color-mode=dark] .mx-xl-5,html[data-netbox-color-mode=light] .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-xl-auto,html[data-netbox-color-mode=dark] .mx-xl-auto,html[data-netbox-color-mode=light] .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}html .my-xl-0,html[data-netbox-color-mode=dark] .my-xl-0,html[data-netbox-color-mode=light] .my-xl-0{margin-top:0!important;margin-bottom:0!important}html .my-xl-1,html[data-netbox-color-mode=dark] .my-xl-1,html[data-netbox-color-mode=light] .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-xl-2,html[data-netbox-color-mode=dark] .my-xl-2,html[data-netbox-color-mode=light] .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-xl-3,html[data-netbox-color-mode=dark] .my-xl-3,html[data-netbox-color-mode=light] .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-xl-4,html[data-netbox-color-mode=dark] .my-xl-4,html[data-netbox-color-mode=light] .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-xl-5,html[data-netbox-color-mode=dark] .my-xl-5,html[data-netbox-color-mode=light] .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-xl-auto,html[data-netbox-color-mode=dark] .my-xl-auto,html[data-netbox-color-mode=light] .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-xl-0,html[data-netbox-color-mode=dark] .mt-xl-0,html[data-netbox-color-mode=light] .mt-xl-0{margin-top:0!important}html .mt-xl-1,html[data-netbox-color-mode=dark] .mt-xl-1,html[data-netbox-color-mode=light] .mt-xl-1{margin-top:.25rem!important}html .mt-xl-2,html[data-netbox-color-mode=dark] .mt-xl-2,html[data-netbox-color-mode=light] .mt-xl-2{margin-top:.5rem!important}html .mt-xl-3,html[data-netbox-color-mode=dark] .mt-xl-3,html[data-netbox-color-mode=light] .mt-xl-3{margin-top:1rem!important}html .mt-xl-4,html[data-netbox-color-mode=dark] .mt-xl-4,html[data-netbox-color-mode=light] .mt-xl-4{margin-top:1.5rem!important}html .mt-xl-5,html[data-netbox-color-mode=dark] .mt-xl-5,html[data-netbox-color-mode=light] .mt-xl-5{margin-top:3rem!important}html .mt-xl-auto,html[data-netbox-color-mode=dark] .mt-xl-auto,html[data-netbox-color-mode=light] .mt-xl-auto{margin-top:auto!important}html .me-xl-0,html[data-netbox-color-mode=dark] .me-xl-0,html[data-netbox-color-mode=light] .me-xl-0{margin-right:0!important}html .me-xl-1,html[data-netbox-color-mode=dark] .me-xl-1,html[data-netbox-color-mode=light] .me-xl-1{margin-right:.25rem!important}html .me-xl-2,html[data-netbox-color-mode=dark] .me-xl-2,html[data-netbox-color-mode=light] .me-xl-2{margin-right:.5rem!important}html .me-xl-3,html[data-netbox-color-mode=dark] .me-xl-3,html[data-netbox-color-mode=light] .me-xl-3{margin-right:1rem!important}html .me-xl-4,html[data-netbox-color-mode=dark] .me-xl-4,html[data-netbox-color-mode=light] .me-xl-4{margin-right:1.5rem!important}html .me-xl-5,html[data-netbox-color-mode=dark] .me-xl-5,html[data-netbox-color-mode=light] .me-xl-5{margin-right:3rem!important}html .me-xl-auto,html[data-netbox-color-mode=dark] .me-xl-auto,html[data-netbox-color-mode=light] .me-xl-auto{margin-right:auto!important}html .mb-xl-0,html[data-netbox-color-mode=dark] .mb-xl-0,html[data-netbox-color-mode=light] .mb-xl-0{margin-bottom:0!important}html .mb-xl-1,html[data-netbox-color-mode=dark] .mb-xl-1,html[data-netbox-color-mode=light] .mb-xl-1{margin-bottom:.25rem!important}html .mb-xl-2,html[data-netbox-color-mode=dark] .mb-xl-2,html[data-netbox-color-mode=light] .mb-xl-2{margin-bottom:.5rem!important}html .mb-xl-3,html[data-netbox-color-mode=dark] .mb-xl-3,html[data-netbox-color-mode=light] .mb-xl-3{margin-bottom:1rem!important}html .mb-xl-4,html[data-netbox-color-mode=dark] .mb-xl-4,html[data-netbox-color-mode=light] .mb-xl-4{margin-bottom:1.5rem!important}html .mb-xl-5,html[data-netbox-color-mode=dark] .mb-xl-5,html[data-netbox-color-mode=light] .mb-xl-5{margin-bottom:3rem!important}html .mb-xl-auto,html[data-netbox-color-mode=dark] .mb-xl-auto,html[data-netbox-color-mode=light] .mb-xl-auto{margin-bottom:auto!important}html .ms-xl-0,html[data-netbox-color-mode=dark] .ms-xl-0,html[data-netbox-color-mode=light] .ms-xl-0{margin-left:0!important}html .ms-xl-1,html[data-netbox-color-mode=dark] .ms-xl-1,html[data-netbox-color-mode=light] .ms-xl-1{margin-left:.25rem!important}html .ms-xl-2,html[data-netbox-color-mode=dark] .ms-xl-2,html[data-netbox-color-mode=light] .ms-xl-2{margin-left:.5rem!important}html .ms-xl-3,html[data-netbox-color-mode=dark] .ms-xl-3,html[data-netbox-color-mode=light] .ms-xl-3{margin-left:1rem!important}html .ms-xl-4,html[data-netbox-color-mode=dark] .ms-xl-4,html[data-netbox-color-mode=light] .ms-xl-4{margin-left:1.5rem!important}html .ms-xl-5,html[data-netbox-color-mode=dark] .ms-xl-5,html[data-netbox-color-mode=light] .ms-xl-5{margin-left:3rem!important}html .ms-xl-auto,html[data-netbox-color-mode=dark] .ms-xl-auto,html[data-netbox-color-mode=light] .ms-xl-auto{margin-left:auto!important}html .p-xl-0,html[data-netbox-color-mode=dark] .p-xl-0,html[data-netbox-color-mode=light] .p-xl-0{padding:0!important}html .p-xl-1,html[data-netbox-color-mode=dark] .p-xl-1,html[data-netbox-color-mode=light] .p-xl-1{padding:.25rem!important}html .p-xl-2,html[data-netbox-color-mode=dark] .p-xl-2,html[data-netbox-color-mode=light] .p-xl-2{padding:.5rem!important}html .p-xl-3,html[data-netbox-color-mode=dark] .p-xl-3,html[data-netbox-color-mode=light] .p-xl-3{padding:1rem!important}html .p-xl-4,html[data-netbox-color-mode=dark] .p-xl-4,html[data-netbox-color-mode=light] .p-xl-4{padding:1.5rem!important}html .p-xl-5,html[data-netbox-color-mode=dark] .p-xl-5,html[data-netbox-color-mode=light] .p-xl-5{padding:3rem!important}html .px-xl-0,html[data-netbox-color-mode=dark] .px-xl-0,html[data-netbox-color-mode=light] .px-xl-0{padding-right:0!important;padding-left:0!important}html .px-xl-1,html[data-netbox-color-mode=dark] .px-xl-1,html[data-netbox-color-mode=light] .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-xl-2,html[data-netbox-color-mode=dark] .px-xl-2,html[data-netbox-color-mode=light] .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-xl-3,html[data-netbox-color-mode=dark] .px-xl-3,html[data-netbox-color-mode=light] .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}html .px-xl-4,html[data-netbox-color-mode=dark] .px-xl-4,html[data-netbox-color-mode=light] .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-xl-5,html[data-netbox-color-mode=dark] .px-xl-5,html[data-netbox-color-mode=light] .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}html .py-xl-0,html[data-netbox-color-mode=dark] .py-xl-0,html[data-netbox-color-mode=light] .py-xl-0{padding-top:0!important;padding-bottom:0!important}html .py-xl-1,html[data-netbox-color-mode=dark] .py-xl-1,html[data-netbox-color-mode=light] .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-xl-2,html[data-netbox-color-mode=dark] .py-xl-2,html[data-netbox-color-mode=light] .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-xl-3,html[data-netbox-color-mode=dark] .py-xl-3,html[data-netbox-color-mode=light] .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-xl-4,html[data-netbox-color-mode=dark] .py-xl-4,html[data-netbox-color-mode=light] .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-xl-5,html[data-netbox-color-mode=dark] .py-xl-5,html[data-netbox-color-mode=light] .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-xl-0,html[data-netbox-color-mode=dark] .pt-xl-0,html[data-netbox-color-mode=light] .pt-xl-0{padding-top:0!important}html .pt-xl-1,html[data-netbox-color-mode=dark] .pt-xl-1,html[data-netbox-color-mode=light] .pt-xl-1{padding-top:.25rem!important}html .pt-xl-2,html[data-netbox-color-mode=dark] .pt-xl-2,html[data-netbox-color-mode=light] .pt-xl-2{padding-top:.5rem!important}html .pt-xl-3,html[data-netbox-color-mode=dark] .pt-xl-3,html[data-netbox-color-mode=light] .pt-xl-3{padding-top:1rem!important}html .pt-xl-4,html[data-netbox-color-mode=dark] .pt-xl-4,html[data-netbox-color-mode=light] .pt-xl-4{padding-top:1.5rem!important}html .pt-xl-5,html[data-netbox-color-mode=dark] .pt-xl-5,html[data-netbox-color-mode=light] .pt-xl-5{padding-top:3rem!important}html .pe-xl-0,html[data-netbox-color-mode=dark] .pe-xl-0,html[data-netbox-color-mode=light] .pe-xl-0{padding-right:0!important}html .pe-xl-1,html[data-netbox-color-mode=dark] .pe-xl-1,html[data-netbox-color-mode=light] .pe-xl-1{padding-right:.25rem!important}html .pe-xl-2,html[data-netbox-color-mode=dark] .pe-xl-2,html[data-netbox-color-mode=light] .pe-xl-2{padding-right:.5rem!important}html .pe-xl-3,html[data-netbox-color-mode=dark] .pe-xl-3,html[data-netbox-color-mode=light] .pe-xl-3{padding-right:1rem!important}html .pe-xl-4,html[data-netbox-color-mode=dark] .pe-xl-4,html[data-netbox-color-mode=light] .pe-xl-4{padding-right:1.5rem!important}html .pe-xl-5,html[data-netbox-color-mode=dark] .pe-xl-5,html[data-netbox-color-mode=light] .pe-xl-5{padding-right:3rem!important}html .pb-xl-0,html[data-netbox-color-mode=dark] .pb-xl-0,html[data-netbox-color-mode=light] .pb-xl-0{padding-bottom:0!important}html .pb-xl-1,html[data-netbox-color-mode=dark] .pb-xl-1,html[data-netbox-color-mode=light] .pb-xl-1{padding-bottom:.25rem!important}html .pb-xl-2,html[data-netbox-color-mode=dark] .pb-xl-2,html[data-netbox-color-mode=light] .pb-xl-2{padding-bottom:.5rem!important}html .pb-xl-3,html[data-netbox-color-mode=dark] .pb-xl-3,html[data-netbox-color-mode=light] .pb-xl-3{padding-bottom:1rem!important}html .pb-xl-4,html[data-netbox-color-mode=dark] .pb-xl-4,html[data-netbox-color-mode=light] .pb-xl-4{padding-bottom:1.5rem!important}html .pb-xl-5,html[data-netbox-color-mode=dark] .pb-xl-5,html[data-netbox-color-mode=light] .pb-xl-5{padding-bottom:3rem!important}html .ps-xl-0,html[data-netbox-color-mode=dark] .ps-xl-0,html[data-netbox-color-mode=light] .ps-xl-0{padding-left:0!important}html .ps-xl-1,html[data-netbox-color-mode=dark] .ps-xl-1,html[data-netbox-color-mode=light] .ps-xl-1{padding-left:.25rem!important}html .ps-xl-2,html[data-netbox-color-mode=dark] .ps-xl-2,html[data-netbox-color-mode=light] .ps-xl-2{padding-left:.5rem!important}html .ps-xl-3,html[data-netbox-color-mode=dark] .ps-xl-3,html[data-netbox-color-mode=light] .ps-xl-3{padding-left:1rem!important}html .ps-xl-4,html[data-netbox-color-mode=dark] .ps-xl-4,html[data-netbox-color-mode=light] .ps-xl-4{padding-left:1.5rem!important}html .ps-xl-5,html[data-netbox-color-mode=dark] .ps-xl-5,html[data-netbox-color-mode=light] .ps-xl-5{padding-left:3rem!important}html .text-xl-start,html[data-netbox-color-mode=dark] .text-xl-start,html[data-netbox-color-mode=light] .text-xl-start{text-align:left!important}html .text-xl-end,html[data-netbox-color-mode=dark] .text-xl-end,html[data-netbox-color-mode=light] .text-xl-end{text-align:right!important}html .text-xl-center,html[data-netbox-color-mode=dark] .text-xl-center,html[data-netbox-color-mode=light] .text-xl-center{text-align:center!important}}@media print and (min-width: 1400px){html .float-xxl-start,html[data-netbox-color-mode=dark] .float-xxl-start,html[data-netbox-color-mode=light] .float-xxl-start{float:left!important}html .float-xxl-end,html[data-netbox-color-mode=dark] .float-xxl-end,html[data-netbox-color-mode=light] .float-xxl-end{float:right!important}html .float-xxl-none,html[data-netbox-color-mode=dark] .float-xxl-none,html[data-netbox-color-mode=light] .float-xxl-none{float:none!important}html .d-xxl-inline,html[data-netbox-color-mode=dark] .d-xxl-inline,html[data-netbox-color-mode=light] .d-xxl-inline{display:inline!important}html .d-xxl-inline-block,html[data-netbox-color-mode=dark] .d-xxl-inline-block,html[data-netbox-color-mode=light] .d-xxl-inline-block{display:inline-block!important}html .d-xxl-block,html[data-netbox-color-mode=dark] .d-xxl-block,html[data-netbox-color-mode=light] .d-xxl-block{display:block!important}html .d-xxl-grid,html[data-netbox-color-mode=dark] .d-xxl-grid,html[data-netbox-color-mode=light] .d-xxl-grid{display:grid!important}html .d-xxl-table,html[data-netbox-color-mode=dark] .d-xxl-table,html[data-netbox-color-mode=light] .d-xxl-table{display:table!important}html .d-xxl-table-row,html[data-netbox-color-mode=dark] .d-xxl-table-row,html[data-netbox-color-mode=light] .d-xxl-table-row{display:table-row!important}html .d-xxl-table-cell,html[data-netbox-color-mode=dark] .d-xxl-table-cell,html[data-netbox-color-mode=light] .d-xxl-table-cell{display:table-cell!important}html .d-xxl-flex,html[data-netbox-color-mode=dark] .d-xxl-flex,html[data-netbox-color-mode=light] .d-xxl-flex{display:flex!important}html .d-xxl-inline-flex,html[data-netbox-color-mode=dark] .d-xxl-inline-flex,html[data-netbox-color-mode=light] .d-xxl-inline-flex{display:inline-flex!important}html .d-xxl-none,html[data-netbox-color-mode=dark] .d-xxl-none,html[data-netbox-color-mode=light] .d-xxl-none{display:none!important}html .flex-xxl-fill,html[data-netbox-color-mode=dark] .flex-xxl-fill,html[data-netbox-color-mode=light] .flex-xxl-fill{flex:1 1 auto!important}html .flex-xxl-row,html[data-netbox-color-mode=dark] .flex-xxl-row,html[data-netbox-color-mode=light] .flex-xxl-row{flex-direction:row!important}html .flex-xxl-column,html[data-netbox-color-mode=dark] .flex-xxl-column,html[data-netbox-color-mode=light] .flex-xxl-column{flex-direction:column!important}html .flex-xxl-row-reverse,html[data-netbox-color-mode=dark] .flex-xxl-row-reverse,html[data-netbox-color-mode=light] .flex-xxl-row-reverse{flex-direction:row-reverse!important}html .flex-xxl-column-reverse,html[data-netbox-color-mode=dark] .flex-xxl-column-reverse,html[data-netbox-color-mode=light] .flex-xxl-column-reverse{flex-direction:column-reverse!important}html .flex-xxl-grow-0,html[data-netbox-color-mode=dark] .flex-xxl-grow-0,html[data-netbox-color-mode=light] .flex-xxl-grow-0{flex-grow:0!important}html .flex-xxl-grow-1,html[data-netbox-color-mode=dark] .flex-xxl-grow-1,html[data-netbox-color-mode=light] .flex-xxl-grow-1{flex-grow:1!important}html .flex-xxl-shrink-0,html[data-netbox-color-mode=dark] .flex-xxl-shrink-0,html[data-netbox-color-mode=light] .flex-xxl-shrink-0{flex-shrink:0!important}html .flex-xxl-shrink-1,html[data-netbox-color-mode=dark] .flex-xxl-shrink-1,html[data-netbox-color-mode=light] .flex-xxl-shrink-1{flex-shrink:1!important}html .flex-xxl-wrap,html[data-netbox-color-mode=dark] .flex-xxl-wrap,html[data-netbox-color-mode=light] .flex-xxl-wrap{flex-wrap:wrap!important}html .flex-xxl-nowrap,html[data-netbox-color-mode=dark] .flex-xxl-nowrap,html[data-netbox-color-mode=light] .flex-xxl-nowrap{flex-wrap:nowrap!important}html .flex-xxl-wrap-reverse,html[data-netbox-color-mode=dark] .flex-xxl-wrap-reverse,html[data-netbox-color-mode=light] .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-xxl-0,html[data-netbox-color-mode=dark] .gap-xxl-0,html[data-netbox-color-mode=light] .gap-xxl-0{gap:0!important}html .gap-xxl-1,html[data-netbox-color-mode=dark] .gap-xxl-1,html[data-netbox-color-mode=light] .gap-xxl-1{gap:.25rem!important}html .gap-xxl-2,html[data-netbox-color-mode=dark] .gap-xxl-2,html[data-netbox-color-mode=light] .gap-xxl-2{gap:.5rem!important}html .gap-xxl-3,html[data-netbox-color-mode=dark] .gap-xxl-3,html[data-netbox-color-mode=light] .gap-xxl-3{gap:1rem!important}html .gap-xxl-4,html[data-netbox-color-mode=dark] .gap-xxl-4,html[data-netbox-color-mode=light] .gap-xxl-4{gap:1.5rem!important}html .gap-xxl-5,html[data-netbox-color-mode=dark] .gap-xxl-5,html[data-netbox-color-mode=light] .gap-xxl-5{gap:3rem!important}html .justify-content-xxl-start,html[data-netbox-color-mode=dark] .justify-content-xxl-start,html[data-netbox-color-mode=light] .justify-content-xxl-start{justify-content:flex-start!important}html .justify-content-xxl-end,html[data-netbox-color-mode=dark] .justify-content-xxl-end,html[data-netbox-color-mode=light] .justify-content-xxl-end{justify-content:flex-end!important}html .justify-content-xxl-center,html[data-netbox-color-mode=dark] .justify-content-xxl-center,html[data-netbox-color-mode=light] .justify-content-xxl-center{justify-content:center!important}html .justify-content-xxl-between,html[data-netbox-color-mode=dark] .justify-content-xxl-between,html[data-netbox-color-mode=light] .justify-content-xxl-between{justify-content:space-between!important}html .justify-content-xxl-around,html[data-netbox-color-mode=dark] .justify-content-xxl-around,html[data-netbox-color-mode=light] .justify-content-xxl-around{justify-content:space-around!important}html .justify-content-xxl-evenly,html[data-netbox-color-mode=dark] .justify-content-xxl-evenly,html[data-netbox-color-mode=light] .justify-content-xxl-evenly{justify-content:space-evenly!important}html .align-items-xxl-start,html[data-netbox-color-mode=dark] .align-items-xxl-start,html[data-netbox-color-mode=light] .align-items-xxl-start{align-items:flex-start!important}html .align-items-xxl-end,html[data-netbox-color-mode=dark] .align-items-xxl-end,html[data-netbox-color-mode=light] .align-items-xxl-end{align-items:flex-end!important}html .align-items-xxl-center,html[data-netbox-color-mode=dark] .align-items-xxl-center,html[data-netbox-color-mode=light] .align-items-xxl-center{align-items:center!important}html .align-items-xxl-baseline,html[data-netbox-color-mode=dark] .align-items-xxl-baseline,html[data-netbox-color-mode=light] .align-items-xxl-baseline{align-items:baseline!important}html .align-items-xxl-stretch,html[data-netbox-color-mode=dark] .align-items-xxl-stretch,html[data-netbox-color-mode=light] .align-items-xxl-stretch{align-items:stretch!important}html .align-content-xxl-start,html[data-netbox-color-mode=dark] .align-content-xxl-start,html[data-netbox-color-mode=light] .align-content-xxl-start{align-content:flex-start!important}html .align-content-xxl-end,html[data-netbox-color-mode=dark] .align-content-xxl-end,html[data-netbox-color-mode=light] .align-content-xxl-end{align-content:flex-end!important}html .align-content-xxl-center,html[data-netbox-color-mode=dark] .align-content-xxl-center,html[data-netbox-color-mode=light] .align-content-xxl-center{align-content:center!important}html .align-content-xxl-between,html[data-netbox-color-mode=dark] .align-content-xxl-between,html[data-netbox-color-mode=light] .align-content-xxl-between{align-content:space-between!important}html .align-content-xxl-around,html[data-netbox-color-mode=dark] .align-content-xxl-around,html[data-netbox-color-mode=light] .align-content-xxl-around{align-content:space-around!important}html .align-content-xxl-stretch,html[data-netbox-color-mode=dark] .align-content-xxl-stretch,html[data-netbox-color-mode=light] .align-content-xxl-stretch{align-content:stretch!important}html .align-self-xxl-auto,html[data-netbox-color-mode=dark] .align-self-xxl-auto,html[data-netbox-color-mode=light] .align-self-xxl-auto{align-self:auto!important}html .align-self-xxl-start,html[data-netbox-color-mode=dark] .align-self-xxl-start,html[data-netbox-color-mode=light] .align-self-xxl-start{align-self:flex-start!important}html .align-self-xxl-end,html[data-netbox-color-mode=dark] .align-self-xxl-end,html[data-netbox-color-mode=light] .align-self-xxl-end{align-self:flex-end!important}html .align-self-xxl-center,html[data-netbox-color-mode=dark] .align-self-xxl-center,html[data-netbox-color-mode=light] .align-self-xxl-center{align-self:center!important}html .align-self-xxl-baseline,html[data-netbox-color-mode=dark] .align-self-xxl-baseline,html[data-netbox-color-mode=light] .align-self-xxl-baseline{align-self:baseline!important}html .align-self-xxl-stretch,html[data-netbox-color-mode=dark] .align-self-xxl-stretch,html[data-netbox-color-mode=light] .align-self-xxl-stretch{align-self:stretch!important}html .order-xxl-first,html[data-netbox-color-mode=dark] .order-xxl-first,html[data-netbox-color-mode=light] .order-xxl-first{order:-1!important}html .order-xxl-0,html[data-netbox-color-mode=dark] .order-xxl-0,html[data-netbox-color-mode=light] .order-xxl-0{order:0!important}html .order-xxl-1,html[data-netbox-color-mode=dark] .order-xxl-1,html[data-netbox-color-mode=light] .order-xxl-1{order:1!important}html .order-xxl-2,html[data-netbox-color-mode=dark] .order-xxl-2,html[data-netbox-color-mode=light] .order-xxl-2{order:2!important}html .order-xxl-3,html[data-netbox-color-mode=dark] .order-xxl-3,html[data-netbox-color-mode=light] .order-xxl-3{order:3!important}html .order-xxl-4,html[data-netbox-color-mode=dark] .order-xxl-4,html[data-netbox-color-mode=light] .order-xxl-4{order:4!important}html .order-xxl-5,html[data-netbox-color-mode=dark] .order-xxl-5,html[data-netbox-color-mode=light] .order-xxl-5{order:5!important}html .order-xxl-last,html[data-netbox-color-mode=dark] .order-xxl-last,html[data-netbox-color-mode=light] .order-xxl-last{order:6!important}html .m-xxl-0,html[data-netbox-color-mode=dark] .m-xxl-0,html[data-netbox-color-mode=light] .m-xxl-0{margin:0!important}html .m-xxl-1,html[data-netbox-color-mode=dark] .m-xxl-1,html[data-netbox-color-mode=light] .m-xxl-1{margin:.25rem!important}html .m-xxl-2,html[data-netbox-color-mode=dark] .m-xxl-2,html[data-netbox-color-mode=light] .m-xxl-2{margin:.5rem!important}html .m-xxl-3,html[data-netbox-color-mode=dark] .m-xxl-3,html[data-netbox-color-mode=light] .m-xxl-3{margin:1rem!important}html .m-xxl-4,html[data-netbox-color-mode=dark] .m-xxl-4,html[data-netbox-color-mode=light] .m-xxl-4{margin:1.5rem!important}html .m-xxl-5,html[data-netbox-color-mode=dark] .m-xxl-5,html[data-netbox-color-mode=light] .m-xxl-5{margin:3rem!important}html .m-xxl-auto,html[data-netbox-color-mode=dark] .m-xxl-auto,html[data-netbox-color-mode=light] .m-xxl-auto{margin:auto!important}html .mx-xxl-0,html[data-netbox-color-mode=dark] .mx-xxl-0,html[data-netbox-color-mode=light] .mx-xxl-0{margin-right:0!important;margin-left:0!important}html .mx-xxl-1,html[data-netbox-color-mode=dark] .mx-xxl-1,html[data-netbox-color-mode=light] .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-xxl-2,html[data-netbox-color-mode=dark] .mx-xxl-2,html[data-netbox-color-mode=light] .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-xxl-3,html[data-netbox-color-mode=dark] .mx-xxl-3,html[data-netbox-color-mode=light] .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-xxl-4,html[data-netbox-color-mode=dark] .mx-xxl-4,html[data-netbox-color-mode=light] .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-xxl-5,html[data-netbox-color-mode=dark] .mx-xxl-5,html[data-netbox-color-mode=light] .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-xxl-auto,html[data-netbox-color-mode=dark] .mx-xxl-auto,html[data-netbox-color-mode=light] .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}html .my-xxl-0,html[data-netbox-color-mode=dark] .my-xxl-0,html[data-netbox-color-mode=light] .my-xxl-0{margin-top:0!important;margin-bottom:0!important}html .my-xxl-1,html[data-netbox-color-mode=dark] .my-xxl-1,html[data-netbox-color-mode=light] .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-xxl-2,html[data-netbox-color-mode=dark] .my-xxl-2,html[data-netbox-color-mode=light] .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-xxl-3,html[data-netbox-color-mode=dark] .my-xxl-3,html[data-netbox-color-mode=light] .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-xxl-4,html[data-netbox-color-mode=dark] .my-xxl-4,html[data-netbox-color-mode=light] .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-xxl-5,html[data-netbox-color-mode=dark] .my-xxl-5,html[data-netbox-color-mode=light] .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-xxl-auto,html[data-netbox-color-mode=dark] .my-xxl-auto,html[data-netbox-color-mode=light] .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-xxl-0,html[data-netbox-color-mode=dark] .mt-xxl-0,html[data-netbox-color-mode=light] .mt-xxl-0{margin-top:0!important}html .mt-xxl-1,html[data-netbox-color-mode=dark] .mt-xxl-1,html[data-netbox-color-mode=light] .mt-xxl-1{margin-top:.25rem!important}html .mt-xxl-2,html[data-netbox-color-mode=dark] .mt-xxl-2,html[data-netbox-color-mode=light] .mt-xxl-2{margin-top:.5rem!important}html .mt-xxl-3,html[data-netbox-color-mode=dark] .mt-xxl-3,html[data-netbox-color-mode=light] .mt-xxl-3{margin-top:1rem!important}html .mt-xxl-4,html[data-netbox-color-mode=dark] .mt-xxl-4,html[data-netbox-color-mode=light] .mt-xxl-4{margin-top:1.5rem!important}html .mt-xxl-5,html[data-netbox-color-mode=dark] .mt-xxl-5,html[data-netbox-color-mode=light] .mt-xxl-5{margin-top:3rem!important}html .mt-xxl-auto,html[data-netbox-color-mode=dark] .mt-xxl-auto,html[data-netbox-color-mode=light] .mt-xxl-auto{margin-top:auto!important}html .me-xxl-0,html[data-netbox-color-mode=dark] .me-xxl-0,html[data-netbox-color-mode=light] .me-xxl-0{margin-right:0!important}html .me-xxl-1,html[data-netbox-color-mode=dark] .me-xxl-1,html[data-netbox-color-mode=light] .me-xxl-1{margin-right:.25rem!important}html .me-xxl-2,html[data-netbox-color-mode=dark] .me-xxl-2,html[data-netbox-color-mode=light] .me-xxl-2{margin-right:.5rem!important}html .me-xxl-3,html[data-netbox-color-mode=dark] .me-xxl-3,html[data-netbox-color-mode=light] .me-xxl-3{margin-right:1rem!important}html .me-xxl-4,html[data-netbox-color-mode=dark] .me-xxl-4,html[data-netbox-color-mode=light] .me-xxl-4{margin-right:1.5rem!important}html .me-xxl-5,html[data-netbox-color-mode=dark] .me-xxl-5,html[data-netbox-color-mode=light] .me-xxl-5{margin-right:3rem!important}html .me-xxl-auto,html[data-netbox-color-mode=dark] .me-xxl-auto,html[data-netbox-color-mode=light] .me-xxl-auto{margin-right:auto!important}html .mb-xxl-0,html[data-netbox-color-mode=dark] .mb-xxl-0,html[data-netbox-color-mode=light] .mb-xxl-0{margin-bottom:0!important}html .mb-xxl-1,html[data-netbox-color-mode=dark] .mb-xxl-1,html[data-netbox-color-mode=light] .mb-xxl-1{margin-bottom:.25rem!important}html .mb-xxl-2,html[data-netbox-color-mode=dark] .mb-xxl-2,html[data-netbox-color-mode=light] .mb-xxl-2{margin-bottom:.5rem!important}html .mb-xxl-3,html[data-netbox-color-mode=dark] .mb-xxl-3,html[data-netbox-color-mode=light] .mb-xxl-3{margin-bottom:1rem!important}html .mb-xxl-4,html[data-netbox-color-mode=dark] .mb-xxl-4,html[data-netbox-color-mode=light] .mb-xxl-4{margin-bottom:1.5rem!important}html .mb-xxl-5,html[data-netbox-color-mode=dark] .mb-xxl-5,html[data-netbox-color-mode=light] .mb-xxl-5{margin-bottom:3rem!important}html .mb-xxl-auto,html[data-netbox-color-mode=dark] .mb-xxl-auto,html[data-netbox-color-mode=light] .mb-xxl-auto{margin-bottom:auto!important}html .ms-xxl-0,html[data-netbox-color-mode=dark] .ms-xxl-0,html[data-netbox-color-mode=light] .ms-xxl-0{margin-left:0!important}html .ms-xxl-1,html[data-netbox-color-mode=dark] .ms-xxl-1,html[data-netbox-color-mode=light] .ms-xxl-1{margin-left:.25rem!important}html .ms-xxl-2,html[data-netbox-color-mode=dark] .ms-xxl-2,html[data-netbox-color-mode=light] .ms-xxl-2{margin-left:.5rem!important}html .ms-xxl-3,html[data-netbox-color-mode=dark] .ms-xxl-3,html[data-netbox-color-mode=light] .ms-xxl-3{margin-left:1rem!important}html .ms-xxl-4,html[data-netbox-color-mode=dark] .ms-xxl-4,html[data-netbox-color-mode=light] .ms-xxl-4{margin-left:1.5rem!important}html .ms-xxl-5,html[data-netbox-color-mode=dark] .ms-xxl-5,html[data-netbox-color-mode=light] .ms-xxl-5{margin-left:3rem!important}html .ms-xxl-auto,html[data-netbox-color-mode=dark] .ms-xxl-auto,html[data-netbox-color-mode=light] .ms-xxl-auto{margin-left:auto!important}html .p-xxl-0,html[data-netbox-color-mode=dark] .p-xxl-0,html[data-netbox-color-mode=light] .p-xxl-0{padding:0!important}html .p-xxl-1,html[data-netbox-color-mode=dark] .p-xxl-1,html[data-netbox-color-mode=light] .p-xxl-1{padding:.25rem!important}html .p-xxl-2,html[data-netbox-color-mode=dark] .p-xxl-2,html[data-netbox-color-mode=light] .p-xxl-2{padding:.5rem!important}html .p-xxl-3,html[data-netbox-color-mode=dark] .p-xxl-3,html[data-netbox-color-mode=light] .p-xxl-3{padding:1rem!important}html .p-xxl-4,html[data-netbox-color-mode=dark] .p-xxl-4,html[data-netbox-color-mode=light] .p-xxl-4{padding:1.5rem!important}html .p-xxl-5,html[data-netbox-color-mode=dark] .p-xxl-5,html[data-netbox-color-mode=light] .p-xxl-5{padding:3rem!important}html .px-xxl-0,html[data-netbox-color-mode=dark] .px-xxl-0,html[data-netbox-color-mode=light] .px-xxl-0{padding-right:0!important;padding-left:0!important}html .px-xxl-1,html[data-netbox-color-mode=dark] .px-xxl-1,html[data-netbox-color-mode=light] .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-xxl-2,html[data-netbox-color-mode=dark] .px-xxl-2,html[data-netbox-color-mode=light] .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-xxl-3,html[data-netbox-color-mode=dark] .px-xxl-3,html[data-netbox-color-mode=light] .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}html .px-xxl-4,html[data-netbox-color-mode=dark] .px-xxl-4,html[data-netbox-color-mode=light] .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-xxl-5,html[data-netbox-color-mode=dark] .px-xxl-5,html[data-netbox-color-mode=light] .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}html .py-xxl-0,html[data-netbox-color-mode=dark] .py-xxl-0,html[data-netbox-color-mode=light] .py-xxl-0{padding-top:0!important;padding-bottom:0!important}html .py-xxl-1,html[data-netbox-color-mode=dark] .py-xxl-1,html[data-netbox-color-mode=light] .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-xxl-2,html[data-netbox-color-mode=dark] .py-xxl-2,html[data-netbox-color-mode=light] .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-xxl-3,html[data-netbox-color-mode=dark] .py-xxl-3,html[data-netbox-color-mode=light] .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-xxl-4,html[data-netbox-color-mode=dark] .py-xxl-4,html[data-netbox-color-mode=light] .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-xxl-5,html[data-netbox-color-mode=dark] .py-xxl-5,html[data-netbox-color-mode=light] .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-xxl-0,html[data-netbox-color-mode=dark] .pt-xxl-0,html[data-netbox-color-mode=light] .pt-xxl-0{padding-top:0!important}html .pt-xxl-1,html[data-netbox-color-mode=dark] .pt-xxl-1,html[data-netbox-color-mode=light] .pt-xxl-1{padding-top:.25rem!important}html .pt-xxl-2,html[data-netbox-color-mode=dark] .pt-xxl-2,html[data-netbox-color-mode=light] .pt-xxl-2{padding-top:.5rem!important}html .pt-xxl-3,html[data-netbox-color-mode=dark] .pt-xxl-3,html[data-netbox-color-mode=light] .pt-xxl-3{padding-top:1rem!important}html .pt-xxl-4,html[data-netbox-color-mode=dark] .pt-xxl-4,html[data-netbox-color-mode=light] .pt-xxl-4{padding-top:1.5rem!important}html .pt-xxl-5,html[data-netbox-color-mode=dark] .pt-xxl-5,html[data-netbox-color-mode=light] .pt-xxl-5{padding-top:3rem!important}html .pe-xxl-0,html[data-netbox-color-mode=dark] .pe-xxl-0,html[data-netbox-color-mode=light] .pe-xxl-0{padding-right:0!important}html .pe-xxl-1,html[data-netbox-color-mode=dark] .pe-xxl-1,html[data-netbox-color-mode=light] .pe-xxl-1{padding-right:.25rem!important}html .pe-xxl-2,html[data-netbox-color-mode=dark] .pe-xxl-2,html[data-netbox-color-mode=light] .pe-xxl-2{padding-right:.5rem!important}html .pe-xxl-3,html[data-netbox-color-mode=dark] .pe-xxl-3,html[data-netbox-color-mode=light] .pe-xxl-3{padding-right:1rem!important}html .pe-xxl-4,html[data-netbox-color-mode=dark] .pe-xxl-4,html[data-netbox-color-mode=light] .pe-xxl-4{padding-right:1.5rem!important}html .pe-xxl-5,html[data-netbox-color-mode=dark] .pe-xxl-5,html[data-netbox-color-mode=light] .pe-xxl-5{padding-right:3rem!important}html .pb-xxl-0,html[data-netbox-color-mode=dark] .pb-xxl-0,html[data-netbox-color-mode=light] .pb-xxl-0{padding-bottom:0!important}html .pb-xxl-1,html[data-netbox-color-mode=dark] .pb-xxl-1,html[data-netbox-color-mode=light] .pb-xxl-1{padding-bottom:.25rem!important}html .pb-xxl-2,html[data-netbox-color-mode=dark] .pb-xxl-2,html[data-netbox-color-mode=light] .pb-xxl-2{padding-bottom:.5rem!important}html .pb-xxl-3,html[data-netbox-color-mode=dark] .pb-xxl-3,html[data-netbox-color-mode=light] .pb-xxl-3{padding-bottom:1rem!important}html .pb-xxl-4,html[data-netbox-color-mode=dark] .pb-xxl-4,html[data-netbox-color-mode=light] .pb-xxl-4{padding-bottom:1.5rem!important}html .pb-xxl-5,html[data-netbox-color-mode=dark] .pb-xxl-5,html[data-netbox-color-mode=light] .pb-xxl-5{padding-bottom:3rem!important}html .ps-xxl-0,html[data-netbox-color-mode=dark] .ps-xxl-0,html[data-netbox-color-mode=light] .ps-xxl-0{padding-left:0!important}html .ps-xxl-1,html[data-netbox-color-mode=dark] .ps-xxl-1,html[data-netbox-color-mode=light] .ps-xxl-1{padding-left:.25rem!important}html .ps-xxl-2,html[data-netbox-color-mode=dark] .ps-xxl-2,html[data-netbox-color-mode=light] .ps-xxl-2{padding-left:.5rem!important}html .ps-xxl-3,html[data-netbox-color-mode=dark] .ps-xxl-3,html[data-netbox-color-mode=light] .ps-xxl-3{padding-left:1rem!important}html .ps-xxl-4,html[data-netbox-color-mode=dark] .ps-xxl-4,html[data-netbox-color-mode=light] .ps-xxl-4{padding-left:1.5rem!important}html .ps-xxl-5,html[data-netbox-color-mode=dark] .ps-xxl-5,html[data-netbox-color-mode=light] .ps-xxl-5{padding-left:3rem!important}html .text-xxl-start,html[data-netbox-color-mode=dark] .text-xxl-start,html[data-netbox-color-mode=light] .text-xxl-start{text-align:left!important}html .text-xxl-end,html[data-netbox-color-mode=dark] .text-xxl-end,html[data-netbox-color-mode=light] .text-xxl-end{text-align:right!important}html .text-xxl-center,html[data-netbox-color-mode=dark] .text-xxl-center,html[data-netbox-color-mode=light] .text-xxl-center{text-align:center!important}}@media print and (min-width: 1200px){html .fs-1,html[data-netbox-color-mode=dark] .fs-1,html[data-netbox-color-mode=light] .fs-1{font-size:2.5rem!important}html .fs-2,html[data-netbox-color-mode=dark] .fs-2,html[data-netbox-color-mode=light] .fs-2{font-size:2rem!important}html .fs-3,html[data-netbox-color-mode=dark] .fs-3,html[data-netbox-color-mode=light] .fs-3{font-size:1.75rem!important}html .fs-4,html[data-netbox-color-mode=dark] .fs-4,html[data-netbox-color-mode=light] .fs-4{font-size:1.5rem!important}}@media print{html .d-print-inline,html[data-netbox-color-mode=dark] .d-print-inline,html[data-netbox-color-mode=light] .d-print-inline{display:inline!important}html .d-print-inline-block,html[data-netbox-color-mode=dark] .d-print-inline-block,html[data-netbox-color-mode=light] .d-print-inline-block{display:inline-block!important}html .d-print-block,html[data-netbox-color-mode=dark] .d-print-block,html[data-netbox-color-mode=light] .d-print-block{display:block!important}html .d-print-grid,html[data-netbox-color-mode=dark] .d-print-grid,html[data-netbox-color-mode=light] .d-print-grid{display:grid!important}html .d-print-table,html[data-netbox-color-mode=dark] .d-print-table,html[data-netbox-color-mode=light] .d-print-table{display:table!important}html .d-print-table-row,html[data-netbox-color-mode=dark] .d-print-table-row,html[data-netbox-color-mode=light] .d-print-table-row{display:table-row!important}html .d-print-table-cell,html[data-netbox-color-mode=dark] .d-print-table-cell,html[data-netbox-color-mode=light] .d-print-table-cell{display:table-cell!important}html .d-print-flex,html[data-netbox-color-mode=dark] .d-print-flex,html[data-netbox-color-mode=light] .d-print-flex{display:flex!important}html .d-print-inline-flex,html[data-netbox-color-mode=dark] .d-print-inline-flex,html[data-netbox-color-mode=light] .d-print-inline-flex{display:inline-flex!important}html .d-print-none,html[data-netbox-color-mode=dark] .d-print-none,html[data-netbox-color-mode=light] .d-print-none{display:none!important}}@media print{html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--nbx-select-content-bg: #fff;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}html :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=light] :root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}}@media print{html .ss-main,html[data-netbox-color-mode=dark] .ss-main,html[data-netbox-color-mode=light] .ss-main{position:relative;display:inline-block;user-select:none;color:#212529;width:100%}html .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=light] .ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html .ss-main .ss-single-selected.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}html .ss-main .ss-single-selected.ss-open-above,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-above,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html .ss-main .ss-single-selected.ss-open-below,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-below,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html .ss-main .ss-single-selected .placeholder,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html .ss-main .ss-single-selected .placeholder *,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder *,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}html .ss-main .ss-single-selected .placeholder .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder .ss-disabled{color:#6c757d}html .ss-main .ss-single-selected .ss-deselect,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}html .ss-main .ss-single-selected .ss-deselect.ss-hide,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect.ss-hide,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}html .ss-main .ss-single-selected .ss-arrow,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}html .ss-main .ss-single-selected .ss-arrow span,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span{border:solid #212529;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}html .ss-main .ss-single-selected .ss-arrow span.arrow-up,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-up,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}html .ss-main .ss-single-selected .ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-down,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html .ss-main .ss-multi-selected.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}html .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#212529}html .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}html .ss-main .ss-multi-selected.ss-open-above,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-above,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html .ss-main .ss-multi-selected.ss-open-below,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-below,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html .ss-main .ss-multi-selected .ss-values,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}html .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#6c757d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}html .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#0d6efd;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}html .ss-main .ss-multi-selected .ss-values .ss-value.ss-out,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}html .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}html .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}html .ss-main .ss-multi-selected .ss-add .ss-plus,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#212529;position:relative;height:10px;width:2px;transition:transform .2s}html .ss-main .ss-multi-selected .ss-add .ss-plus:after,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus:after,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#212529;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}html .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}}@media print{html .ss-content,html[data-netbox-color-mode=dark] .ss-content,html[data-netbox-color-mode=light] .ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #ced4da;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}html .ss-content.ss-open,html[data-netbox-color-mode=dark] .ss-content.ss-open,html[data-netbox-color-mode=light] .ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}html .ss-content .ss-search,html[data-netbox-color-mode=dark] .ss-content .ss-search,html[data-netbox-color-mode=light] .ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}html .ss-content .ss-search.ss-hide,html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide,html[data-netbox-color-mode=light] .ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}html .ss-content .ss-search.ss-hide input,html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide input,html[data-netbox-color-mode=light] .ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}html .ss-content .ss-search input,html[data-netbox-color-mode=dark] .ss-content .ss-search input,html[data-netbox-color-mode=light] .ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}html .ss-content .ss-search input::placeholder,html[data-netbox-color-mode=dark] .ss-content .ss-search input::placeholder,html[data-netbox-color-mode=light] .ss-content .ss-search input::placeholder{color:#adb5bd;vertical-align:middle}html .ss-content .ss-search input:focus,html[data-netbox-color-mode=dark] .ss-content .ss-search input:focus,html[data-netbox-color-mode=light] .ss-content .ss-search input:focus{box-shadow:0 0 5px #0d6efd}html .ss-content .ss-search .ss-addable,html[data-netbox-color-mode=dark] .ss-content .ss-search .ss-addable,html[data-netbox-color-mode=light] .ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #ced4da;border-radius:.375rem;box-sizing:border-box}html .ss-content .ss-addable,html[data-netbox-color-mode=dark] .ss-content .ss-addable,html[data-netbox-color-mode=light] .ss-content .ss-addable{padding-top:0}html .ss-content .ss-list,html[data-netbox-color-mode=dark] .ss-content .ss-list,html[data-netbox-color-mode=light] .ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}html .ss-content .ss-list .ss-optgroup .ss-optgroup-label,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-optgroup-label,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}html .ss-content .ss-list .ss-optgroup .ss-option,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-option,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}html .ss-content .ss-list .ss-optgroup-label-selectable,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}html .ss-content .ss-list .ss-optgroup-label-selectable:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable:hover,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#0d6efd}html .ss-content .ss-list .ss-option,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}html .ss-content .ss-list .ss-option *,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option *,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option *{display:inline-block}html .ss-content .ss-list .ss-option:hover,html .ss-content .ss-list .ss-option.ss-highlighted,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-highlighted,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#0d6efd}html .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#6c757d;background-color:#fff}html .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#212529;background-color:#0d6efd1a}html .ss-content .ss-list .ss-option.ss-hide,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-hide,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-hide{display:none}html .ss-content .ss-list .ss-option .ss-search-highlight,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option .ss-search-highlight,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}}@media print{html .ss-main,html[data-netbox-color-mode=dark] .ss-main,html[data-netbox-color-mode=light] .ss-main{color:#212529}html .ss-main.is-invalid .ss-single-selected,html .ss-main.is-invalid .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=light] .ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}html .ss-main.is-valid .ss-single-selected,html .ss-main.is-valid .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=light] .ss-main.is-valid .ss-multi-selected{border-color:#198754}html .ss-main .ss-single-selected,html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-single-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#fff;border:1px solid #e9ecef}html .ss-main .ss-single-selected[disabled],html .ss-main .ss-multi-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected[disabled],html[data-netbox-color-mode=light] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=light] .ss-main .ss-multi-selected[disabled]{color:#6c757d;background-color:#e9ecef}html .ss-main div.ss-multi-selected .ss-values .ss-disabled,html .ss-main div.ss-single-selected span.placeholder .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-single-selected span.placeholder .ss-disabled,html[data-netbox-color-mode=light] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}html .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html .ss-main .ss-single-selected span.ss-arrow span.arrow-up,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-up,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#6c757d}html .ss-main .ss-single-selected .placeholder .depth,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .depth,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder .depth{display:none}html .ss-main .ss-single-selected span.placeholder>*,html .ss-main .ss-single-selected span.placeholder,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.placeholder{line-height:1.5}html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}html .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}html .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}html .ss-main .ss-multi-selected .ss-values .ss-value .depth,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .depth,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}html .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add{margin:0 .75rem}html .ss-main .ss-content,html[data-netbox-color-mode=dark] .ss-main .ss-content,html[data-netbox-color-mode=light] .ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .ss-main .ss-content .ss-list .ss-option.ss-option-selected,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-option-selected,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#212529;background-color:var(--nbx-select-option-selected-bg)}html .ss-main .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}html .ss-main .ss-content .ss-list .ss-option:last-child,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:last-child,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .ss-main .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}html .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#6c757d}html .ss-main .ss-content .ss-list .ss-option .depth,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option .depth,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}html .ss-main .ss-content .ss-list::-webkit-scrollbar,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}html .ss-main .ss-content .ss-list::-webkit-scrollbar:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}html .ss-main .ss-content .ss-list::-webkit-scrollbar-track,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-track,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}html .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}html .ss-main .ss-content .ss-search,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search{padding-right:.5rem}html .ss-main .ss-content .ss-search button,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search button,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search button{margin-left:.75rem}html .ss-main .ss-content .ss-search input[type=search],html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search],html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search input[type=search]{color:#212529;background-color:#fff;border:1px solid #e9ecef}html .ss-main .ss-content .ss-search input[type=search]:focus,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]:focus,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .sidenav,html[data-netbox-color-mode=dark] .sidenav,html[data-netbox-color-mode=light] .sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #ced4da;transition:all .1s ease-in-out}}@media print and (max-width: 991.98px){html .sidenav,html[data-netbox-color-mode=dark] .sidenav,html[data-netbox-color-mode=light] .sidenav{transform:translate(-3rem)}html .sidenav+.content-container[class],html[data-netbox-color-mode=dark] .sidenav+.content-container[class],html[data-netbox-color-mode=light] .sidenav+.content-container[class]{margin-left:0}html .sidenav .profile-button-container[class],html[data-netbox-color-mode=dark] .sidenav .profile-button-container[class],html[data-netbox-color-mode=light] .sidenav .profile-button-container[class]{display:block}}@media print{html .sidenav .profile-button-container,html[data-netbox-color-mode=dark] .sidenav .profile-button-container,html[data-netbox-color-mode=light] .sidenav .profile-button-container{display:none;padding:.5rem 1rem}}@media print{html .sidenav+.content-container,html[data-netbox-color-mode=dark] .sidenav+.content-container,html[data-netbox-color-mode=light] .sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}}@media print{html .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] .sidenav .sidenav-brand{margin-right:0}}@media print{html .sidenav .sidenav-inner,html[data-netbox-color-mode=dark] .sidenav .sidenav-inner,html[data-netbox-color-mode=light] .sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}}@media print and (min-width: 768px){html .sidenav .sidenav-inner,html[data-netbox-color-mode=dark] .sidenav .sidenav-inner,html[data-netbox-color-mode=light] .sidenav .sidenav-inner{padding-right:0;padding-left:0}}@media print{html .sidenav .sidenav-brand-img,html .sidenav .sidenav-brand>img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand>img,html[data-netbox-color-mode=light] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=light] .sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}}@media print{html .sidenav .navbar-heading,html[data-netbox-color-mode=dark] .sidenav .navbar-heading,html[data-netbox-color-mode=light] .sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}}@media print{html .sidenav .sidenav-header,html[data-netbox-color-mode=dark] .sidenav .sidenav-header,html[data-netbox-color-mode=light] .sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}}@media print{html .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] .sidenav .sidenav-toggle{display:none}}@media print{html .sidenav .sidenav-collapse,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}}@media print{html .sidenav .sidenav-collapse>*,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse>*,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse>*{min-width:100%}}@media print and (min-width: 768px){html .sidenav .sidenav-collapse,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse{margin-right:0;margin-left:0}}@media print{html .sidenav .nav-group-header,html[data-netbox-color-mode=dark] .sidenav .nav-group-header,html[data-netbox-color-mode=light] .sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}}@media print{html .sidenav .nav .nav-item,html[data-netbox-color-mode=dark] .sidenav .nav .nav-item,html[data-netbox-color-mode=light] .sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}}@media print{html .sidenav .nav .nav-item.no-buttons,html[data-netbox-color-mode=dark] .sidenav .nav .nav-item.no-buttons,html[data-netbox-color-mode=light] .sidenav .nav .nav-item.no-buttons{padding-right:5rem}}@media print{html .sidenav .collapse .nav .nav-item .nav-link,html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link,html[data-netbox-color-mode=light] .sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon,html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon,html[data-netbox-color-mode=light] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle],html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle],html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#343a40;background:#cfe2ff}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#6c757d;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#343a40}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#0d6efd;transform:rotate(90deg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav,html[data-netbox-color-mode=dark] .sidenav .navbar-nav,html[data-netbox-color-mode=light] .sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}}@media print{html .sidenav .navbar-nav .nav-item,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item{margin-top:2px}}@media print{html .sidenav .navbar-nav .nav-item.disabled,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item.disabled,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}}@media print{html .sidenav .navbar-nav .nav-item .nav-link,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link.active,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link.active,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active),html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active),html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link>i,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link>i,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}}@media print{html .sidenav .navbar-nav .nav-group-label,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-group-label,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}}@media print{html body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}}@media print and (min-width: 1200px){html body[data-sidenav-pinned] .sidenav+.content-container,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav+.content-container,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}@media print{html .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=dark] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=light] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}}@media print{html body[data-sidenav-show] .sidenav,html body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav{max-width:16rem}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html body[data-sidenav-show] .sidenav .navbar-heading,html body[data-sidenav-pinned] .sidenav .sidenav-brand,html body[data-sidenav-pinned] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .navbar-heading,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand-icon,html body[data-sidenav-pinned] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}}@media print and (max-width: 991.98px){html body[data-sidenav-show] .sidenav,html body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav{transform:translate(0)}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-header,html body[data-sidenav-hidden] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-header,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-brand,html body[data-sidenav-hidden] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0;transform:translate(-150%)}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html body[data-sidenav-hidden] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}}@media print{html body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}}@media print{html body[data-sidenav-hide] .sidenav .nav-item .collapse,html body[data-sidenav-hidden] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}}@media print{html body[data-sidenav-hide] .sidenav .nav-link-text,html body[data-sidenav-hidden] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}}@media print{html body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand{display:block}}@media print{html body[data-sidenav-show] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}}@media print{html body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}}@media print{html body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}}@media print and (min-width: 992px){html body[data-sidenav-show] .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-toggle{display:inline-block}}@media print{html .simplebar-track.simplebar-vertical,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}}@media print{html .simplebar-track.simplebar-vertical .simplebar-scrollbar,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}}@media print{html .simplebar-track.simplebar-vertical .simplebar-scrollbar:before,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}}@media print{html .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}}@media print{html body,html[data-netbox-color-mode=dark] body,html[data-netbox-color-mode=light] body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}}@media print{html pre,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=light] pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}}@media print{html small,html .small,html[data-netbox-color-mode=dark] .small,html[data-netbox-color-mode=light] .small,html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=light] small{font-size:smaller!important}}@media print{html a[type=button],html[data-netbox-color-mode=dark] a[type=button],html[data-netbox-color-mode=light] a[type=button]{-webkit-appearance:unset!important}}@media print{html *[data-href],html[data-netbox-color-mode=dark] *[data-href],html[data-netbox-color-mode=light] *[data-href]{cursor:pointer}}@media print{html .form-control:not([type=file]),html[data-netbox-color-mode=dark] .form-control:not([type=file]),html[data-netbox-color-mode=light] .form-control:not([type=file]){font-size:inherit}}@media print{html .badge,html[data-netbox-color-mode=dark] .badge,html[data-netbox-color-mode=light] .badge{font-size:.75rem}}@media print{html .text-xs,html[data-netbox-color-mode=dark] .text-xs,html[data-netbox-color-mode=light] .text-xs{font-size:.75rem!important;line-height:1.25!important}}@media print{html .border-input,html[data-netbox-color-mode=dark] .border-input,html[data-netbox-color-mode=light] .border-input{border:1px solid #e9ecef!important}}@media print{html .ws-nowrap,html[data-netbox-color-mode=dark] .ws-nowrap,html[data-netbox-color-mode=light] .ws-nowrap{white-space:nowrap!important}}@media print{html table tr .vertical-align,html table td .vertical-align,html[data-netbox-color-mode=dark] table tr .vertical-align,html[data-netbox-color-mode=dark] table td .vertical-align,html[data-netbox-color-mode=light] table tr .vertical-align,html[data-netbox-color-mode=light] table td .vertical-align{vertical-align:middle}}@media print{html .noprint,html[data-netbox-color-mode=dark] .noprint,html[data-netbox-color-mode=light] .noprint{display:none!important;visibility:hidden!important}}@media print{html .printonly,html[data-netbox-color-mode=dark] .printonly,html[data-netbox-color-mode=light] .printonly{display:none!important;visibility:hidden!important}}@media print{html .printonly,html[data-netbox-color-mode=dark] .printonly,html[data-netbox-color-mode=light] .printonly{display:block!important;visibility:visible!important}}@media print{html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #e9ecef;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #0d6efd;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}}@media print{html :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=light] :root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}}@media print{html .bg-primary button.btn-close,html[data-netbox-color-mode=dark] .bg-primary button.btn-close,html[data-netbox-color-mode=light] .bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f496e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-primary,html[data-netbox-color-mode=dark] .btn.btn-ghost-primary,html[data-netbox-color-mode=light] .btn.btn-ghost-primary{color:#337ab7}}@media print{html .btn.btn-ghost-primary:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-primary:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-primary:hover{background-color:#337ab71f}}@media print{html .alert.alert-primary a:not(.btn),html .table-primary a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=dark] .table-primary a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=light] .table-primary a:not(.btn){font-weight:700;color:#1f496e}}@media print{html .alert.alert-primary .btn:not([class*=btn-outline]),html .table-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-primary .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-primary a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-primary a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-primary a:not(.btn){font-weight:700;color:#adcae2}}@media print{html .badge.bg-primary,html .toast.bg-primary,html .toast-header.bg-primary,html .progress-bar.bg-primary,html[data-netbox-color-mode=dark] .badge.bg-primary,html[data-netbox-color-mode=dark] .toast.bg-primary,html[data-netbox-color-mode=dark] .toast-header.bg-primary,html[data-netbox-color-mode=dark] .progress-bar.bg-primary,html[data-netbox-color-mode=light] .badge.bg-primary,html[data-netbox-color-mode=light] .toast.bg-primary,html[data-netbox-color-mode=light] .toast-header.bg-primary,html[data-netbox-color-mode=light] .progress-bar.bg-primary{color:#fff}}@media print{html .bg-secondary button.btn-close,html[data-netbox-color-mode=dark] .bg-secondary button.btn-close,html[data-netbox-color-mode=light] .bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-secondary,html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary,html[data-netbox-color-mode=light] .btn.btn-ghost-secondary{color:#6c757d}}@media print{html .btn.btn-ghost-secondary:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-secondary:hover{background-color:#6c757d1f}}@media print{html .alert.alert-secondary a:not(.btn),html .table-secondary a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=dark] .table-secondary a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=light] .table-secondary a:not(.btn){font-weight:700;color:#41464b}}@media print{html .alert.alert-secondary .btn:not([class*=btn-outline]),html .table-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-secondary .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-secondary a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-secondary a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-secondary a:not(.btn){font-weight:700;color:#c4c8cb}}@media print{html .badge.bg-secondary,html .toast.bg-secondary,html .toast-header.bg-secondary,html .progress-bar.bg-secondary,html[data-netbox-color-mode=dark] .badge.bg-secondary,html[data-netbox-color-mode=dark] .toast.bg-secondary,html[data-netbox-color-mode=dark] .toast-header.bg-secondary,html[data-netbox-color-mode=dark] .progress-bar.bg-secondary,html[data-netbox-color-mode=light] .badge.bg-secondary,html[data-netbox-color-mode=light] .toast.bg-secondary,html[data-netbox-color-mode=light] .toast-header.bg-secondary,html[data-netbox-color-mode=light] .progress-bar.bg-secondary{color:#fff}}@media print{html .bg-success button.btn-close,html[data-netbox-color-mode=dark] .bg-success button.btn-close,html[data-netbox-color-mode=light] .bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-success,html[data-netbox-color-mode=dark] .btn.btn-ghost-success,html[data-netbox-color-mode=light] .btn.btn-ghost-success{color:#198754}}@media print{html .btn.btn-ghost-success:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-success:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-success:hover{background-color:#1987541f}}@media print{html .alert.alert-success a:not(.btn),html .table-success a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=dark] .table-success a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=light] .table-success a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-success .btn:not([class*=btn-outline]),html .table-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-success .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-success a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-success a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-success a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-success,html .toast.bg-success,html .toast-header.bg-success,html .progress-bar.bg-success,html[data-netbox-color-mode=dark] .badge.bg-success,html[data-netbox-color-mode=dark] .toast.bg-success,html[data-netbox-color-mode=dark] .toast-header.bg-success,html[data-netbox-color-mode=dark] .progress-bar.bg-success,html[data-netbox-color-mode=light] .badge.bg-success,html[data-netbox-color-mode=light] .toast.bg-success,html[data-netbox-color-mode=light] .toast-header.bg-success,html[data-netbox-color-mode=light] .progress-bar.bg-success{color:#fff}}@media print{html .bg-info button.btn-close,html[data-netbox-color-mode=dark] .bg-info button.btn-close,html[data-netbox-color-mode=light] .bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-info,html[data-netbox-color-mode=dark] .btn.btn-ghost-info,html[data-netbox-color-mode=light] .btn.btn-ghost-info{color:#0dcaf0}}@media print{html .btn.btn-ghost-info:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-info:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-info:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-info a:not(.btn),html .table-info a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=dark] .table-info a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=light] .table-info a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-info .btn:not([class*=btn-outline]),html .table-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-info .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-info a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-info a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-info a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-info,html .toast.bg-info,html .toast-header.bg-info,html .progress-bar.bg-info,html[data-netbox-color-mode=dark] .badge.bg-info,html[data-netbox-color-mode=dark] .toast.bg-info,html[data-netbox-color-mode=dark] .toast-header.bg-info,html[data-netbox-color-mode=dark] .progress-bar.bg-info,html[data-netbox-color-mode=light] .badge.bg-info,html[data-netbox-color-mode=light] .toast.bg-info,html[data-netbox-color-mode=light] .toast-header.bg-info,html[data-netbox-color-mode=light] .progress-bar.bg-info{color:#000}}@media print{html .bg-warning button.btn-close,html[data-netbox-color-mode=dark] .bg-warning button.btn-close,html[data-netbox-color-mode=light] .bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-warning,html[data-netbox-color-mode=dark] .btn.btn-ghost-warning,html[data-netbox-color-mode=light] .btn.btn-ghost-warning{color:#ffc107}}@media print{html .btn.btn-ghost-warning:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-warning:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-warning:hover{background-color:#ffc1071f}}@media print{html .alert.alert-warning a:not(.btn),html .table-warning a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=dark] .table-warning a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=light] .table-warning a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-warning .btn:not([class*=btn-outline]),html .table-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-warning .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-warning a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-warning a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-warning a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-warning,html .toast.bg-warning,html .toast-header.bg-warning,html .progress-bar.bg-warning,html[data-netbox-color-mode=dark] .badge.bg-warning,html[data-netbox-color-mode=dark] .toast.bg-warning,html[data-netbox-color-mode=dark] .toast-header.bg-warning,html[data-netbox-color-mode=dark] .progress-bar.bg-warning,html[data-netbox-color-mode=light] .badge.bg-warning,html[data-netbox-color-mode=light] .toast.bg-warning,html[data-netbox-color-mode=light] .toast-header.bg-warning,html[data-netbox-color-mode=light] .progress-bar.bg-warning{color:#000}}@media print{html .bg-danger button.btn-close,html[data-netbox-color-mode=dark] .bg-danger button.btn-close,html[data-netbox-color-mode=light] .bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-danger,html[data-netbox-color-mode=dark] .btn.btn-ghost-danger,html[data-netbox-color-mode=light] .btn.btn-ghost-danger{color:#dc3545}}@media print{html .btn.btn-ghost-danger:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-danger:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-danger:hover{background-color:#dc35451f}}@media print{html .alert.alert-danger a:not(.btn),html .table-danger a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=dark] .table-danger a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=light] .table-danger a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-danger .btn:not([class*=btn-outline]),html .table-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-danger .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-danger a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-danger a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-danger a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-danger,html .toast.bg-danger,html .toast-header.bg-danger,html .progress-bar.bg-danger,html[data-netbox-color-mode=dark] .badge.bg-danger,html[data-netbox-color-mode=dark] .toast.bg-danger,html[data-netbox-color-mode=dark] .toast-header.bg-danger,html[data-netbox-color-mode=dark] .progress-bar.bg-danger,html[data-netbox-color-mode=light] .badge.bg-danger,html[data-netbox-color-mode=light] .toast.bg-danger,html[data-netbox-color-mode=light] .toast-header.bg-danger,html[data-netbox-color-mode=light] .progress-bar.bg-danger{color:#fff}}@media print{html .bg-light button.btn-close,html[data-netbox-color-mode=dark] .bg-light button.btn-close,html[data-netbox-color-mode=light] .bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-light,html[data-netbox-color-mode=dark] .btn.btn-ghost-light,html[data-netbox-color-mode=light] .btn.btn-ghost-light{color:#f8f9fa}}@media print{html .btn.btn-ghost-light:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-light:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-light:hover{background-color:#f8f9fa1f}}@media print{html .alert.alert-light a:not(.btn),html .table-light a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=dark] .table-light a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=light] .table-light a:not(.btn){font-weight:700;color:#636464}}@media print{html .alert.alert-light .btn:not([class*=btn-outline]),html .table-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-light .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-light a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-light a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-light a:not(.btn){font-weight:700;color:#636464}}@media print{html .badge.bg-light,html .toast.bg-light,html .toast-header.bg-light,html .progress-bar.bg-light,html[data-netbox-color-mode=dark] .badge.bg-light,html[data-netbox-color-mode=dark] .toast.bg-light,html[data-netbox-color-mode=dark] .toast-header.bg-light,html[data-netbox-color-mode=dark] .progress-bar.bg-light,html[data-netbox-color-mode=light] .badge.bg-light,html[data-netbox-color-mode=light] .toast.bg-light,html[data-netbox-color-mode=light] .toast-header.bg-light,html[data-netbox-color-mode=light] .progress-bar.bg-light{color:#000}}@media print{html .bg-dark button.btn-close,html[data-netbox-color-mode=dark] .bg-dark button.btn-close,html[data-netbox-color-mode=light] .bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-dark,html[data-netbox-color-mode=dark] .btn.btn-ghost-dark,html[data-netbox-color-mode=light] .btn.btn-ghost-dark{color:#212529}}@media print{html .btn.btn-ghost-dark:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-dark:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-dark:hover{background-color:#2125291f}}@media print{html .alert.alert-dark a:not(.btn),html .table-dark a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=dark] .table-dark a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=light] .table-dark a:not(.btn){font-weight:700;color:#141619}}@media print{html .alert.alert-dark .btn:not([class*=btn-outline]),html .table-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-dark .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-dark a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-dark a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-dark a:not(.btn){font-weight:700;color:#a6a8a9}}@media print{html .badge.bg-dark,html .toast.bg-dark,html .toast-header.bg-dark,html .progress-bar.bg-dark,html[data-netbox-color-mode=dark] .badge.bg-dark,html[data-netbox-color-mode=dark] .toast.bg-dark,html[data-netbox-color-mode=dark] .toast-header.bg-dark,html[data-netbox-color-mode=dark] .progress-bar.bg-dark,html[data-netbox-color-mode=light] .badge.bg-dark,html[data-netbox-color-mode=light] .toast.bg-dark,html[data-netbox-color-mode=light] .toast-header.bg-dark,html[data-netbox-color-mode=light] .progress-bar.bg-dark{color:#fff}}@media print{html .bg-red button.btn-close,html[data-netbox-color-mode=dark] .bg-red button.btn-close,html[data-netbox-color-mode=light] .bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red,html[data-netbox-color-mode=dark] .btn.btn-ghost-red,html[data-netbox-color-mode=light] .btn.btn-ghost-red{color:#dc3545}}@media print{html .btn.btn-ghost-red:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red:hover{background-color:#dc35451f}}@media print{html .alert.alert-red a:not(.btn),html .table-red a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=dark] .table-red a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=light] .table-red a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-red .btn:not([class*=btn-outline]),html .table-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-red,html .toast.bg-red,html .toast-header.bg-red,html .progress-bar.bg-red,html[data-netbox-color-mode=dark] .badge.bg-red,html[data-netbox-color-mode=dark] .toast.bg-red,html[data-netbox-color-mode=dark] .toast-header.bg-red,html[data-netbox-color-mode=dark] .progress-bar.bg-red,html[data-netbox-color-mode=light] .badge.bg-red,html[data-netbox-color-mode=light] .toast.bg-red,html[data-netbox-color-mode=light] .toast-header.bg-red,html[data-netbox-color-mode=light] .progress-bar.bg-red{color:#fff}}@media print{html .bg-yellow button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow button.btn-close,html[data-netbox-color-mode=light] .bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow{color:#ffc107}}@media print{html .btn.btn-ghost-yellow:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow:hover{background-color:#ffc1071f}}@media print{html .alert.alert-yellow a:not(.btn),html .table-yellow a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=light] .table-yellow a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-yellow .btn:not([class*=btn-outline]),html .table-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-yellow,html .toast.bg-yellow,html .toast-header.bg-yellow,html .progress-bar.bg-yellow,html[data-netbox-color-mode=dark] .badge.bg-yellow,html[data-netbox-color-mode=dark] .toast.bg-yellow,html[data-netbox-color-mode=dark] .toast-header.bg-yellow,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow,html[data-netbox-color-mode=light] .badge.bg-yellow,html[data-netbox-color-mode=light] .toast.bg-yellow,html[data-netbox-color-mode=light] .toast-header.bg-yellow,html[data-netbox-color-mode=light] .progress-bar.bg-yellow{color:#000}}@media print{html .bg-green button.btn-close,html[data-netbox-color-mode=dark] .bg-green button.btn-close,html[data-netbox-color-mode=light] .bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green,html[data-netbox-color-mode=dark] .btn.btn-ghost-green,html[data-netbox-color-mode=light] .btn.btn-ghost-green{color:#198754}}@media print{html .btn.btn-ghost-green:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green:hover{background-color:#1987541f}}@media print{html .alert.alert-green a:not(.btn),html .table-green a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=dark] .table-green a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=light] .table-green a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-green .btn:not([class*=btn-outline]),html .table-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-green,html .toast.bg-green,html .toast-header.bg-green,html .progress-bar.bg-green,html[data-netbox-color-mode=dark] .badge.bg-green,html[data-netbox-color-mode=dark] .toast.bg-green,html[data-netbox-color-mode=dark] .toast-header.bg-green,html[data-netbox-color-mode=dark] .progress-bar.bg-green,html[data-netbox-color-mode=light] .badge.bg-green,html[data-netbox-color-mode=light] .toast.bg-green,html[data-netbox-color-mode=light] .toast-header.bg-green,html[data-netbox-color-mode=light] .progress-bar.bg-green{color:#fff}}@media print{html .bg-blue button.btn-close,html[data-netbox-color-mode=dark] .bg-blue button.btn-close,html[data-netbox-color-mode=light] .bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue,html[data-netbox-color-mode=light] .btn.btn-ghost-blue{color:#0d6efd}}@media print{html .btn.btn-ghost-blue:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue:hover{background-color:#0d6efd1f}}@media print{html .alert.alert-blue a:not(.btn),html .table-blue a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=dark] .table-blue a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=light] .table-blue a:not(.btn){font-weight:700;color:#084298}}@media print{html .alert.alert-blue .btn:not([class*=btn-outline]),html .table-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue a:not(.btn){font-weight:700;color:#9ec5fe}}@media print{html .badge.bg-blue,html .toast.bg-blue,html .toast-header.bg-blue,html .progress-bar.bg-blue,html[data-netbox-color-mode=dark] .badge.bg-blue,html[data-netbox-color-mode=dark] .toast.bg-blue,html[data-netbox-color-mode=dark] .toast-header.bg-blue,html[data-netbox-color-mode=dark] .progress-bar.bg-blue,html[data-netbox-color-mode=light] .badge.bg-blue,html[data-netbox-color-mode=light] .toast.bg-blue,html[data-netbox-color-mode=light] .toast-header.bg-blue,html[data-netbox-color-mode=light] .progress-bar.bg-blue{color:#fff}}@media print{html .bg-cyan button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan button.btn-close,html[data-netbox-color-mode=light] .bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan{color:#0dcaf0}}@media print{html .btn.btn-ghost-cyan:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-cyan a:not(.btn),html .table-cyan a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=light] .table-cyan a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-cyan .btn:not([class*=btn-outline]),html .table-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-cyan,html .toast.bg-cyan,html .toast-header.bg-cyan,html .progress-bar.bg-cyan,html[data-netbox-color-mode=dark] .badge.bg-cyan,html[data-netbox-color-mode=dark] .toast.bg-cyan,html[data-netbox-color-mode=dark] .toast-header.bg-cyan,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan,html[data-netbox-color-mode=light] .badge.bg-cyan,html[data-netbox-color-mode=light] .toast.bg-cyan,html[data-netbox-color-mode=light] .toast-header.bg-cyan,html[data-netbox-color-mode=light] .progress-bar.bg-cyan{color:#000}}@media print{html .bg-indigo button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo button.btn-close,html[data-netbox-color-mode=light] .bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo{color:#6610f2}}@media print{html .btn.btn-ghost-indigo:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo:hover{background-color:#6610f21f}}@media print{html .alert.alert-indigo a:not(.btn),html .table-indigo a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=light] .table-indigo a:not(.btn){font-weight:700;color:#3d0a91}}@media print{html .alert.alert-indigo .btn:not([class*=btn-outline]),html .table-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo a:not(.btn){font-weight:700;color:#c29ffa}}@media print{html .badge.bg-indigo,html .toast.bg-indigo,html .toast-header.bg-indigo,html .progress-bar.bg-indigo,html[data-netbox-color-mode=dark] .badge.bg-indigo,html[data-netbox-color-mode=dark] .toast.bg-indigo,html[data-netbox-color-mode=dark] .toast-header.bg-indigo,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo,html[data-netbox-color-mode=light] .badge.bg-indigo,html[data-netbox-color-mode=light] .toast.bg-indigo,html[data-netbox-color-mode=light] .toast-header.bg-indigo,html[data-netbox-color-mode=light] .progress-bar.bg-indigo{color:#fff}}@media print{html .bg-purple button.btn-close,html[data-netbox-color-mode=dark] .bg-purple button.btn-close,html[data-netbox-color-mode=light] .bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple,html[data-netbox-color-mode=light] .btn.btn-ghost-purple{color:#6f42c1}}@media print{html .btn.btn-ghost-purple:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple:hover{background-color:#6f42c11f}}@media print{html .alert.alert-purple a:not(.btn),html .table-purple a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=dark] .table-purple a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=light] .table-purple a:not(.btn){font-weight:700;color:#432874}}@media print{html .alert.alert-purple .btn:not([class*=btn-outline]),html .table-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple a:not(.btn){font-weight:700;color:#c5b3e6}}@media print{html .badge.bg-purple,html .toast.bg-purple,html .toast-header.bg-purple,html .progress-bar.bg-purple,html[data-netbox-color-mode=dark] .badge.bg-purple,html[data-netbox-color-mode=dark] .toast.bg-purple,html[data-netbox-color-mode=dark] .toast-header.bg-purple,html[data-netbox-color-mode=dark] .progress-bar.bg-purple,html[data-netbox-color-mode=light] .badge.bg-purple,html[data-netbox-color-mode=light] .toast.bg-purple,html[data-netbox-color-mode=light] .toast-header.bg-purple,html[data-netbox-color-mode=light] .progress-bar.bg-purple{color:#fff}}@media print{html .bg-pink button.btn-close,html[data-netbox-color-mode=dark] .bg-pink button.btn-close,html[data-netbox-color-mode=light] .bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink,html[data-netbox-color-mode=light] .btn.btn-ghost-pink{color:#d63384}}@media print{html .btn.btn-ghost-pink:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink:hover{background-color:#d633841f}}@media print{html .alert.alert-pink a:not(.btn),html .table-pink a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=dark] .table-pink a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=light] .table-pink a:not(.btn){font-weight:700;color:#801f4f}}@media print{html .alert.alert-pink .btn:not([class*=btn-outline]),html .table-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink a:not(.btn){font-weight:700;color:#efadce}}@media print{html .badge.bg-pink,html .toast.bg-pink,html .toast-header.bg-pink,html .progress-bar.bg-pink,html[data-netbox-color-mode=dark] .badge.bg-pink,html[data-netbox-color-mode=dark] .toast.bg-pink,html[data-netbox-color-mode=dark] .toast-header.bg-pink,html[data-netbox-color-mode=dark] .progress-bar.bg-pink,html[data-netbox-color-mode=light] .badge.bg-pink,html[data-netbox-color-mode=light] .toast.bg-pink,html[data-netbox-color-mode=light] .toast-header.bg-pink,html[data-netbox-color-mode=light] .progress-bar.bg-pink{color:#fff}}@media print{html .bg-darker button.btn-close,html[data-netbox-color-mode=dark] .bg-darker button.btn-close,html[data-netbox-color-mode=light] .bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101314'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-darker,html[data-netbox-color-mode=dark] .btn.btn-ghost-darker,html[data-netbox-color-mode=light] .btn.btn-ghost-darker{color:#1b1f22}}@media print{html .btn.btn-ghost-darker:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-darker:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-darker:hover{background-color:#1b1f221f}}@media print{html .alert.alert-darker a:not(.btn),html .table-darker a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=dark] .table-darker a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=light] .table-darker a:not(.btn){font-weight:700;color:#101314}}@media print{html .alert.alert-darker .btn:not([class*=btn-outline]),html .table-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-darker .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-darker a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-darker a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-darker a:not(.btn){font-weight:700;color:#a4a5a7}}@media print{html .badge.bg-darker,html .toast.bg-darker,html .toast-header.bg-darker,html .progress-bar.bg-darker,html[data-netbox-color-mode=dark] .badge.bg-darker,html[data-netbox-color-mode=dark] .toast.bg-darker,html[data-netbox-color-mode=dark] .toast-header.bg-darker,html[data-netbox-color-mode=dark] .progress-bar.bg-darker,html[data-netbox-color-mode=light] .badge.bg-darker,html[data-netbox-color-mode=light] .toast.bg-darker,html[data-netbox-color-mode=light] .toast-header.bg-darker,html[data-netbox-color-mode=light] .progress-bar.bg-darker{color:#fff}}@media print{html .bg-darkest button.btn-close,html[data-netbox-color-mode=dark] .bg-darkest button.btn-close,html[data-netbox-color-mode=light] .bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1011'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-darkest,html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest,html[data-netbox-color-mode=light] .btn.btn-ghost-darkest{color:#171b1d}}@media print{html .btn.btn-ghost-darkest:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-darkest:hover{background-color:#171b1d1f}}@media print{html .alert.alert-darkest a:not(.btn),html .table-darkest a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=dark] .table-darkest a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=light] .table-darkest a:not(.btn){font-weight:700;color:#0e1011}}@media print{html .alert.alert-darkest .btn:not([class*=btn-outline]),html .table-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-darkest .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-darkest a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-darkest a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-darkest a:not(.btn){font-weight:700;color:#a2a4a5}}@media print{html .badge.bg-darkest,html .toast.bg-darkest,html .toast-header.bg-darkest,html .progress-bar.bg-darkest,html[data-netbox-color-mode=dark] .badge.bg-darkest,html[data-netbox-color-mode=dark] .toast.bg-darkest,html[data-netbox-color-mode=dark] .toast-header.bg-darkest,html[data-netbox-color-mode=dark] .progress-bar.bg-darkest,html[data-netbox-color-mode=light] .badge.bg-darkest,html[data-netbox-color-mode=light] .toast.bg-darkest,html[data-netbox-color-mode=light] .toast-header.bg-darkest,html[data-netbox-color-mode=light] .progress-bar.bg-darkest{color:#fff}}@media print{html .bg-gray button.btn-close,html[data-netbox-color-mode=dark] .bg-gray button.btn-close,html[data-netbox-color-mode=light] .bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray,html[data-netbox-color-mode=light] .btn.btn-ghost-gray{color:#ced4da}}@media print{html .btn.btn-ghost-gray:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray:hover{background-color:#ced4da1f}}@media print{html .alert.alert-gray a:not(.btn),html .table-gray a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=dark] .table-gray a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=light] .table-gray a:not(.btn){font-weight:700;color:#525557}}@media print{html .alert.alert-gray .btn:not([class*=btn-outline]),html .table-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray a:not(.btn){font-weight:700;color:#525557}}@media print{html .badge.bg-gray,html .toast.bg-gray,html .toast-header.bg-gray,html .progress-bar.bg-gray,html[data-netbox-color-mode=dark] .badge.bg-gray,html[data-netbox-color-mode=dark] .toast.bg-gray,html[data-netbox-color-mode=dark] .toast-header.bg-gray,html[data-netbox-color-mode=dark] .progress-bar.bg-gray,html[data-netbox-color-mode=light] .badge.bg-gray,html[data-netbox-color-mode=light] .toast.bg-gray,html[data-netbox-color-mode=light] .toast-header.bg-gray,html[data-netbox-color-mode=light] .progress-bar.bg-gray{color:#000}}@media print{html .bg-gray-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-100 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-100{color:#f8f9fa}}@media print{html .btn.btn-ghost-gray-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}}@media print{html .alert.alert-gray-100 a:not(.btn),html .table-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-100 a:not(.btn){font-weight:700;color:#636464}}@media print{html .alert.alert-gray-100 .btn:not([class*=btn-outline]),html .table-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-100 a:not(.btn){font-weight:700;color:#636464}}@media print{html .badge.bg-gray-100,html .toast.bg-gray-100,html .toast-header.bg-gray-100,html .progress-bar.bg-gray-100,html[data-netbox-color-mode=dark] .badge.bg-gray-100,html[data-netbox-color-mode=dark] .toast.bg-gray-100,html[data-netbox-color-mode=dark] .toast-header.bg-gray-100,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-100,html[data-netbox-color-mode=light] .badge.bg-gray-100,html[data-netbox-color-mode=light] .toast.bg-gray-100,html[data-netbox-color-mode=light] .toast-header.bg-gray-100,html[data-netbox-color-mode=light] .progress-bar.bg-gray-100{color:#000}}@media print{html .bg-gray-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-200 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d5e60'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-200{color:#e9ecef}}@media print{html .btn.btn-ghost-gray-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}}@media print{html .alert.alert-gray-200 a:not(.btn),html .table-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}}@media print{html .alert.alert-gray-200 .btn:not([class*=btn-outline]),html .table-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}}@media print{html .badge.bg-gray-200,html .toast.bg-gray-200,html .toast-header.bg-gray-200,html .progress-bar.bg-gray-200,html[data-netbox-color-mode=dark] .badge.bg-gray-200,html[data-netbox-color-mode=dark] .toast.bg-gray-200,html[data-netbox-color-mode=dark] .toast-header.bg-gray-200,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-200,html[data-netbox-color-mode=light] .badge.bg-gray-200,html[data-netbox-color-mode=light] .toast.bg-gray-200,html[data-netbox-color-mode=light] .toast-header.bg-gray-200,html[data-netbox-color-mode=light] .progress-bar.bg-gray-200{color:#000}}@media print{html .bg-gray-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-300 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23595a5c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-300{color:#dee2e6}}@media print{html .btn.btn-ghost-gray-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}}@media print{html .alert.alert-gray-300 a:not(.btn),html .table-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-300 a:not(.btn){font-weight:700;color:#595a5c}}@media print{html .alert.alert-gray-300 .btn:not([class*=btn-outline]),html .table-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-300 a:not(.btn){font-weight:700;color:#595a5c}}@media print{html .badge.bg-gray-300,html .toast.bg-gray-300,html .toast-header.bg-gray-300,html .progress-bar.bg-gray-300,html[data-netbox-color-mode=dark] .badge.bg-gray-300,html[data-netbox-color-mode=dark] .toast.bg-gray-300,html[data-netbox-color-mode=dark] .toast-header.bg-gray-300,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-300,html[data-netbox-color-mode=light] .badge.bg-gray-300,html[data-netbox-color-mode=light] .toast.bg-gray-300,html[data-netbox-color-mode=light] .toast-header.bg-gray-300,html[data-netbox-color-mode=light] .progress-bar.bg-gray-300{color:#000}}@media print{html .bg-gray-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-400 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-400{color:#ced4da}}@media print{html .btn.btn-ghost-gray-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}}@media print{html .alert.alert-gray-400 a:not(.btn),html .table-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-400 a:not(.btn){font-weight:700;color:#525557}}@media print{html .alert.alert-gray-400 .btn:not([class*=btn-outline]),html .table-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-400 a:not(.btn){font-weight:700;color:#525557}}@media print{html .badge.bg-gray-400,html .toast.bg-gray-400,html .toast-header.bg-gray-400,html .progress-bar.bg-gray-400,html[data-netbox-color-mode=dark] .badge.bg-gray-400,html[data-netbox-color-mode=dark] .toast.bg-gray-400,html[data-netbox-color-mode=dark] .toast-header.bg-gray-400,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-400,html[data-netbox-color-mode=light] .badge.bg-gray-400,html[data-netbox-color-mode=light] .toast.bg-gray-400,html[data-netbox-color-mode=light] .toast-header.bg-gray-400,html[data-netbox-color-mode=light] .progress-bar.bg-gray-400{color:#000}}@media print{html .bg-gray-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-500 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23686d71'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-500{color:#adb5bd}}@media print{html .btn.btn-ghost-gray-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}}@media print{html .alert.alert-gray-500 a:not(.btn),html .table-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-500 a:not(.btn){font-weight:700;color:#686d71}}@media print{html .alert.alert-gray-500 .btn:not([class*=btn-outline]),html .table-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-500 a:not(.btn){font-weight:700;color:#45484c}}@media print{html .badge.bg-gray-500,html .toast.bg-gray-500,html .toast-header.bg-gray-500,html .progress-bar.bg-gray-500,html[data-netbox-color-mode=dark] .badge.bg-gray-500,html[data-netbox-color-mode=dark] .toast.bg-gray-500,html[data-netbox-color-mode=dark] .toast-header.bg-gray-500,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-500,html[data-netbox-color-mode=light] .badge.bg-gray-500,html[data-netbox-color-mode=light] .toast.bg-gray-500,html[data-netbox-color-mode=light] .toast-header.bg-gray-500,html[data-netbox-color-mode=light] .progress-bar.bg-gray-500{color:#000}}@media print{html .bg-gray-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-600 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-600{color:#6c757d}}@media print{html .btn.btn-ghost-gray-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}}@media print{html .alert.alert-gray-600 a:not(.btn),html .table-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-600 a:not(.btn){font-weight:700;color:#41464b}}@media print{html .alert.alert-gray-600 .btn:not([class*=btn-outline]),html .table-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-600 a:not(.btn){font-weight:700;color:#c4c8cb}}@media print{html .badge.bg-gray-600,html .toast.bg-gray-600,html .toast-header.bg-gray-600,html .progress-bar.bg-gray-600,html[data-netbox-color-mode=dark] .badge.bg-gray-600,html[data-netbox-color-mode=dark] .toast.bg-gray-600,html[data-netbox-color-mode=dark] .toast-header.bg-gray-600,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-600,html[data-netbox-color-mode=light] .badge.bg-gray-600,html[data-netbox-color-mode=light] .toast.bg-gray-600,html[data-netbox-color-mode=light] .toast-header.bg-gray-600,html[data-netbox-color-mode=light] .progress-bar.bg-gray-600{color:#fff}}@media print{html .bg-gray-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-700 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3034'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-700{color:#495057}}@media print{html .btn.btn-ghost-gray-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-700:hover{background-color:#4950571f}}@media print{html .alert.alert-gray-700 a:not(.btn),html .table-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-700 a:not(.btn){font-weight:700;color:#2c3034}}@media print{html .alert.alert-gray-700 .btn:not([class*=btn-outline]),html .table-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-700 a:not(.btn){font-weight:700;color:#b6b9bc}}@media print{html .badge.bg-gray-700,html .toast.bg-gray-700,html .toast-header.bg-gray-700,html .progress-bar.bg-gray-700,html[data-netbox-color-mode=dark] .badge.bg-gray-700,html[data-netbox-color-mode=dark] .toast.bg-gray-700,html[data-netbox-color-mode=dark] .toast-header.bg-gray-700,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-700,html[data-netbox-color-mode=light] .badge.bg-gray-700,html[data-netbox-color-mode=light] .toast.bg-gray-700,html[data-netbox-color-mode=light] .toast-header.bg-gray-700,html[data-netbox-color-mode=light] .progress-bar.bg-gray-700{color:#fff}}@media print{html .bg-gray-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-800 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2326'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-800{color:#343a40}}@media print{html .btn.btn-ghost-gray-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-800:hover{background-color:#343a401f}}@media print{html .alert.alert-gray-800 a:not(.btn),html .table-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-800 a:not(.btn){font-weight:700;color:#1f2326}}@media print{html .alert.alert-gray-800 .btn:not([class*=btn-outline]),html .table-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-800 a:not(.btn){font-weight:700;color:#aeb0b3}}@media print{html .badge.bg-gray-800,html .toast.bg-gray-800,html .toast-header.bg-gray-800,html .progress-bar.bg-gray-800,html[data-netbox-color-mode=dark] .badge.bg-gray-800,html[data-netbox-color-mode=dark] .toast.bg-gray-800,html[data-netbox-color-mode=dark] .toast-header.bg-gray-800,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-800,html[data-netbox-color-mode=light] .badge.bg-gray-800,html[data-netbox-color-mode=light] .toast.bg-gray-800,html[data-netbox-color-mode=light] .toast-header.bg-gray-800,html[data-netbox-color-mode=light] .progress-bar.bg-gray-800{color:#fff}}@media print{html .bg-gray-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-900 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-900{color:#212529}}@media print{html .btn.btn-ghost-gray-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-900:hover{background-color:#2125291f}}@media print{html .alert.alert-gray-900 a:not(.btn),html .table-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-900 a:not(.btn){font-weight:700;color:#141619}}@media print{html .alert.alert-gray-900 .btn:not([class*=btn-outline]),html .table-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-900 a:not(.btn){font-weight:700;color:#a6a8a9}}@media print{html .badge.bg-gray-900,html .toast.bg-gray-900,html .toast-header.bg-gray-900,html .progress-bar.bg-gray-900,html[data-netbox-color-mode=dark] .badge.bg-gray-900,html[data-netbox-color-mode=dark] .toast.bg-gray-900,html[data-netbox-color-mode=dark] .toast-header.bg-gray-900,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-900,html[data-netbox-color-mode=light] .badge.bg-gray-900,html[data-netbox-color-mode=light] .toast.bg-gray-900,html[data-netbox-color-mode=light] .toast-header.bg-gray-900,html[data-netbox-color-mode=light] .progress-bar.bg-gray-900{color:#fff}}@media print{html .bg-red-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-100 button.btn-close,html[data-netbox-color-mode=light] .bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23635657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100,html[data-netbox-color-mode=light] .btn.btn-ghost-red-100{color:#f8d7da}}@media print{html .btn.btn-ghost-red-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}}@media print{html .alert.alert-red-100 a:not(.btn),html .table-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=light] .table-red-100 a:not(.btn){font-weight:700;color:#635657}}@media print{html .alert.alert-red-100 .btn:not([class*=btn-outline]),html .table-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-100 a:not(.btn){font-weight:700;color:#635657}}@media print{html .badge.bg-red-100,html .toast.bg-red-100,html .toast-header.bg-red-100,html .progress-bar.bg-red-100,html[data-netbox-color-mode=dark] .badge.bg-red-100,html[data-netbox-color-mode=dark] .toast.bg-red-100,html[data-netbox-color-mode=dark] .toast-header.bg-red-100,html[data-netbox-color-mode=dark] .progress-bar.bg-red-100,html[data-netbox-color-mode=light] .badge.bg-red-100,html[data-netbox-color-mode=light] .toast.bg-red-100,html[data-netbox-color-mode=light] .toast-header.bg-red-100,html[data-netbox-color-mode=light] .progress-bar.bg-red-100{color:#000}}@media print{html .bg-red-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-200 button.btn-close,html[data-netbox-color-mode=light] .bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604648'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200,html[data-netbox-color-mode=light] .btn.btn-ghost-red-200{color:#f1aeb5}}@media print{html .btn.btn-ghost-red-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}}@media print{html .alert.alert-red-200 a:not(.btn),html .table-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=light] .table-red-200 a:not(.btn){font-weight:700;color:#604648}}@media print{html .alert.alert-red-200 .btn:not([class*=btn-outline]),html .table-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-200 a:not(.btn){font-weight:700;color:#604648}}@media print{html .badge.bg-red-200,html .toast.bg-red-200,html .toast-header.bg-red-200,html .progress-bar.bg-red-200,html[data-netbox-color-mode=dark] .badge.bg-red-200,html[data-netbox-color-mode=dark] .toast.bg-red-200,html[data-netbox-color-mode=dark] .toast-header.bg-red-200,html[data-netbox-color-mode=dark] .progress-bar.bg-red-200,html[data-netbox-color-mode=light] .badge.bg-red-200,html[data-netbox-color-mode=light] .toast.bg-red-200,html[data-netbox-color-mode=light] .toast-header.bg-red-200,html[data-netbox-color-mode=light] .progress-bar.bg-red-200{color:#000}}@media print{html .bg-red-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-300 button.btn-close,html[data-netbox-color-mode=light] .bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238c5056'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300,html[data-netbox-color-mode=light] .btn.btn-ghost-red-300{color:#ea868f}}@media print{html .btn.btn-ghost-red-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-300:hover{background-color:#ea868f1f}}@media print{html .alert.alert-red-300 a:not(.btn),html .table-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=light] .table-red-300 a:not(.btn){font-weight:700;color:#8c5056}}@media print{html .alert.alert-red-300 .btn:not([class*=btn-outline]),html .table-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-300 a:not(.btn){font-weight:700;color:#5e3639}}@media print{html .badge.bg-red-300,html .toast.bg-red-300,html .toast-header.bg-red-300,html .progress-bar.bg-red-300,html[data-netbox-color-mode=dark] .badge.bg-red-300,html[data-netbox-color-mode=dark] .toast.bg-red-300,html[data-netbox-color-mode=dark] .toast-header.bg-red-300,html[data-netbox-color-mode=dark] .progress-bar.bg-red-300,html[data-netbox-color-mode=light] .badge.bg-red-300,html[data-netbox-color-mode=light] .toast.bg-red-300,html[data-netbox-color-mode=light] .toast-header.bg-red-300,html[data-netbox-color-mode=light] .progress-bar.bg-red-300{color:#000}}@media print{html .bg-red-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-400 button.btn-close,html[data-netbox-color-mode=light] .bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23883840'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400,html[data-netbox-color-mode=light] .btn.btn-ghost-red-400{color:#e35d6a}}@media print{html .btn.btn-ghost-red-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}}@media print{html .alert.alert-red-400 a:not(.btn),html .table-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=light] .table-red-400 a:not(.btn){font-weight:700;color:#883840}}@media print{html .alert.alert-red-400 .btn:not([class*=btn-outline]),html .table-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-400 a:not(.btn){font-weight:700;color:#5b252a}}@media print{html .badge.bg-red-400,html .toast.bg-red-400,html .toast-header.bg-red-400,html .progress-bar.bg-red-400,html[data-netbox-color-mode=dark] .badge.bg-red-400,html[data-netbox-color-mode=dark] .toast.bg-red-400,html[data-netbox-color-mode=dark] .toast-header.bg-red-400,html[data-netbox-color-mode=dark] .progress-bar.bg-red-400,html[data-netbox-color-mode=light] .badge.bg-red-400,html[data-netbox-color-mode=light] .toast.bg-red-400,html[data-netbox-color-mode=light] .toast-header.bg-red-400,html[data-netbox-color-mode=light] .progress-bar.bg-red-400{color:#000}}@media print{html .bg-red-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-500 button.btn-close,html[data-netbox-color-mode=light] .bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500,html[data-netbox-color-mode=light] .btn.btn-ghost-red-500{color:#dc3545}}@media print{html .btn.btn-ghost-red-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-500:hover{background-color:#dc35451f}}@media print{html .alert.alert-red-500 a:not(.btn),html .table-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=light] .table-red-500 a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-red-500 .btn:not([class*=btn-outline]),html .table-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-500 a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-red-500,html .toast.bg-red-500,html .toast-header.bg-red-500,html .progress-bar.bg-red-500,html[data-netbox-color-mode=dark] .badge.bg-red-500,html[data-netbox-color-mode=dark] .toast.bg-red-500,html[data-netbox-color-mode=dark] .toast-header.bg-red-500,html[data-netbox-color-mode=dark] .progress-bar.bg-red-500,html[data-netbox-color-mode=light] .badge.bg-red-500,html[data-netbox-color-mode=light] .toast.bg-red-500,html[data-netbox-color-mode=light] .toast-header.bg-red-500,html[data-netbox-color-mode=light] .progress-bar.bg-red-500{color:#fff}}@media print{html .bg-red-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-600 button.btn-close,html[data-netbox-color-mode=light] .bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a1921'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600,html[data-netbox-color-mode=light] .btn.btn-ghost-red-600{color:#b02a37}}@media print{html .btn.btn-ghost-red-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-600:hover{background-color:#b02a371f}}@media print{html .alert.alert-red-600 a:not(.btn),html .table-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=light] .table-red-600 a:not(.btn){font-weight:700;color:#6a1921}}@media print{html .alert.alert-red-600 .btn:not([class*=btn-outline]),html .table-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-600 a:not(.btn){font-weight:700;color:#dfaaaf}}@media print{html .badge.bg-red-600,html .toast.bg-red-600,html .toast-header.bg-red-600,html .progress-bar.bg-red-600,html[data-netbox-color-mode=dark] .badge.bg-red-600,html[data-netbox-color-mode=dark] .toast.bg-red-600,html[data-netbox-color-mode=dark] .toast-header.bg-red-600,html[data-netbox-color-mode=dark] .progress-bar.bg-red-600,html[data-netbox-color-mode=light] .badge.bg-red-600,html[data-netbox-color-mode=light] .toast.bg-red-600,html[data-netbox-color-mode=light] .toast-header.bg-red-600,html[data-netbox-color-mode=light] .progress-bar.bg-red-600{color:#fff}}@media print{html .bg-red-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-700 button.btn-close,html[data-netbox-color-mode=light] .bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f1319'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700,html[data-netbox-color-mode=light] .btn.btn-ghost-red-700{color:#842029}}@media print{html .btn.btn-ghost-red-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-700:hover{background-color:#8420291f}}@media print{html .alert.alert-red-700 a:not(.btn),html .table-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=light] .table-red-700 a:not(.btn){font-weight:700;color:#4f1319}}@media print{html .alert.alert-red-700 .btn:not([class*=btn-outline]),html .table-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-700 a:not(.btn){font-weight:700;color:#cea6a9}}@media print{html .badge.bg-red-700,html .toast.bg-red-700,html .toast-header.bg-red-700,html .progress-bar.bg-red-700,html[data-netbox-color-mode=dark] .badge.bg-red-700,html[data-netbox-color-mode=dark] .toast.bg-red-700,html[data-netbox-color-mode=dark] .toast-header.bg-red-700,html[data-netbox-color-mode=dark] .progress-bar.bg-red-700,html[data-netbox-color-mode=light] .badge.bg-red-700,html[data-netbox-color-mode=light] .toast.bg-red-700,html[data-netbox-color-mode=light] .toast-header.bg-red-700,html[data-netbox-color-mode=light] .progress-bar.bg-red-700{color:#fff}}@media print{html .bg-red-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-800 button.btn-close,html[data-netbox-color-mode=light] .bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23350d11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800,html[data-netbox-color-mode=light] .btn.btn-ghost-red-800{color:#58151c}}@media print{html .btn.btn-ghost-red-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-800:hover{background-color:#58151c1f}}@media print{html .alert.alert-red-800 a:not(.btn),html .table-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=light] .table-red-800 a:not(.btn){font-weight:700;color:#350d11}}@media print{html .alert.alert-red-800 .btn:not([class*=btn-outline]),html .table-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-800 a:not(.btn){font-weight:700;color:#bca1a4}}@media print{html .badge.bg-red-800,html .toast.bg-red-800,html .toast-header.bg-red-800,html .progress-bar.bg-red-800,html[data-netbox-color-mode=dark] .badge.bg-red-800,html[data-netbox-color-mode=dark] .toast.bg-red-800,html[data-netbox-color-mode=dark] .toast-header.bg-red-800,html[data-netbox-color-mode=dark] .progress-bar.bg-red-800,html[data-netbox-color-mode=light] .badge.bg-red-800,html[data-netbox-color-mode=light] .toast.bg-red-800,html[data-netbox-color-mode=light] .toast-header.bg-red-800,html[data-netbox-color-mode=light] .progress-bar.bg-red-800{color:#fff}}@media print{html .bg-red-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-900 button.btn-close,html[data-netbox-color-mode=light] .bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0708'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900,html[data-netbox-color-mode=light] .btn.btn-ghost-red-900{color:#2c0b0e}}@media print{html .btn.btn-ghost-red-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}}@media print{html .alert.alert-red-900 a:not(.btn),html .table-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=light] .table-red-900 a:not(.btn){font-weight:700;color:#1a0708}}@media print{html .alert.alert-red-900 .btn:not([class*=btn-outline]),html .table-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-900 a:not(.btn){font-weight:700;color:#ab9d9f}}@media print{html .badge.bg-red-900,html .toast.bg-red-900,html .toast-header.bg-red-900,html .progress-bar.bg-red-900,html[data-netbox-color-mode=dark] .badge.bg-red-900,html[data-netbox-color-mode=dark] .toast.bg-red-900,html[data-netbox-color-mode=dark] .toast-header.bg-red-900,html[data-netbox-color-mode=dark] .progress-bar.bg-red-900,html[data-netbox-color-mode=light] .badge.bg-red-900,html[data-netbox-color-mode=light] .toast.bg-red-900,html[data-netbox-color-mode=light] .toast-header.bg-red-900,html[data-netbox-color-mode=light] .progress-bar.bg-red-900{color:#fff}}@media print{html .bg-yellow-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-100 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666152'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-100{color:#fff3cd}}@media print{html .btn.btn-ghost-yellow-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}}@media print{html .alert.alert-yellow-100 a:not(.btn),html .table-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-100 a:not(.btn){font-weight:700;color:#666152}}@media print{html .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html .table-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#666152}}@media print{html .badge.bg-yellow-100,html .toast.bg-yellow-100,html .toast-header.bg-yellow-100,html .progress-bar.bg-yellow-100,html[data-netbox-color-mode=dark] .badge.bg-yellow-100,html[data-netbox-color-mode=dark] .toast.bg-yellow-100,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-100,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-100,html[data-netbox-color-mode=light] .badge.bg-yellow-100,html[data-netbox-color-mode=light] .toast.bg-yellow-100,html[data-netbox-color-mode=light] .toast-header.bg-yellow-100,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-100{color:#000}}@media print{html .bg-yellow-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-200 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665c3e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-200{color:#ffe69c}}@media print{html .btn.btn-ghost-yellow-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}}@media print{html .alert.alert-yellow-200 a:not(.btn),html .table-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}}@media print{html .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html .table-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}}@media print{html .badge.bg-yellow-200,html .toast.bg-yellow-200,html .toast-header.bg-yellow-200,html .progress-bar.bg-yellow-200,html[data-netbox-color-mode=dark] .badge.bg-yellow-200,html[data-netbox-color-mode=dark] .toast.bg-yellow-200,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-200,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-200,html[data-netbox-color-mode=light] .badge.bg-yellow-200,html[data-netbox-color-mode=light] .toast.bg-yellow-200,html[data-netbox-color-mode=light] .toast-header.bg-yellow-200,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-200{color:#000}}@media print{html .bg-yellow-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-300 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366572a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-300{color:#ffda6a}}@media print{html .btn.btn-ghost-yellow-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}}@media print{html .alert.alert-yellow-300 a:not(.btn),html .table-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-300 a:not(.btn){font-weight:700;color:#66572a}}@media print{html .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html .table-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#66572a}}@media print{html .badge.bg-yellow-300,html .toast.bg-yellow-300,html .toast-header.bg-yellow-300,html .progress-bar.bg-yellow-300,html[data-netbox-color-mode=dark] .badge.bg-yellow-300,html[data-netbox-color-mode=dark] .toast.bg-yellow-300,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-300,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-300,html[data-netbox-color-mode=light] .badge.bg-yellow-300,html[data-netbox-color-mode=light] .toast.bg-yellow-300,html[data-netbox-color-mode=light] .toast-header.bg-yellow-300,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-300{color:#000}}@media print{html .bg-yellow-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-400 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665217'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-400{color:#ffcd39}}@media print{html .btn.btn-ghost-yellow-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}}@media print{html .alert.alert-yellow-400 a:not(.btn),html .table-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-400 a:not(.btn){font-weight:700;color:#665217}}@media print{html .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html .table-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#665217}}@media print{html .badge.bg-yellow-400,html .toast.bg-yellow-400,html .toast-header.bg-yellow-400,html .progress-bar.bg-yellow-400,html[data-netbox-color-mode=dark] .badge.bg-yellow-400,html[data-netbox-color-mode=dark] .toast.bg-yellow-400,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-400,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-400,html[data-netbox-color-mode=light] .badge.bg-yellow-400,html[data-netbox-color-mode=light] .toast.bg-yellow-400,html[data-netbox-color-mode=light] .toast-header.bg-yellow-400,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-400{color:#000}}@media print{html .bg-yellow-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-500 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-500{color:#ffc107}}@media print{html .btn.btn-ghost-yellow-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}}@media print{html .alert.alert-yellow-500 a:not(.btn),html .table-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-500 a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html .table-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-yellow-500,html .toast.bg-yellow-500,html .toast-header.bg-yellow-500,html .progress-bar.bg-yellow-500,html[data-netbox-color-mode=dark] .badge.bg-yellow-500,html[data-netbox-color-mode=dark] .toast.bg-yellow-500,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-500,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-500,html[data-netbox-color-mode=light] .badge.bg-yellow-500,html[data-netbox-color-mode=light] .toast.bg-yellow-500,html[data-netbox-color-mode=light] .toast-header.bg-yellow-500,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-500{color:#000}}@media print{html .bg-yellow-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-600 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a5c04'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-600{color:#cc9a06}}@media print{html .btn.btn-ghost-yellow-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}}@media print{html .alert.alert-yellow-600 a:not(.btn),html .table-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-600 a:not(.btn){font-weight:700;color:#7a5c04}}@media print{html .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html .table-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#523e02}}@media print{html .badge.bg-yellow-600,html .toast.bg-yellow-600,html .toast-header.bg-yellow-600,html .progress-bar.bg-yellow-600,html[data-netbox-color-mode=dark] .badge.bg-yellow-600,html[data-netbox-color-mode=dark] .toast.bg-yellow-600,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-600,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-600,html[data-netbox-color-mode=light] .badge.bg-yellow-600,html[data-netbox-color-mode=light] .toast.bg-yellow-600,html[data-netbox-color-mode=light] .toast-header.bg-yellow-600,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-600{color:#000}}@media print{html .bg-yellow-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-700 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c4602'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-700{color:#997404}}@media print{html .btn.btn-ghost-yellow-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-700:hover{background-color:#9974041f}}@media print{html .alert.alert-yellow-700 a:not(.btn),html .table-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-700 a:not(.btn){font-weight:700;color:#5c4602}}@media print{html .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html .table-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#3d2e02}}@media print{html .badge.bg-yellow-700,html .toast.bg-yellow-700,html .toast-header.bg-yellow-700,html .progress-bar.bg-yellow-700,html[data-netbox-color-mode=dark] .badge.bg-yellow-700,html[data-netbox-color-mode=dark] .toast.bg-yellow-700,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-700,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-700,html[data-netbox-color-mode=light] .badge.bg-yellow-700,html[data-netbox-color-mode=light] .toast.bg-yellow-700,html[data-netbox-color-mode=light] .toast-header.bg-yellow-700,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-700{color:#000}}@media print{html .bg-yellow-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-800 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d2e02'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-800{color:#664d03}}@media print{html .btn.btn-ghost-yellow-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-800:hover{background-color:#664d031f}}@media print{html .alert.alert-yellow-800 a:not(.btn),html .table-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-800 a:not(.btn){font-weight:700;color:#3d2e02}}@media print{html .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html .table-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#c2b89a}}@media print{html .badge.bg-yellow-800,html .toast.bg-yellow-800,html .toast-header.bg-yellow-800,html .progress-bar.bg-yellow-800,html[data-netbox-color-mode=dark] .badge.bg-yellow-800,html[data-netbox-color-mode=dark] .toast.bg-yellow-800,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-800,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-800,html[data-netbox-color-mode=light] .badge.bg-yellow-800,html[data-netbox-color-mode=light] .toast.bg-yellow-800,html[data-netbox-color-mode=light] .toast-header.bg-yellow-800,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-800{color:#fff}}@media print{html .bg-yellow-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-900 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-900{color:#332701}}@media print{html .btn.btn-ghost-yellow-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-900:hover{background-color:#3327011f}}@media print{html .alert.alert-yellow-900 a:not(.btn),html .table-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-900 a:not(.btn){font-weight:700;color:#1f1701}}@media print{html .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html .table-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#ada999}}@media print{html .badge.bg-yellow-900,html .toast.bg-yellow-900,html .toast-header.bg-yellow-900,html .progress-bar.bg-yellow-900,html[data-netbox-color-mode=dark] .badge.bg-yellow-900,html[data-netbox-color-mode=dark] .toast.bg-yellow-900,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-900,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-900,html[data-netbox-color-mode=light] .badge.bg-yellow-900,html[data-netbox-color-mode=light] .toast.bg-yellow-900,html[data-netbox-color-mode=light] .toast-header.bg-yellow-900,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-900{color:#fff}}@media print{html .bg-green-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-100 button.btn-close,html[data-netbox-color-mode=light] .bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23545c58'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100,html[data-netbox-color-mode=light] .btn.btn-ghost-green-100{color:#d1e7dd}}@media print{html .btn.btn-ghost-green-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}}@media print{html .alert.alert-green-100 a:not(.btn),html .table-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=light] .table-green-100 a:not(.btn){font-weight:700;color:#545c58}}@media print{html .alert.alert-green-100 .btn:not([class*=btn-outline]),html .table-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-100 a:not(.btn){font-weight:700;color:#545c58}}@media print{html .badge.bg-green-100,html .toast.bg-green-100,html .toast-header.bg-green-100,html .progress-bar.bg-green-100,html[data-netbox-color-mode=dark] .badge.bg-green-100,html[data-netbox-color-mode=dark] .toast.bg-green-100,html[data-netbox-color-mode=dark] .toast-header.bg-green-100,html[data-netbox-color-mode=dark] .progress-bar.bg-green-100,html[data-netbox-color-mode=light] .badge.bg-green-100,html[data-netbox-color-mode=light] .toast.bg-green-100,html[data-netbox-color-mode=light] .toast-header.bg-green-100,html[data-netbox-color-mode=light] .progress-bar.bg-green-100{color:#000}}@media print{html .bg-green-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-200 button.btn-close,html[data-netbox-color-mode=light] .bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341534b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200,html[data-netbox-color-mode=light] .btn.btn-ghost-green-200{color:#a3cfbb}}@media print{html .btn.btn-ghost-green-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}}@media print{html .alert.alert-green-200 a:not(.btn),html .table-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=light] .table-green-200 a:not(.btn){font-weight:700;color:#41534b}}@media print{html .alert.alert-green-200 .btn:not([class*=btn-outline]),html .table-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-200 a:not(.btn){font-weight:700;color:#41534b}}@media print{html .badge.bg-green-200,html .toast.bg-green-200,html .toast-header.bg-green-200,html .progress-bar.bg-green-200,html[data-netbox-color-mode=dark] .badge.bg-green-200,html[data-netbox-color-mode=dark] .toast.bg-green-200,html[data-netbox-color-mode=dark] .toast-header.bg-green-200,html[data-netbox-color-mode=dark] .progress-bar.bg-green-200,html[data-netbox-color-mode=light] .badge.bg-green-200,html[data-netbox-color-mode=light] .toast.bg-green-200,html[data-netbox-color-mode=light] .toast-header.bg-green-200,html[data-netbox-color-mode=light] .progress-bar.bg-green-200{color:#000}}@media print{html .bg-green-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-300 button.btn-close,html[data-netbox-color-mode=light] .bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23466e5b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300,html[data-netbox-color-mode=light] .btn.btn-ghost-green-300{color:#75b798}}@media print{html .btn.btn-ghost-green-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-300:hover{background-color:#75b7981f}}@media print{html .alert.alert-green-300 a:not(.btn),html .table-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=light] .table-green-300 a:not(.btn){font-weight:700;color:#466e5b}}@media print{html .alert.alert-green-300 .btn:not([class*=btn-outline]),html .table-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-300 a:not(.btn){font-weight:700;color:#2f493d}}@media print{html .badge.bg-green-300,html .toast.bg-green-300,html .toast-header.bg-green-300,html .progress-bar.bg-green-300,html[data-netbox-color-mode=dark] .badge.bg-green-300,html[data-netbox-color-mode=dark] .toast.bg-green-300,html[data-netbox-color-mode=dark] .toast-header.bg-green-300,html[data-netbox-color-mode=dark] .progress-bar.bg-green-300,html[data-netbox-color-mode=light] .badge.bg-green-300,html[data-netbox-color-mode=light] .toast.bg-green-300,html[data-netbox-color-mode=light] .toast-header.bg-green-300,html[data-netbox-color-mode=light] .progress-bar.bg-green-300{color:#000}}@media print{html .bg-green-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-400 button.btn-close,html[data-netbox-color-mode=light] .bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b5f47'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400,html[data-netbox-color-mode=light] .btn.btn-ghost-green-400{color:#479f76}}@media print{html .btn.btn-ghost-green-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-400:hover{background-color:#479f761f}}@media print{html .alert.alert-green-400 a:not(.btn),html .table-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=light] .table-green-400 a:not(.btn){font-weight:700;color:#2b5f47}}@media print{html .alert.alert-green-400 .btn:not([class*=btn-outline]),html .table-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-400 a:not(.btn){font-weight:700;color:#1c402f}}@media print{html .badge.bg-green-400,html .toast.bg-green-400,html .toast-header.bg-green-400,html .progress-bar.bg-green-400,html[data-netbox-color-mode=dark] .badge.bg-green-400,html[data-netbox-color-mode=dark] .toast.bg-green-400,html[data-netbox-color-mode=dark] .toast-header.bg-green-400,html[data-netbox-color-mode=dark] .progress-bar.bg-green-400,html[data-netbox-color-mode=light] .badge.bg-green-400,html[data-netbox-color-mode=light] .toast.bg-green-400,html[data-netbox-color-mode=light] .toast-header.bg-green-400,html[data-netbox-color-mode=light] .progress-bar.bg-green-400{color:#000}}@media print{html .bg-green-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-500 button.btn-close,html[data-netbox-color-mode=light] .bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500,html[data-netbox-color-mode=light] .btn.btn-ghost-green-500{color:#198754}}@media print{html .btn.btn-ghost-green-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-500:hover{background-color:#1987541f}}@media print{html .alert.alert-green-500 a:not(.btn),html .table-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=light] .table-green-500 a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-green-500 .btn:not([class*=btn-outline]),html .table-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-500 a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-green-500,html .toast.bg-green-500,html .toast-header.bg-green-500,html .progress-bar.bg-green-500,html[data-netbox-color-mode=dark] .badge.bg-green-500,html[data-netbox-color-mode=dark] .toast.bg-green-500,html[data-netbox-color-mode=dark] .toast-header.bg-green-500,html[data-netbox-color-mode=dark] .progress-bar.bg-green-500,html[data-netbox-color-mode=light] .badge.bg-green-500,html[data-netbox-color-mode=light] .toast.bg-green-500,html[data-netbox-color-mode=light] .toast-header.bg-green-500,html[data-netbox-color-mode=light] .progress-bar.bg-green-500{color:#fff}}@media print{html .bg-green-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-600 button.btn-close,html[data-netbox-color-mode=light] .bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c4128'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600,html[data-netbox-color-mode=light] .btn.btn-ghost-green-600{color:#146c43}}@media print{html .btn.btn-ghost-green-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-600:hover{background-color:#146c431f}}@media print{html .alert.alert-green-600 a:not(.btn),html .table-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=light] .table-green-600 a:not(.btn){font-weight:700;color:#0c4128}}@media print{html .alert.alert-green-600 .btn:not([class*=btn-outline]),html .table-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-600 a:not(.btn){font-weight:700;color:#a1c4b4}}@media print{html .badge.bg-green-600,html .toast.bg-green-600,html .toast-header.bg-green-600,html .progress-bar.bg-green-600,html[data-netbox-color-mode=dark] .badge.bg-green-600,html[data-netbox-color-mode=dark] .toast.bg-green-600,html[data-netbox-color-mode=dark] .toast-header.bg-green-600,html[data-netbox-color-mode=dark] .progress-bar.bg-green-600,html[data-netbox-color-mode=light] .badge.bg-green-600,html[data-netbox-color-mode=light] .toast.bg-green-600,html[data-netbox-color-mode=light] .toast-header.bg-green-600,html[data-netbox-color-mode=light] .progress-bar.bg-green-600{color:#fff}}@media print{html .bg-green-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-700 button.btn-close,html[data-netbox-color-mode=light] .bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2309311e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700,html[data-netbox-color-mode=light] .btn.btn-ghost-green-700{color:#0f5132}}@media print{html .btn.btn-ghost-green-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-700:hover{background-color:#0f51321f}}@media print{html .alert.alert-green-700 a:not(.btn),html .table-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=light] .table-green-700 a:not(.btn){font-weight:700;color:#09311e}}@media print{html .alert.alert-green-700 .btn:not([class*=btn-outline]),html .table-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-700 a:not(.btn){font-weight:700;color:#9fb9ad}}@media print{html .badge.bg-green-700,html .toast.bg-green-700,html .toast-header.bg-green-700,html .progress-bar.bg-green-700,html[data-netbox-color-mode=dark] .badge.bg-green-700,html[data-netbox-color-mode=dark] .toast.bg-green-700,html[data-netbox-color-mode=dark] .toast-header.bg-green-700,html[data-netbox-color-mode=dark] .progress-bar.bg-green-700,html[data-netbox-color-mode=light] .badge.bg-green-700,html[data-netbox-color-mode=light] .toast.bg-green-700,html[data-netbox-color-mode=light] .toast-header.bg-green-700,html[data-netbox-color-mode=light] .progress-bar.bg-green-700{color:#fff}}@media print{html .bg-green-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-800 button.btn-close,html[data-netbox-color-mode=light] .bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23062014'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800,html[data-netbox-color-mode=light] .btn.btn-ghost-green-800{color:#0a3622}}@media print{html .btn.btn-ghost-green-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-800:hover{background-color:#0a36221f}}@media print{html .alert.alert-green-800 a:not(.btn),html .table-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=light] .table-green-800 a:not(.btn){font-weight:700;color:#062014}}@media print{html .alert.alert-green-800 .btn:not([class*=btn-outline]),html .table-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-800 a:not(.btn){font-weight:700;color:#9dafa7}}@media print{html .badge.bg-green-800,html .toast.bg-green-800,html .toast-header.bg-green-800,html .progress-bar.bg-green-800,html[data-netbox-color-mode=dark] .badge.bg-green-800,html[data-netbox-color-mode=dark] .toast.bg-green-800,html[data-netbox-color-mode=dark] .toast-header.bg-green-800,html[data-netbox-color-mode=dark] .progress-bar.bg-green-800,html[data-netbox-color-mode=light] .badge.bg-green-800,html[data-netbox-color-mode=light] .toast.bg-green-800,html[data-netbox-color-mode=light] .toast-header.bg-green-800,html[data-netbox-color-mode=light] .progress-bar.bg-green-800{color:#fff}}@media print{html .bg-green-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-900 button.btn-close,html[data-netbox-color-mode=light] .bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303100a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900,html[data-netbox-color-mode=light] .btn.btn-ghost-green-900{color:#051b11}}@media print{html .btn.btn-ghost-green-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-900:hover{background-color:#051b111f}}@media print{html .alert.alert-green-900 a:not(.btn),html .table-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=light] .table-green-900 a:not(.btn){font-weight:700;color:#03100a}}@media print{html .alert.alert-green-900 .btn:not([class*=btn-outline]),html .table-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-900 a:not(.btn){font-weight:700;color:#9ba4a0}}@media print{html .badge.bg-green-900,html .toast.bg-green-900,html .toast-header.bg-green-900,html .progress-bar.bg-green-900,html[data-netbox-color-mode=dark] .badge.bg-green-900,html[data-netbox-color-mode=dark] .toast.bg-green-900,html[data-netbox-color-mode=dark] .toast-header.bg-green-900,html[data-netbox-color-mode=dark] .progress-bar.bg-green-900,html[data-netbox-color-mode=light] .badge.bg-green-900,html[data-netbox-color-mode=light] .toast.bg-green-900,html[data-netbox-color-mode=light] .toast-header.bg-green-900,html[data-netbox-color-mode=light] .progress-bar.bg-green-900{color:#fff}}@media print{html .bg-blue-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-100 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23535a66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-100{color:#cfe2ff}}@media print{html .btn.btn-ghost-blue-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}}@media print{html .alert.alert-blue-100 a:not(.btn),html .table-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-100 a:not(.btn){font-weight:700;color:#535a66}}@media print{html .alert.alert-blue-100 .btn:not([class*=btn-outline]),html .table-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-100 a:not(.btn){font-weight:700;color:#535a66}}@media print{html .badge.bg-blue-100,html .toast.bg-blue-100,html .toast-header.bg-blue-100,html .progress-bar.bg-blue-100,html[data-netbox-color-mode=dark] .badge.bg-blue-100,html[data-netbox-color-mode=dark] .toast.bg-blue-100,html[data-netbox-color-mode=dark] .toast-header.bg-blue-100,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-100,html[data-netbox-color-mode=light] .badge.bg-blue-100,html[data-netbox-color-mode=light] .toast.bg-blue-100,html[data-netbox-color-mode=light] .toast-header.bg-blue-100,html[data-netbox-color-mode=light] .progress-bar.bg-blue-100{color:#000}}@media print{html .bg-blue-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-200 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f4f66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-200{color:#9ec5fe}}@media print{html .btn.btn-ghost-blue-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}}@media print{html .alert.alert-blue-200 a:not(.btn),html .table-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}}@media print{html .alert.alert-blue-200 .btn:not([class*=btn-outline]),html .table-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}}@media print{html .badge.bg-blue-200,html .toast.bg-blue-200,html .toast-header.bg-blue-200,html .progress-bar.bg-blue-200,html[data-netbox-color-mode=dark] .badge.bg-blue-200,html[data-netbox-color-mode=dark] .toast.bg-blue-200,html[data-netbox-color-mode=dark] .toast-header.bg-blue-200,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-200,html[data-netbox-color-mode=light] .badge.bg-blue-200,html[data-netbox-color-mode=light] .toast.bg-blue-200,html[data-netbox-color-mode=light] .toast-header.bg-blue-200,html[data-netbox-color-mode=light] .progress-bar.bg-blue-200{color:#000}}@media print{html .bg-blue-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-300 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23426598'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-300{color:#6ea8fe}}@media print{html .btn.btn-ghost-blue-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}}@media print{html .alert.alert-blue-300 a:not(.btn),html .table-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-300 a:not(.btn){font-weight:700;color:#426598}}@media print{html .alert.alert-blue-300 .btn:not([class*=btn-outline]),html .table-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-300 a:not(.btn){font-weight:700;color:#2c4366}}@media print{html .badge.bg-blue-300,html .toast.bg-blue-300,html .toast-header.bg-blue-300,html .progress-bar.bg-blue-300,html[data-netbox-color-mode=dark] .badge.bg-blue-300,html[data-netbox-color-mode=dark] .toast.bg-blue-300,html[data-netbox-color-mode=dark] .toast-header.bg-blue-300,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-300,html[data-netbox-color-mode=light] .badge.bg-blue-300,html[data-netbox-color-mode=light] .toast.bg-blue-300,html[data-netbox-color-mode=light] .toast-header.bg-blue-300,html[data-netbox-color-mode=light] .progress-bar.bg-blue-300{color:#000}}@media print{html .bg-blue-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-400 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23255398'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-400{color:#3d8bfd}}@media print{html .btn.btn-ghost-blue-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}}@media print{html .alert.alert-blue-400 a:not(.btn),html .table-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-400 a:not(.btn){font-weight:700;color:#255398}}@media print{html .alert.alert-blue-400 .btn:not([class*=btn-outline]),html .table-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-400 a:not(.btn){font-weight:700;color:#183865}}@media print{html .badge.bg-blue-400,html .toast.bg-blue-400,html .toast-header.bg-blue-400,html .progress-bar.bg-blue-400,html[data-netbox-color-mode=dark] .badge.bg-blue-400,html[data-netbox-color-mode=dark] .toast.bg-blue-400,html[data-netbox-color-mode=dark] .toast-header.bg-blue-400,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-400,html[data-netbox-color-mode=light] .badge.bg-blue-400,html[data-netbox-color-mode=light] .toast.bg-blue-400,html[data-netbox-color-mode=light] .toast-header.bg-blue-400,html[data-netbox-color-mode=light] .progress-bar.bg-blue-400{color:#000}}@media print{html .bg-blue-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-500 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-500{color:#0d6efd}}@media print{html .btn.btn-ghost-blue-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}}@media print{html .alert.alert-blue-500 a:not(.btn),html .table-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-500 a:not(.btn){font-weight:700;color:#084298}}@media print{html .alert.alert-blue-500 .btn:not([class*=btn-outline]),html .table-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-500 a:not(.btn){font-weight:700;color:#9ec5fe}}@media print{html .badge.bg-blue-500,html .toast.bg-blue-500,html .toast-header.bg-blue-500,html .progress-bar.bg-blue-500,html[data-netbox-color-mode=dark] .badge.bg-blue-500,html[data-netbox-color-mode=dark] .toast.bg-blue-500,html[data-netbox-color-mode=dark] .toast-header.bg-blue-500,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-500,html[data-netbox-color-mode=light] .badge.bg-blue-500,html[data-netbox-color-mode=light] .toast.bg-blue-500,html[data-netbox-color-mode=light] .toast-header.bg-blue-500,html[data-netbox-color-mode=light] .progress-bar.bg-blue-500{color:#fff}}@media print{html .bg-blue-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-600 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063579'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-600{color:#0a58ca}}@media print{html .btn.btn-ghost-blue-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}}@media print{html .alert.alert-blue-600 a:not(.btn),html .table-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-600 a:not(.btn){font-weight:700;color:#063579}}@media print{html .alert.alert-blue-600 .btn:not([class*=btn-outline]),html .table-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-600 a:not(.btn){font-weight:700;color:#9dbcea}}@media print{html .badge.bg-blue-600,html .toast.bg-blue-600,html .toast-header.bg-blue-600,html .progress-bar.bg-blue-600,html[data-netbox-color-mode=dark] .badge.bg-blue-600,html[data-netbox-color-mode=dark] .toast.bg-blue-600,html[data-netbox-color-mode=dark] .toast-header.bg-blue-600,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-600,html[data-netbox-color-mode=light] .badge.bg-blue-600,html[data-netbox-color-mode=light] .toast.bg-blue-600,html[data-netbox-color-mode=light] .toast-header.bg-blue-600,html[data-netbox-color-mode=light] .progress-bar.bg-blue-600{color:#fff}}@media print{html .bg-blue-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-700 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2305285b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-700{color:#084298}}@media print{html .btn.btn-ghost-blue-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-700:hover{background-color:#0842981f}}@media print{html .alert.alert-blue-700 a:not(.btn),html .table-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-700 a:not(.btn){font-weight:700;color:#05285b}}@media print{html .alert.alert-blue-700 .btn:not([class*=btn-outline]),html .table-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-700 a:not(.btn){font-weight:700;color:#9cb3d6}}@media print{html .badge.bg-blue-700,html .toast.bg-blue-700,html .toast-header.bg-blue-700,html .progress-bar.bg-blue-700,html[data-netbox-color-mode=dark] .badge.bg-blue-700,html[data-netbox-color-mode=dark] .toast.bg-blue-700,html[data-netbox-color-mode=dark] .toast-header.bg-blue-700,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-700,html[data-netbox-color-mode=light] .badge.bg-blue-700,html[data-netbox-color-mode=light] .toast.bg-blue-700,html[data-netbox-color-mode=light] .toast-header.bg-blue-700,html[data-netbox-color-mode=light] .progress-bar.bg-blue-700{color:#fff}}@media print{html .bg-blue-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-800 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031a3d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-800{color:#052c65}}@media print{html .btn.btn-ghost-blue-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-800:hover{background-color:#052c651f}}@media print{html .alert.alert-blue-800 a:not(.btn),html .table-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-800 a:not(.btn){font-weight:700;color:#031a3d}}@media print{html .alert.alert-blue-800 .btn:not([class*=btn-outline]),html .table-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-800 a:not(.btn){font-weight:700;color:#9babc1}}@media print{html .badge.bg-blue-800,html .toast.bg-blue-800,html .toast-header.bg-blue-800,html .progress-bar.bg-blue-800,html[data-netbox-color-mode=dark] .badge.bg-blue-800,html[data-netbox-color-mode=dark] .toast.bg-blue-800,html[data-netbox-color-mode=dark] .toast-header.bg-blue-800,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-800,html[data-netbox-color-mode=light] .badge.bg-blue-800,html[data-netbox-color-mode=light] .toast.bg-blue-800,html[data-netbox-color-mode=light] .toast-header.bg-blue-800,html[data-netbox-color-mode=light] .progress-bar.bg-blue-800{color:#fff}}@media print{html .bg-blue-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-900 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23020d1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-900{color:#031633}}@media print{html .btn.btn-ghost-blue-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-900:hover{background-color:#0316331f}}@media print{html .alert.alert-blue-900 a:not(.btn),html .table-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-900 a:not(.btn){font-weight:700;color:#020d1f}}@media print{html .alert.alert-blue-900 .btn:not([class*=btn-outline]),html .table-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-900 a:not(.btn){font-weight:700;color:#9aa2ad}}@media print{html .badge.bg-blue-900,html .toast.bg-blue-900,html .toast-header.bg-blue-900,html .progress-bar.bg-blue-900,html[data-netbox-color-mode=dark] .badge.bg-blue-900,html[data-netbox-color-mode=dark] .toast.bg-blue-900,html[data-netbox-color-mode=dark] .toast-header.bg-blue-900,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-900,html[data-netbox-color-mode=light] .badge.bg-blue-900,html[data-netbox-color-mode=light] .toast.bg-blue-900,html[data-netbox-color-mode=light] .toast-header.bg-blue-900,html[data-netbox-color-mode=light] .progress-bar.bg-blue-900{color:#fff}}@media print{html .bg-cyan-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-100 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23536265'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-100{color:#cff4fc}}@media print{html .btn.btn-ghost-cyan-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}}@media print{html .alert.alert-cyan-100 a:not(.btn),html .table-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-100 a:not(.btn){font-weight:700;color:#536265}}@media print{html .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html .table-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#536265}}@media print{html .badge.bg-cyan-100,html .toast.bg-cyan-100,html .toast-header.bg-cyan-100,html .progress-bar.bg-cyan-100,html[data-netbox-color-mode=dark] .badge.bg-cyan-100,html[data-netbox-color-mode=dark] .toast.bg-cyan-100,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-100,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-100,html[data-netbox-color-mode=light] .badge.bg-cyan-100,html[data-netbox-color-mode=light] .toast.bg-cyan-100,html[data-netbox-color-mode=light] .toast-header.bg-cyan-100,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-100{color:#000}}@media print{html .bg-cyan-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-200 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5e64'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-200{color:#9eeaf9}}@media print{html .btn.btn-ghost-cyan-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}}@media print{html .alert.alert-cyan-200 a:not(.btn),html .table-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}}@media print{html .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html .table-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}}@media print{html .badge.bg-cyan-200,html .toast.bg-cyan-200,html .toast-header.bg-cyan-200,html .progress-bar.bg-cyan-200,html[data-netbox-color-mode=dark] .badge.bg-cyan-200,html[data-netbox-color-mode=dark] .toast.bg-cyan-200,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-200,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-200,html[data-netbox-color-mode=light] .badge.bg-cyan-200,html[data-netbox-color-mode=light] .toast.bg-cyan-200,html[data-netbox-color-mode=light] .toast-header.bg-cyan-200,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-200{color:#000}}@media print{html .bg-cyan-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-300 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c5962'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-300{color:#6edff6}}@media print{html .btn.btn-ghost-cyan-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}}@media print{html .alert.alert-cyan-300 a:not(.btn),html .table-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}}@media print{html .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html .table-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}}@media print{html .badge.bg-cyan-300,html .toast.bg-cyan-300,html .toast-header.bg-cyan-300,html .progress-bar.bg-cyan-300,html[data-netbox-color-mode=dark] .badge.bg-cyan-300,html[data-netbox-color-mode=dark] .toast.bg-cyan-300,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-300,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-300,html[data-netbox-color-mode=light] .badge.bg-cyan-300,html[data-netbox-color-mode=light] .toast.bg-cyan-300,html[data-netbox-color-mode=light] .toast-header.bg-cyan-300,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-300{color:#000}}@media print{html .bg-cyan-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-400 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23185561'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-400{color:#3dd5f3}}@media print{html .btn.btn-ghost-cyan-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}}@media print{html .alert.alert-cyan-400 a:not(.btn),html .table-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-400 a:not(.btn){font-weight:700;color:#185561}}@media print{html .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html .table-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#185561}}@media print{html .badge.bg-cyan-400,html .toast.bg-cyan-400,html .toast-header.bg-cyan-400,html .progress-bar.bg-cyan-400,html[data-netbox-color-mode=dark] .badge.bg-cyan-400,html[data-netbox-color-mode=dark] .toast.bg-cyan-400,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-400,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-400,html[data-netbox-color-mode=light] .badge.bg-cyan-400,html[data-netbox-color-mode=light] .toast.bg-cyan-400,html[data-netbox-color-mode=light] .toast-header.bg-cyan-400,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-400{color:#000}}@media print{html .bg-cyan-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-500 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-500{color:#0dcaf0}}@media print{html .btn.btn-ghost-cyan-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-cyan-500 a:not(.btn),html .table-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-500 a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html .table-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-cyan-500,html .toast.bg-cyan-500,html .toast-header.bg-cyan-500,html .progress-bar.bg-cyan-500,html[data-netbox-color-mode=dark] .badge.bg-cyan-500,html[data-netbox-color-mode=dark] .toast.bg-cyan-500,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-500,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-500,html[data-netbox-color-mode=light] .badge.bg-cyan-500,html[data-netbox-color-mode=light] .toast.bg-cyan-500,html[data-netbox-color-mode=light] .toast-header.bg-cyan-500,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-500{color:#000}}@media print{html .bg-cyan-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-600 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23066173'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-600{color:#0aa2c0}}@media print{html .btn.btn-ghost-cyan-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}}@media print{html .alert.alert-cyan-600 a:not(.btn),html .table-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-600 a:not(.btn){font-weight:700;color:#066173}}@media print{html .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html .table-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#04414d}}@media print{html .badge.bg-cyan-600,html .toast.bg-cyan-600,html .toast-header.bg-cyan-600,html .progress-bar.bg-cyan-600,html[data-netbox-color-mode=dark] .badge.bg-cyan-600,html[data-netbox-color-mode=dark] .toast.bg-cyan-600,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-600,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-600,html[data-netbox-color-mode=light] .badge.bg-cyan-600,html[data-netbox-color-mode=light] .toast.bg-cyan-600,html[data-netbox-color-mode=light] .toast-header.bg-cyan-600,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-600{color:#000}}@media print{html .bg-cyan-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-700 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23054956'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-700{color:#087990}}@media print{html .btn.btn-ghost-cyan-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-700:hover{background-color:#0879901f}}@media print{html .alert.alert-cyan-700 a:not(.btn),html .table-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-700 a:not(.btn){font-weight:700;color:#054956}}@media print{html .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html .table-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#9cc9d3}}@media print{html .badge.bg-cyan-700,html .toast.bg-cyan-700,html .toast-header.bg-cyan-700,html .progress-bar.bg-cyan-700,html[data-netbox-color-mode=dark] .badge.bg-cyan-700,html[data-netbox-color-mode=dark] .toast.bg-cyan-700,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-700,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-700,html[data-netbox-color-mode=light] .badge.bg-cyan-700,html[data-netbox-color-mode=light] .toast.bg-cyan-700,html[data-netbox-color-mode=light] .toast-header.bg-cyan-700,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-700{color:#fff}}@media print{html .bg-cyan-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-800 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303313a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-800{color:#055160}}@media print{html .btn.btn-ghost-cyan-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-800:hover{background-color:#0551601f}}@media print{html .alert.alert-cyan-800 a:not(.btn),html .table-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-800 a:not(.btn){font-weight:700;color:#03313a}}@media print{html .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html .table-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#9bb9bf}}@media print{html .badge.bg-cyan-800,html .toast.bg-cyan-800,html .toast-header.bg-cyan-800,html .progress-bar.bg-cyan-800,html[data-netbox-color-mode=dark] .badge.bg-cyan-800,html[data-netbox-color-mode=dark] .toast.bg-cyan-800,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-800,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-800,html[data-netbox-color-mode=light] .badge.bg-cyan-800,html[data-netbox-color-mode=light] .toast.bg-cyan-800,html[data-netbox-color-mode=light] .toast-header.bg-cyan-800,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-800{color:#fff}}@media print{html .bg-cyan-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-900 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2302181d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-900{color:#032830}}@media print{html .btn.btn-ghost-cyan-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-900:hover{background-color:#0328301f}}@media print{html .alert.alert-cyan-900 a:not(.btn),html .table-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-900 a:not(.btn){font-weight:700;color:#02181d}}@media print{html .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html .table-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#9aa9ac}}@media print{html .badge.bg-cyan-900,html .toast.bg-cyan-900,html .toast-header.bg-cyan-900,html .progress-bar.bg-cyan-900,html[data-netbox-color-mode=dark] .badge.bg-cyan-900,html[data-netbox-color-mode=dark] .toast.bg-cyan-900,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-900,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-900,html[data-netbox-color-mode=light] .badge.bg-cyan-900,html[data-netbox-color-mode=light] .toast.bg-cyan-900,html[data-netbox-color-mode=light] .toast-header.bg-cyan-900,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-900{color:#fff}}@media print{html .bg-indigo-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-100 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5365'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-100{color:#e0cffc}}@media print{html .btn.btn-ghost-indigo-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}}@media print{html .alert.alert-indigo-100 a:not(.btn),html .table-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}}@media print{html .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html .table-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}}@media print{html .badge.bg-indigo-100,html .toast.bg-indigo-100,html .toast-header.bg-indigo-100,html .progress-bar.bg-indigo-100,html[data-netbox-color-mode=dark] .badge.bg-indigo-100,html[data-netbox-color-mode=dark] .toast.bg-indigo-100,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-100,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-100,html[data-netbox-color-mode=light] .badge.bg-indigo-100,html[data-netbox-color-mode=light] .toast.bg-indigo-100,html[data-netbox-color-mode=light] .toast-header.bg-indigo-100,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-100{color:#000}}@media print{html .bg-indigo-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-200 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23745f96'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-200{color:#c29ffa}}@media print{html .btn.btn-ghost-indigo-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}}@media print{html .alert.alert-indigo-200 a:not(.btn),html .table-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-200 a:not(.btn){font-weight:700;color:#745f96}}@media print{html .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html .table-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#4e4064}}@media print{html .badge.bg-indigo-200,html .toast.bg-indigo-200,html .toast-header.bg-indigo-200,html .progress-bar.bg-indigo-200,html[data-netbox-color-mode=dark] .badge.bg-indigo-200,html[data-netbox-color-mode=dark] .toast.bg-indigo-200,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-200,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-200,html[data-netbox-color-mode=light] .badge.bg-indigo-200,html[data-netbox-color-mode=light] .toast.bg-indigo-200,html[data-netbox-color-mode=light] .toast-header.bg-indigo-200,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-200{color:#000}}@media print{html .bg-indigo-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-300 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23624394'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-300{color:#a370f7}}@media print{html .btn.btn-ghost-indigo-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}}@media print{html .alert.alert-indigo-300 a:not(.btn),html .table-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-300 a:not(.btn){font-weight:700;color:#624394}}@media print{html .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html .table-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#412d63}}@media print{html .badge.bg-indigo-300,html .toast.bg-indigo-300,html .toast-header.bg-indigo-300,html .progress-bar.bg-indigo-300,html[data-netbox-color-mode=dark] .badge.bg-indigo-300,html[data-netbox-color-mode=dark] .toast.bg-indigo-300,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-300,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-300,html[data-netbox-color-mode=light] .badge.bg-indigo-300,html[data-netbox-color-mode=light] .toast.bg-indigo-300,html[data-netbox-color-mode=light] .toast-header.bg-indigo-300,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-300{color:#000}}@media print{html .bg-indigo-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-400 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23502693'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-400{color:#8540f5}}@media print{html .btn.btn-ghost-indigo-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}}@media print{html .alert.alert-indigo-400 a:not(.btn),html .table-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-400 a:not(.btn){font-weight:700;color:#502693}}@media print{html .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html .table-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#ceb3fb}}@media print{html .badge.bg-indigo-400,html .toast.bg-indigo-400,html .toast-header.bg-indigo-400,html .progress-bar.bg-indigo-400,html[data-netbox-color-mode=dark] .badge.bg-indigo-400,html[data-netbox-color-mode=dark] .toast.bg-indigo-400,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-400,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-400,html[data-netbox-color-mode=light] .badge.bg-indigo-400,html[data-netbox-color-mode=light] .toast.bg-indigo-400,html[data-netbox-color-mode=light] .toast-header.bg-indigo-400,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-400{color:#fff}}@media print{html .bg-indigo-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-500 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-500{color:#6610f2}}@media print{html .btn.btn-ghost-indigo-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}}@media print{html .alert.alert-indigo-500 a:not(.btn),html .table-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-500 a:not(.btn){font-weight:700;color:#3d0a91}}@media print{html .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html .table-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#c29ffa}}@media print{html .badge.bg-indigo-500,html .toast.bg-indigo-500,html .toast-header.bg-indigo-500,html .progress-bar.bg-indigo-500,html[data-netbox-color-mode=dark] .badge.bg-indigo-500,html[data-netbox-color-mode=dark] .toast.bg-indigo-500,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-500,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-500,html[data-netbox-color-mode=light] .badge.bg-indigo-500,html[data-netbox-color-mode=light] .toast.bg-indigo-500,html[data-netbox-color-mode=light] .toast-header.bg-indigo-500,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-500{color:#fff}}@media print{html .bg-indigo-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-600 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23310874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-600{color:#520dc2}}@media print{html .btn.btn-ghost-indigo-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}}@media print{html .alert.alert-indigo-600 a:not(.btn),html .table-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-600 a:not(.btn){font-weight:700;color:#310874}}@media print{html .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html .table-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#ba9ee7}}@media print{html .badge.bg-indigo-600,html .toast.bg-indigo-600,html .toast-header.bg-indigo-600,html .progress-bar.bg-indigo-600,html[data-netbox-color-mode=dark] .badge.bg-indigo-600,html[data-netbox-color-mode=dark] .toast.bg-indigo-600,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-600,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-600,html[data-netbox-color-mode=light] .badge.bg-indigo-600,html[data-netbox-color-mode=light] .toast.bg-indigo-600,html[data-netbox-color-mode=light] .toast-header.bg-indigo-600,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-600{color:#fff}}@media print{html .bg-indigo-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-700 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23250657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-700{color:#3d0a91}}@media print{html .btn.btn-ghost-indigo-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}}@media print{html .alert.alert-indigo-700 a:not(.btn),html .table-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-700 a:not(.btn){font-weight:700;color:#250657}}@media print{html .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html .table-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#b19dd3}}@media print{html .badge.bg-indigo-700,html .toast.bg-indigo-700,html .toast-header.bg-indigo-700,html .progress-bar.bg-indigo-700,html[data-netbox-color-mode=dark] .badge.bg-indigo-700,html[data-netbox-color-mode=dark] .toast.bg-indigo-700,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-700,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-700,html[data-netbox-color-mode=light] .badge.bg-indigo-700,html[data-netbox-color-mode=light] .toast.bg-indigo-700,html[data-netbox-color-mode=light] .toast-header.bg-indigo-700,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-700{color:#fff}}@media print{html .bg-indigo-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-800 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2319043a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-800{color:#290661}}@media print{html .btn.btn-ghost-indigo-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-800:hover{background-color:#2906611f}}@media print{html .alert.alert-indigo-800 a:not(.btn),html .table-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-800 a:not(.btn){font-weight:700;color:#19043a}}@media print{html .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html .table-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#a99bc0}}@media print{html .badge.bg-indigo-800,html .toast.bg-indigo-800,html .toast-header.bg-indigo-800,html .progress-bar.bg-indigo-800,html[data-netbox-color-mode=dark] .badge.bg-indigo-800,html[data-netbox-color-mode=dark] .toast.bg-indigo-800,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-800,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-800,html[data-netbox-color-mode=light] .badge.bg-indigo-800,html[data-netbox-color-mode=light] .toast.bg-indigo-800,html[data-netbox-color-mode=light] .toast-header.bg-indigo-800,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-800{color:#fff}}@media print{html .bg-indigo-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-900 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c021d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-900{color:#140330}}@media print{html .btn.btn-ghost-indigo-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-900:hover{background-color:#1403301f}}@media print{html .alert.alert-indigo-900 a:not(.btn),html .table-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-900 a:not(.btn){font-weight:700;color:#0c021d}}@media print{html .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html .table-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#a19aac}}@media print{html .badge.bg-indigo-900,html .toast.bg-indigo-900,html .toast-header.bg-indigo-900,html .progress-bar.bg-indigo-900,html[data-netbox-color-mode=dark] .badge.bg-indigo-900,html[data-netbox-color-mode=dark] .toast.bg-indigo-900,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-900,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-900,html[data-netbox-color-mode=light] .badge.bg-indigo-900,html[data-netbox-color-mode=light] .toast.bg-indigo-900,html[data-netbox-color-mode=light] .toast-header.bg-indigo-900,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-900{color:#fff}}@media print{html .bg-purple-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-100 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5761'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-100{color:#e2d9f3}}@media print{html .btn.btn-ghost-purple-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}}@media print{html .alert.alert-purple-100 a:not(.btn),html .table-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-100 a:not(.btn){font-weight:700;color:#5a5761}}@media print{html .alert.alert-purple-100 .btn:not([class*=btn-outline]),html .table-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-100 a:not(.btn){font-weight:700;color:#5a5761}}@media print{html .badge.bg-purple-100,html .toast.bg-purple-100,html .toast-header.bg-purple-100,html .progress-bar.bg-purple-100,html[data-netbox-color-mode=dark] .badge.bg-purple-100,html[data-netbox-color-mode=dark] .toast.bg-purple-100,html[data-netbox-color-mode=dark] .toast-header.bg-purple-100,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-100,html[data-netbox-color-mode=light] .badge.bg-purple-100,html[data-netbox-color-mode=light] .toast.bg-purple-100,html[data-netbox-color-mode=light] .toast-header.bg-purple-100,html[data-netbox-color-mode=light] .progress-bar.bg-purple-100{color:#000}}@media print{html .bg-purple-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-200 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f485c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-200{color:#c5b3e6}}@media print{html .btn.btn-ghost-purple-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}}@media print{html .alert.alert-purple-200 a:not(.btn),html .table-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-200 a:not(.btn){font-weight:700;color:#4f485c}}@media print{html .alert.alert-purple-200 .btn:not([class*=btn-outline]),html .table-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-200 a:not(.btn){font-weight:700;color:#4f485c}}@media print{html .badge.bg-purple-200,html .toast.bg-purple-200,html .toast-header.bg-purple-200,html .progress-bar.bg-purple-200,html[data-netbox-color-mode=dark] .badge.bg-purple-200,html[data-netbox-color-mode=dark] .toast.bg-purple-200,html[data-netbox-color-mode=dark] .toast-header.bg-purple-200,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-200,html[data-netbox-color-mode=light] .badge.bg-purple-200,html[data-netbox-color-mode=light] .toast.bg-purple-200,html[data-netbox-color-mode=light] .toast-header.bg-purple-200,html[data-netbox-color-mode=light] .progress-bar.bg-purple-200{color:#000}}@media print{html .bg-purple-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-300 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23655583'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-300{color:#a98eda}}@media print{html .btn.btn-ghost-purple-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}}@media print{html .alert.alert-purple-300 a:not(.btn),html .table-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-300 a:not(.btn){font-weight:700;color:#655583}}@media print{html .alert.alert-purple-300 .btn:not([class*=btn-outline]),html .table-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-300 a:not(.btn){font-weight:700;color:#443957}}@media print{html .badge.bg-purple-300,html .toast.bg-purple-300,html .toast-header.bg-purple-300,html .progress-bar.bg-purple-300,html[data-netbox-color-mode=dark] .badge.bg-purple-300,html[data-netbox-color-mode=dark] .toast.bg-purple-300,html[data-netbox-color-mode=dark] .toast-header.bg-purple-300,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-300,html[data-netbox-color-mode=light] .badge.bg-purple-300,html[data-netbox-color-mode=light] .toast.bg-purple-300,html[data-netbox-color-mode=light] .toast-header.bg-purple-300,html[data-netbox-color-mode=light] .progress-bar.bg-purple-300{color:#000}}@media print{html .bg-purple-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-400 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23543e7b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-400{color:#8c68cd}}@media print{html .btn.btn-ghost-purple-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}}@media print{html .alert.alert-purple-400 a:not(.btn),html .table-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-400 a:not(.btn){font-weight:700;color:#543e7b}}@media print{html .alert.alert-purple-400 .btn:not([class*=btn-outline]),html .table-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-400 a:not(.btn){font-weight:700;color:#382a52}}@media print{html .badge.bg-purple-400,html .toast.bg-purple-400,html .toast-header.bg-purple-400,html .progress-bar.bg-purple-400,html[data-netbox-color-mode=dark] .badge.bg-purple-400,html[data-netbox-color-mode=dark] .toast.bg-purple-400,html[data-netbox-color-mode=dark] .toast-header.bg-purple-400,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-400,html[data-netbox-color-mode=light] .badge.bg-purple-400,html[data-netbox-color-mode=light] .toast.bg-purple-400,html[data-netbox-color-mode=light] .toast-header.bg-purple-400,html[data-netbox-color-mode=light] .progress-bar.bg-purple-400{color:#000}}@media print{html .bg-purple-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-500 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-500{color:#6f42c1}}@media print{html .btn.btn-ghost-purple-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}}@media print{html .alert.alert-purple-500 a:not(.btn),html .table-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-500 a:not(.btn){font-weight:700;color:#432874}}@media print{html .alert.alert-purple-500 .btn:not([class*=btn-outline]),html .table-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-500 a:not(.btn){font-weight:700;color:#c5b3e6}}@media print{html .badge.bg-purple-500,html .toast.bg-purple-500,html .toast-header.bg-purple-500,html .progress-bar.bg-purple-500,html[data-netbox-color-mode=dark] .badge.bg-purple-500,html[data-netbox-color-mode=dark] .toast.bg-purple-500,html[data-netbox-color-mode=dark] .toast-header.bg-purple-500,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-500,html[data-netbox-color-mode=light] .badge.bg-purple-500,html[data-netbox-color-mode=light] .toast.bg-purple-500,html[data-netbox-color-mode=light] .toast-header.bg-purple-500,html[data-netbox-color-mode=light] .progress-bar.bg-purple-500{color:#fff}}@media print{html .bg-purple-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-600 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2335205c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-600{color:#59359a}}@media print{html .btn.btn-ghost-purple-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-600:hover{background-color:#59359a1f}}@media print{html .alert.alert-purple-600 a:not(.btn),html .table-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-600 a:not(.btn){font-weight:700;color:#35205c}}@media print{html .alert.alert-purple-600 .btn:not([class*=btn-outline]),html .table-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-600 a:not(.btn){font-weight:700;color:#bdaed7}}@media print{html .badge.bg-purple-600,html .toast.bg-purple-600,html .toast-header.bg-purple-600,html .progress-bar.bg-purple-600,html[data-netbox-color-mode=dark] .badge.bg-purple-600,html[data-netbox-color-mode=dark] .toast.bg-purple-600,html[data-netbox-color-mode=dark] .toast-header.bg-purple-600,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-600,html[data-netbox-color-mode=light] .badge.bg-purple-600,html[data-netbox-color-mode=light] .toast.bg-purple-600,html[data-netbox-color-mode=light] .toast-header.bg-purple-600,html[data-netbox-color-mode=light] .progress-bar.bg-purple-600{color:#fff}}@media print{html .bg-purple-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-700 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23281846'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-700{color:#432874}}@media print{html .btn.btn-ghost-purple-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-700:hover{background-color:#4328741f}}@media print{html .alert.alert-purple-700 a:not(.btn),html .table-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-700 a:not(.btn){font-weight:700;color:#281846}}@media print{html .alert.alert-purple-700 .btn:not([class*=btn-outline]),html .table-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-700 a:not(.btn){font-weight:700;color:#b4a9c7}}@media print{html .badge.bg-purple-700,html .toast.bg-purple-700,html .toast-header.bg-purple-700,html .progress-bar.bg-purple-700,html[data-netbox-color-mode=dark] .badge.bg-purple-700,html[data-netbox-color-mode=dark] .toast.bg-purple-700,html[data-netbox-color-mode=dark] .toast-header.bg-purple-700,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-700,html[data-netbox-color-mode=light] .badge.bg-purple-700,html[data-netbox-color-mode=light] .toast.bg-purple-700,html[data-netbox-color-mode=light] .toast-header.bg-purple-700,html[data-netbox-color-mode=light] .progress-bar.bg-purple-700{color:#fff}}@media print{html .bg-purple-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-800 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a102e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-800{color:#2c1a4d}}@media print{html .btn.btn-ghost-purple-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}}@media print{html .alert.alert-purple-800 a:not(.btn),html .table-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-800 a:not(.btn){font-weight:700;color:#1a102e}}@media print{html .alert.alert-purple-800 .btn:not([class*=btn-outline]),html .table-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-800 a:not(.btn){font-weight:700;color:#aba3b8}}@media print{html .badge.bg-purple-800,html .toast.bg-purple-800,html .toast-header.bg-purple-800,html .progress-bar.bg-purple-800,html[data-netbox-color-mode=dark] .badge.bg-purple-800,html[data-netbox-color-mode=dark] .toast.bg-purple-800,html[data-netbox-color-mode=dark] .toast-header.bg-purple-800,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-800,html[data-netbox-color-mode=light] .badge.bg-purple-800,html[data-netbox-color-mode=light] .toast.bg-purple-800,html[data-netbox-color-mode=light] .toast-header.bg-purple-800,html[data-netbox-color-mode=light] .progress-bar.bg-purple-800{color:#fff}}@media print{html .bg-purple-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-900 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0817'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-900{color:#160d27}}@media print{html .btn.btn-ghost-purple-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-900:hover{background-color:#160d271f}}@media print{html .alert.alert-purple-900 a:not(.btn),html .table-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-900 a:not(.btn){font-weight:700;color:#0d0817}}@media print{html .alert.alert-purple-900 .btn:not([class*=btn-outline]),html .table-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-900 a:not(.btn){font-weight:700;color:#a29ea9}}@media print{html .badge.bg-purple-900,html .toast.bg-purple-900,html .toast-header.bg-purple-900,html .progress-bar.bg-purple-900,html[data-netbox-color-mode=dark] .badge.bg-purple-900,html[data-netbox-color-mode=dark] .toast.bg-purple-900,html[data-netbox-color-mode=dark] .toast-header.bg-purple-900,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-900,html[data-netbox-color-mode=light] .badge.bg-purple-900,html[data-netbox-color-mode=light] .toast.bg-purple-900,html[data-netbox-color-mode=light] .toast-header.bg-purple-900,html[data-netbox-color-mode=light] .progress-bar.bg-purple-900{color:#fff}}@media print{html .bg-pink-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-100 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2363565c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-100{color:#f7d6e6}}@media print{html .btn.btn-ghost-pink-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}}@media print{html .alert.alert-pink-100 a:not(.btn),html .table-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-100 a:not(.btn){font-weight:700;color:#63565c}}@media print{html .alert.alert-pink-100 .btn:not([class*=btn-outline]),html .table-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-100 a:not(.btn){font-weight:700;color:#63565c}}@media print{html .badge.bg-pink-100,html .toast.bg-pink-100,html .toast-header.bg-pink-100,html .progress-bar.bg-pink-100,html[data-netbox-color-mode=dark] .badge.bg-pink-100,html[data-netbox-color-mode=dark] .toast.bg-pink-100,html[data-netbox-color-mode=dark] .toast-header.bg-pink-100,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-100,html[data-netbox-color-mode=light] .badge.bg-pink-100,html[data-netbox-color-mode=light] .toast.bg-pink-100,html[data-netbox-color-mode=light] .toast-header.bg-pink-100,html[data-netbox-color-mode=light] .progress-bar.bg-pink-100{color:#000}}@media print{html .bg-pink-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-200 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604552'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-200{color:#efadce}}@media print{html .btn.btn-ghost-pink-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-200:hover{background-color:#efadce1f}}@media print{html .alert.alert-pink-200 a:not(.btn),html .table-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-200 a:not(.btn){font-weight:700;color:#604552}}@media print{html .alert.alert-pink-200 .btn:not([class*=btn-outline]),html .table-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-200 a:not(.btn){font-weight:700;color:#604552}}@media print{html .badge.bg-pink-200,html .toast.bg-pink-200,html .toast-header.bg-pink-200,html .progress-bar.bg-pink-200,html[data-netbox-color-mode=dark] .badge.bg-pink-200,html[data-netbox-color-mode=dark] .toast.bg-pink-200,html[data-netbox-color-mode=dark] .toast-header.bg-pink-200,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-200,html[data-netbox-color-mode=light] .badge.bg-pink-200,html[data-netbox-color-mode=light] .toast.bg-pink-200,html[data-netbox-color-mode=light] .toast-header.bg-pink-200,html[data-netbox-color-mode=light] .progress-bar.bg-pink-200{color:#000}}@media print{html .bg-pink-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-300 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a506d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-300{color:#e685b5}}@media print{html .btn.btn-ghost-pink-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-300:hover{background-color:#e685b51f}}@media print{html .alert.alert-pink-300 a:not(.btn),html .table-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-300 a:not(.btn){font-weight:700;color:#8a506d}}@media print{html .alert.alert-pink-300 .btn:not([class*=btn-outline]),html .table-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-300 a:not(.btn){font-weight:700;color:#5c3548}}@media print{html .badge.bg-pink-300,html .toast.bg-pink-300,html .toast-header.bg-pink-300,html .progress-bar.bg-pink-300,html[data-netbox-color-mode=dark] .badge.bg-pink-300,html[data-netbox-color-mode=dark] .toast.bg-pink-300,html[data-netbox-color-mode=dark] .toast-header.bg-pink-300,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-300,html[data-netbox-color-mode=light] .badge.bg-pink-300,html[data-netbox-color-mode=light] .toast.bg-pink-300,html[data-netbox-color-mode=light] .toast-header.bg-pink-300,html[data-netbox-color-mode=light] .progress-bar.bg-pink-300{color:#000}}@media print{html .bg-pink-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-400 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2385375e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-400{color:#de5c9d}}@media print{html .btn.btn-ghost-pink-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}}@media print{html .alert.alert-pink-400 a:not(.btn),html .table-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-400 a:not(.btn){font-weight:700;color:#85375e}}@media print{html .alert.alert-pink-400 .btn:not([class*=btn-outline]),html .table-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-400 a:not(.btn){font-weight:700;color:#59253f}}@media print{html .badge.bg-pink-400,html .toast.bg-pink-400,html .toast-header.bg-pink-400,html .progress-bar.bg-pink-400,html[data-netbox-color-mode=dark] .badge.bg-pink-400,html[data-netbox-color-mode=dark] .toast.bg-pink-400,html[data-netbox-color-mode=dark] .toast-header.bg-pink-400,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-400,html[data-netbox-color-mode=light] .badge.bg-pink-400,html[data-netbox-color-mode=light] .toast.bg-pink-400,html[data-netbox-color-mode=light] .toast-header.bg-pink-400,html[data-netbox-color-mode=light] .progress-bar.bg-pink-400{color:#000}}@media print{html .bg-pink-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-500 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-500{color:#d63384}}@media print{html .btn.btn-ghost-pink-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-500:hover{background-color:#d633841f}}@media print{html .alert.alert-pink-500 a:not(.btn),html .table-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-500 a:not(.btn){font-weight:700;color:#801f4f}}@media print{html .alert.alert-pink-500 .btn:not([class*=btn-outline]),html .table-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-500 a:not(.btn){font-weight:700;color:#efadce}}@media print{html .badge.bg-pink-500,html .toast.bg-pink-500,html .toast-header.bg-pink-500,html .progress-bar.bg-pink-500,html[data-netbox-color-mode=dark] .badge.bg-pink-500,html[data-netbox-color-mode=dark] .toast.bg-pink-500,html[data-netbox-color-mode=dark] .toast-header.bg-pink-500,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-500,html[data-netbox-color-mode=light] .badge.bg-pink-500,html[data-netbox-color-mode=light] .toast.bg-pink-500,html[data-netbox-color-mode=light] .toast-header.bg-pink-500,html[data-netbox-color-mode=light] .progress-bar.bg-pink-500{color:#fff}}@media print{html .bg-pink-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-600 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23671940'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-600{color:#ab296a}}@media print{html .btn.btn-ghost-pink-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}}@media print{html .alert.alert-pink-600 a:not(.btn),html .table-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-600 a:not(.btn){font-weight:700;color:#671940}}@media print{html .alert.alert-pink-600 .btn:not([class*=btn-outline]),html .table-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-600 a:not(.btn){font-weight:700;color:#dda9c3}}@media print{html .badge.bg-pink-600,html .toast.bg-pink-600,html .toast-header.bg-pink-600,html .progress-bar.bg-pink-600,html[data-netbox-color-mode=dark] .badge.bg-pink-600,html[data-netbox-color-mode=dark] .toast.bg-pink-600,html[data-netbox-color-mode=dark] .toast-header.bg-pink-600,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-600,html[data-netbox-color-mode=light] .badge.bg-pink-600,html[data-netbox-color-mode=light] .toast.bg-pink-600,html[data-netbox-color-mode=light] .toast-header.bg-pink-600,html[data-netbox-color-mode=light] .progress-bar.bg-pink-600{color:#fff}}@media print{html .bg-pink-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-700 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d132f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-700{color:#801f4f}}@media print{html .btn.btn-ghost-pink-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}}@media print{html .alert.alert-pink-700 a:not(.btn),html .table-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-700 a:not(.btn){font-weight:700;color:#4d132f}}@media print{html .alert.alert-pink-700 .btn:not([class*=btn-outline]),html .table-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-700 a:not(.btn){font-weight:700;color:#cca5b9}}@media print{html .badge.bg-pink-700,html .toast.bg-pink-700,html .toast-header.bg-pink-700,html .progress-bar.bg-pink-700,html[data-netbox-color-mode=dark] .badge.bg-pink-700,html[data-netbox-color-mode=dark] .toast.bg-pink-700,html[data-netbox-color-mode=dark] .toast-header.bg-pink-700,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-700,html[data-netbox-color-mode=light] .badge.bg-pink-700,html[data-netbox-color-mode=light] .toast.bg-pink-700,html[data-netbox-color-mode=light] .toast-header.bg-pink-700,html[data-netbox-color-mode=light] .progress-bar.bg-pink-700{color:#fff}}@media print{html .bg-pink-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-800 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23340c20'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-800{color:#561435}}@media print{html .btn.btn-ghost-pink-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-800:hover{background-color:#5614351f}}@media print{html .alert.alert-pink-800 a:not(.btn),html .table-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-800 a:not(.btn){font-weight:700;color:#340c20}}@media print{html .alert.alert-pink-800 .btn:not([class*=btn-outline]),html .table-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-800 a:not(.btn){font-weight:700;color:#bba1ae}}@media print{html .badge.bg-pink-800,html .toast.bg-pink-800,html .toast-header.bg-pink-800,html .progress-bar.bg-pink-800,html[data-netbox-color-mode=dark] .badge.bg-pink-800,html[data-netbox-color-mode=dark] .toast.bg-pink-800,html[data-netbox-color-mode=dark] .toast-header.bg-pink-800,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-800,html[data-netbox-color-mode=light] .badge.bg-pink-800,html[data-netbox-color-mode=light] .toast.bg-pink-800,html[data-netbox-color-mode=light] .toast-header.bg-pink-800,html[data-netbox-color-mode=light] .progress-bar.bg-pink-800{color:#fff}}@media print{html .bg-pink-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-900 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0610'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-900{color:#2b0a1a}}@media print{html .btn.btn-ghost-pink-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}}@media print{html .alert.alert-pink-900 a:not(.btn),html .table-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-900 a:not(.btn){font-weight:700;color:#1a0610}}@media print{html .alert.alert-pink-900 .btn:not([class*=btn-outline]),html .table-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-900 a:not(.btn){font-weight:700;color:#aa9da3}}@media print{html .badge.bg-pink-900,html .toast.bg-pink-900,html .toast-header.bg-pink-900,html .progress-bar.bg-pink-900,html[data-netbox-color-mode=dark] .badge.bg-pink-900,html[data-netbox-color-mode=dark] .toast.bg-pink-900,html[data-netbox-color-mode=dark] .toast-header.bg-pink-900,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-900,html[data-netbox-color-mode=light] .badge.bg-pink-900,html[data-netbox-color-mode=light] .toast.bg-pink-900,html[data-netbox-color-mode=light] .toast-header.bg-pink-900,html[data-netbox-color-mode=light] .progress-bar.bg-pink-900{color:#fff}}@media print{html table td>.progress,html[data-netbox-color-mode=dark] table td>.progress,html[data-netbox-color-mode=light] table td>.progress{min-width:6rem}}@media print{html .small .form-control,html[data-netbox-color-mode=dark] .small .form-control,html[data-netbox-color-mode=light] .small .form-control{font-size:.875rem}}@media print{html :not(.card-body)>.col:not(:last-child):not(:only-child),html[data-netbox-color-mode=dark] :not(.card-body)>.col:not(:last-child):not(:only-child),html[data-netbox-color-mode=light] :not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}}@media print{html .nav-mobile,html[data-netbox-color-mode=dark] .nav-mobile,html[data-netbox-color-mode=light] .nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}}@media print and (max-width: 991.98px){html .nav-mobile,html[data-netbox-color-mode=dark] .nav-mobile,html[data-netbox-color-mode=light] .nav-mobile{display:flex}}@media print{html .nav-mobile .nav-mobile-top,html[data-netbox-color-mode=dark] .nav-mobile .nav-mobile-top,html[data-netbox-color-mode=light] .nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}}@media print{html .card>.table.table-flush,html[data-netbox-color-mode=dark] .card>.table.table-flush,html[data-netbox-color-mode=light] .card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .card>.table.table-flush thead th[scope=col],html[data-netbox-color-mode=dark] .card>.table.table-flush thead th[scope=col],html[data-netbox-color-mode=light] .card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#f8f9fa;border-top:1px solid rgba(0,0,0,.125);border-bottom-color:#00000020}}@media print{html .card>.table.table-flush th,html .card>.table.table-flush td,html[data-netbox-color-mode=dark] .card>.table.table-flush th,html[data-netbox-color-mode=dark] .card>.table.table-flush td,html[data-netbox-color-mode=light] .card>.table.table-flush th,html[data-netbox-color-mode=light] .card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}}@media print{html .card>.table.table-flush tr[class],html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class],html[data-netbox-color-mode=light] .card>.table.table-flush tr[class]{border-color:#00000020!important}}@media print{html .card>.table.table-flush tr[class]:last-of-type,html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]:last-of-type,html[data-netbox-color-mode=light] .card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .header-alert-container,html[data-netbox-color-mode=dark] .header-alert-container,html[data-netbox-color-mode=light] .header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}}@media print{html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{width:100%}}@media print and (min-width: 768px){html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{max-width:75%}}@media print and (min-width: 992px){html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{max-width:50%}}@media print{html span.profile-button .dropdown-menu,html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu,html[data-netbox-color-mode=light] span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}}@media print{html span.profile-button .dropdown-menu:not(.show),html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu:not(.show),html[data-netbox-color-mode=light] span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}}@media print{html span.profile-button .dropdown-menu.show,html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu.show,html[data-netbox-color-mode=light] span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}}@media print{html div#advanced-search-content div.card div.card-body div.col:not(:last-child),html[data-netbox-color-mode=dark] div#advanced-search-content div.card div.card-body div.col:not(:last-child),html[data-netbox-color-mode=light] div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}}@media print{html table td a,html[data-netbox-color-mode=dark] table td a,html[data-netbox-color-mode=light] table td a{text-decoration:none}}@media print{html table td a:hover,html[data-netbox-color-mode=dark] table td a:hover,html[data-netbox-color-mode=light] table td a:hover{text-decoration:underline}}@media print{html table th a,html table th a:hover,html[data-netbox-color-mode=dark] table th a,html[data-netbox-color-mode=dark] table th a:hover,html[data-netbox-color-mode=light] table th a,html[data-netbox-color-mode=light] table th a:hover{color:#212529;text-decoration:none}}@media print{html table td,html table th,html[data-netbox-color-mode=dark] table td,html[data-netbox-color-mode=dark] table th,html[data-netbox-color-mode=light] table td,html[data-netbox-color-mode=light] table th{font-size:.875rem;line-height:1.25;vertical-align:middle}}@media print{html table td.min-width,html table th.min-width,html[data-netbox-color-mode=dark] table td.min-width,html[data-netbox-color-mode=dark] table th.min-width,html[data-netbox-color-mode=light] table td.min-width,html[data-netbox-color-mode=light] table th.min-width{width:1%}}@media print{html table td .form-check-input,html table th .form-check-input,html[data-netbox-color-mode=dark] table td .form-check-input,html[data-netbox-color-mode=dark] table th .form-check-input,html[data-netbox-color-mode=light] table td .form-check-input,html[data-netbox-color-mode=light] table th .form-check-input{margin-top:.125em;font-size:1rem}}@media print{html table td .btn-sm,html table td .btn-group-sm>.btn,html table th .btn-sm,html table th .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table td .btn-sm,html[data-netbox-color-mode=dark] table td html[data-netbox-color-mode=light] .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table th .btn-sm,html[data-netbox-color-mode=dark] table th html[data-netbox-color-mode=light] .btn-group-sm>.btn,html[data-netbox-color-mode=light] table td .btn-sm,html[data-netbox-color-mode=light] table td html[data-netbox-color-mode=dark] .btn-group-sm>.btn,html[data-netbox-color-mode=light] table th .btn-sm,html[data-netbox-color-mode=light] table th html[data-netbox-color-mode=dark] .btn-group-sm>.btn{line-height:1}}@media print{html table td p,html table th p,html[data-netbox-color-mode=dark] table td p,html[data-netbox-color-mode=dark] table th p,html[data-netbox-color-mode=light] table td p,html[data-netbox-color-mode=light] table th p{margin-bottom:0}}@media print{html table.table>:not(caption)>*>*,html[data-netbox-color-mode=dark] table.table>:not(caption)>*>*,html[data-netbox-color-mode=light] table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}}@media print{html table.object-list th,html[data-netbox-color-mode=dark] table.object-list th,html[data-netbox-color-mode=light] table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}}@media print{html table.attr-table th,html[data-netbox-color-mode=dark] table.attr-table th,html[data-netbox-color-mode=light] table.attr-table th{font-weight:normal;width:25%}}@media print{html div.title-container,html[data-netbox-color-mode=dark] div.title-container,html[data-netbox-color-mode=light] div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}}@media print and (min-width: 992px){html div.title-container,html[data-netbox-color-mode=dark] div.title-container,html[data-netbox-color-mode=light] div.title-container{flex-direction:row}}@media print{html div.title-container #content-title,html[data-netbox-color-mode=dark] div.title-container #content-title,html[data-netbox-color-mode=light] div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}}@media print{html .controls,html[data-netbox-color-mode=dark] .controls,html[data-netbox-color-mode=light] .controls{margin-bottom:.5rem}}@media print{html .controls,html[data-netbox-color-mode=dark] .controls,html[data-netbox-color-mode=light] .controls{display:none!important}}@media print{html .controls .control-group,html[data-netbox-color-mode=dark] .controls .control-group,html[data-netbox-color-mode=light] .controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}}@media print and (min-width: 992px){html .controls .control-group,html[data-netbox-color-mode=dark] .controls .control-group,html[data-netbox-color-mode=light] .controls .control-group{justify-content:flex-end}}@media print{html .controls .control-group>*,html[data-netbox-color-mode=dark] .controls .control-group>*,html[data-netbox-color-mode=light] .controls .control-group>*{margin:.25rem}}@media print{html .controls .control-group>*:first-child,html[data-netbox-color-mode=dark] .controls .control-group>*:first-child,html[data-netbox-color-mode=light] .controls .control-group>*:first-child{margin-left:0}}@media print{html .controls .control-group>*:last-child,html[data-netbox-color-mode=dark] .controls .control-group>*:last-child,html[data-netbox-color-mode=light] .controls .control-group>*:last-child{margin-right:0}}@media print{html .object-subtitle,html[data-netbox-color-mode=dark] .object-subtitle,html[data-netbox-color-mode=light] .object-subtitle{display:block;font-size:.875rem;color:#6c757d}}@media print and (min-width: 768px){html .object-subtitle,html[data-netbox-color-mode=dark] .object-subtitle,html[data-netbox-color-mode=light] .object-subtitle{display:inline-block}}@media print{html .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=light] .object-subtitle>span{display:block}}@media print{html .object-subtitle>span.separator,html[data-netbox-color-mode=dark] .object-subtitle>span.separator,html[data-netbox-color-mode=light] .object-subtitle>span.separator{display:none}}@media print and (min-width: 768px){html .object-subtitle>span,html .object-subtitle>span.separator,html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span.separator,html[data-netbox-color-mode=light] .object-subtitle>span,html[data-netbox-color-mode=light] .object-subtitle>span.separator{display:inline-block}}@media print{html nav.search,html[data-netbox-color-mode=dark] nav.search,html[data-netbox-color-mode=light] nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}}@media print{html nav.search .search-container,html[data-netbox-color-mode=dark] nav.search .search-container,html[data-netbox-color-mode=light] nav.search .search-container{display:flex;width:100%}}@media print and (max-width: 991.98px){html nav.search .search-container,html[data-netbox-color-mode=dark] nav.search .search-container,html[data-netbox-color-mode=light] nav.search .search-container{display:none}}@media print{html nav.search .input-group .search-obj-selected,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selected,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selected{border-color:#e9ecef}}@media print{html nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle{color:#000;border-color:#e9ecef;margin-left:0;font-weight:400;line-height:1.5;color:#212529;background-color:#e9ecef;border:1px solid #e9ecef;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}}@media print{html nav.search .input-group .dropdown-toggle:hover,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:hover,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}}@media print{.btn-check:focus+html nav.search .input-group .dropdown-toggle,html nav.search .input-group .dropdown-toggle:focus,.btn-check:focus+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:focus+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}}@media print{.btn-check:checked+html nav.search .input-group .dropdown-toggle,.btn-check:active+html nav.search .input-group .dropdown-toggle,html nav.search .input-group .dropdown-toggle:active,html nav.search .input-group .dropdown-toggle.active,.show>html nav.search .input-group .dropdown-toggle.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}}@media print{.btn-check:checked+html nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html nav.search .input-group .dropdown-toggle:focus,html nav.search .input-group .dropdown-toggle:active:focus,html nav.search .input-group .dropdown-toggle.active:focus,.show>html nav.search .input-group .dropdown-toggle.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}}@media print{html nav.search .input-group .dropdown-toggle:disabled,html nav.search .input-group .dropdown-toggle.disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.disabled,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}}@media print{html nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}}@media print{html nav.search .input-group .dropdown-toggle:after,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:after,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:after{display:none}}@media print{html nav.search .input-group .search-obj-selector,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}}@media print{html nav.search .input-group .search-obj-selector .dropdown-item,html nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}}@media print{html nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}}@media print{html main.layout,html[data-netbox-color-mode=dark] main.layout,html[data-netbox-color-mode=light] main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}}@media print{html main.layout,html[data-netbox-color-mode=dark] main.layout,html[data-netbox-color-mode=light] main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}@media print{html main.login-container,html[data-netbox-color-mode=dark] main.login-container,html[data-netbox-color-mode=light] main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}}@media print{html main.login-container+footer.footer button.color-mode-toggle,html[data-netbox-color-mode=dark] main.login-container+footer.footer button.color-mode-toggle,html[data-netbox-color-mode=light] main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}}@media print{html .footer,html[data-netbox-color-mode=dark] .footer,html[data-netbox-color-mode=light] .footer{padding:0}}@media print{html .footer .nav-link,html[data-netbox-color-mode=dark] .footer .nav-link,html[data-netbox-color-mode=light] .footer .nav-link{padding:.5rem}}@media print and (max-width: 767.98px){html .footer,html[data-netbox-color-mode=dark] .footer,html[data-netbox-color-mode=light] .footer{margin-bottom:8rem}}@media print{html footer.login-footer,html[data-netbox-color-mode=dark] footer.login-footer,html[data-netbox-color-mode=light] footer.login-footer{height:4rem;margin-top:auto}}@media print{html footer.login-footer .container-fluid,html footer.login-footer .container-sm,html footer.login-footer .container-md,html footer.login-footer .container-lg,html footer.login-footer .container-xl,html footer.login-footer .container-xxl,html[data-netbox-color-mode=dark] footer.login-footer .container-fluid,html[data-netbox-color-mode=light] footer.login-footer .container-fluid{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}}@media print{html h1.accordion-item-title,html .accordion-item-title.h1,html h2.accordion-item-title,html .accordion-item-title.h2,html h3.accordion-item-title,html .accordion-item-title.h3,html h4.accordion-item-title,html .accordion-item-title.h4,html h5.accordion-item-title,html .accordion-item-title.h5,html h6.accordion-item-title,html .accordion-item-title.h6,html[data-netbox-color-mode=dark] h1.accordion-item-title,html[data-netbox-color-mode=dark] h2.accordion-item-title,html[data-netbox-color-mode=dark] h3.accordion-item-title,html[data-netbox-color-mode=dark] h4.accordion-item-title,html[data-netbox-color-mode=dark] h5.accordion-item-title,html[data-netbox-color-mode=dark] h6.accordion-item-title,html[data-netbox-color-mode=light] h1.accordion-item-title,html[data-netbox-color-mode=light] h2.accordion-item-title,html[data-netbox-color-mode=light] h3.accordion-item-title,html[data-netbox-color-mode=light] h4.accordion-item-title,html[data-netbox-color-mode=light] h5.accordion-item-title,html[data-netbox-color-mode=light] h6.accordion-item-title{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}}@media print{html .form-login,html[data-netbox-color-mode=dark] .form-login,html[data-netbox-color-mode=light] .form-login{width:100%;max-width:330px;padding:15px}}@media print{html .form-login input:focus,html[data-netbox-color-mode=dark] .form-login input:focus,html[data-netbox-color-mode=light] .form-login input:focus{z-index:1}}@media print{html .form-login input[type=text],html[data-netbox-color-mode=dark] .form-login input[type=text],html[data-netbox-color-mode=light] .form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media print{html .form-login input[type=password],html[data-netbox-color-mode=dark] .form-login input[type=password],html[data-netbox-color-mode=light] .form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}}@media print{html .form-login .form-control,html[data-netbox-color-mode=dark] .form-login .form-control,html[data-netbox-color-mode=light] .form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}}@media print{html .navbar-brand,html[data-netbox-color-mode=dark] .navbar-brand,html[data-netbox-color-mode=light] .navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}}@media print{html nav.nav.nav-pills .nav-item.nav-link,html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link,html[data-netbox-color-mode=light] nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html nav.nav.nav-pills .nav-item.nav-link:hover,html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link:hover,html[data-netbox-color-mode=light] nav.nav.nav-pills .nav-item.nav-link:hover{color:#343a40;background-color:#cfe2ff}}@media print{html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}}@media print{html div.content-container:focus,html div.content-container:focus-visible,html[data-netbox-color-mode=dark] div.content-container:focus,html[data-netbox-color-mode=dark] div.content-container:focus-visible,html[data-netbox-color-mode=light] div.content-container:focus,html[data-netbox-color-mode=light] div.content-container:focus-visible{outline:0}}@media print{html div.content-container div.content,html[data-netbox-color-mode=dark] div.content-container div.content,html[data-netbox-color-mode=light] div.content-container div.content{flex:1}}@media print and (max-width: 991.98px){html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{width:100%}}@media print{html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{width:100%!important;margin-left:0!important}}@media print and (max-width: 768px){html .sidebar.collapse.show~.content-container>.content,html[data-netbox-color-mode=dark] .sidebar.collapse.show~.content-container>.content,html[data-netbox-color-mode=light] .sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}@media print{html .tooltip,html[data-netbox-color-mode=dark] .tooltip,html[data-netbox-color-mode=light] .tooltip{pointer-events:none}}@media print{html span.color-label,html[data-netbox-color-mode=dark] span.color-label,html[data-netbox-color-mode=light] span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}}@media print{html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{white-space:nowrap}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{box-shadow:0 .125rem .25rem #00000013}}@media print{html .card .card-header,html[data-netbox-color-mode=dark] .card .card-header,html[data-netbox-color-mode=light] .card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}}@media print{html .card .card-header+.card-body,html[data-netbox-color-mode=dark] .card .card-header+.card-body,html[data-netbox-color-mode=light] .card .card-header+.card-body{padding-top:0}}@media print{html .card .card-body.small .form-control,html .card .card-body.small .form-select,html[data-netbox-color-mode=dark] .card .card-body.small .form-control,html[data-netbox-color-mode=dark] .card .card-body.small .form-select,html[data-netbox-color-mode=light] .card .card-body.small .form-control,html[data-netbox-color-mode=light] .card .card-body.small .form-select{font-size:.875rem}}@media print{html .card .card-divider,html[data-netbox-color-mode=dark] .card .card-divider,html[data-netbox-color-mode=light] .card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(0,0,0,.125);opacity:.25}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{box-shadow:unset!important}}@media print{html .form-floating,html[data-netbox-color-mode=dark] .form-floating,html[data-netbox-color-mode=light] .form-floating{position:relative}}@media print{html .form-floating>.input-group>.form-control,html .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}}@media print{html .form-floating>.input-group>label,html[data-netbox-color-mode=dark] .form-floating>.input-group>label,html[data-netbox-color-mode=light] .form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-floating>.input-group>label,html[data-netbox-color-mode=dark] .form-floating>.input-group>label,html[data-netbox-color-mode=light] .form-floating>.input-group>label{transition:none}}@media print{html .form-floating>.input-group>.form-control::placeholder,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control::placeholder,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control::placeholder{color:transparent}}@media print{html .form-floating>.input-group>.form-control:focus,html .form-floating>.input-group>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-control:-webkit-autofill,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-select,html .form-floating>.choices>.choices__inner,html .form-floating>.ss-main span.placeholder,html .form-floating>.ss-main div.ss-values,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=dark] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=dark] .form-floating>.ss-main div.ss-values,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=light] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=light] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=light] .form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-control:focus~label,html .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html .form-floating>.input-group>.form-select~label,html .form-floating>.choices~label,html .form-floating>.ss-main~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.choices~label,html[data-netbox-color-mode=dark] .form-floating>.ss-main~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=light] .form-floating>.choices~label,html[data-netbox-color-mode=light] .form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}}@media print{html .form-floating>.input-group>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .form-object-edit,html[data-netbox-color-mode=dark] .form-object-edit,html[data-netbox-color-mode=light] .form-object-edit{margin:0 auto;max-width:800px}}@media print{html textarea.form-control[rows="10"],html[data-netbox-color-mode=dark] textarea.form-control[rows="10"],html[data-netbox-color-mode=light] textarea.form-control[rows="10"]{height:18rem}}@media print{html textarea#id_local_context_data,html textarea.markdown,html textarea#id_public_key,html textarea.form-control[name=csv],html textarea.form-control[name=data],html[data-netbox-color-mode=dark] textarea#id_local_context_data,html[data-netbox-color-mode=dark] textarea.markdown,html[data-netbox-color-mode=dark] textarea#id_public_key,html[data-netbox-color-mode=dark] textarea.form-control[name=csv],html[data-netbox-color-mode=dark] textarea.form-control[name=data],html[data-netbox-color-mode=light] textarea#id_local_context_data,html[data-netbox-color-mode=light] textarea.markdown,html[data-netbox-color-mode=light] textarea#id_public_key,html[data-netbox-color-mode=light] textarea.form-control[name=csv],html[data-netbox-color-mode=light] textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}}@media print{html .card:not(:only-of-type),html[data-netbox-color-mode=dark] .card:not(:only-of-type),html[data-netbox-color-mode=light] .card:not(:only-of-type){margin-bottom:1rem}}@media print{html .stat-btn,html[data-netbox-color-mode=dark] .stat-btn,html[data-netbox-color-mode=light] .stat-btn{min-width:3rem}}@media print{html nav.breadcrumb-container,html[data-netbox-color-mode=dark] nav.breadcrumb-container,html[data-netbox-color-mode=light] nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}}@media print{html nav.breadcrumb-container ol.breadcrumb,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}}@media print{html nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}}@media print{html nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}}@media print{html div.paginator>form>div.input-group,html[data-netbox-color-mode=dark] div.paginator>form>div.input-group,html[data-netbox-color-mode=light] div.paginator>form>div.input-group{width:fit-content}}@media print{html label.required,html[data-netbox-color-mode=dark] label.required,html[data-netbox-color-mode=light] label.required{font-weight:700}}@media print{html label.required:after,html[data-netbox-color-mode=dark] label.required:after,html[data-netbox-color-mode=light] label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}}@media print{html div.bulk-buttons,html[data-netbox-color-mode=dark] div.bulk-buttons,html[data-netbox-color-mode=light] div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}}@media print{html div.bulk-buttons>div.bulk-button-group,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}}@media print{html div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}}@media print{html div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}}@media print{html div.bulk-buttons>div.bulk-button-group>*,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group>*,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}}@media print{html table tbody tr.primary,html[data-netbox-color-mode=dark] table tbody tr.primary,html[data-netbox-color-mode=light] table tbody tr.primary{background-color:#337ab726;border-color:#adb5bd}}@media print{html table tbody tr.secondary,html[data-netbox-color-mode=dark] table tbody tr.secondary,html[data-netbox-color-mode=light] table tbody tr.secondary{background-color:#6c757d26;border-color:#adb5bd}}@media print{html table tbody tr.success,html[data-netbox-color-mode=dark] table tbody tr.success,html[data-netbox-color-mode=light] table tbody tr.success{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.info,html[data-netbox-color-mode=dark] table tbody tr.info,html[data-netbox-color-mode=light] table tbody tr.info{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.warning,html[data-netbox-color-mode=dark] table tbody tr.warning,html[data-netbox-color-mode=light] table tbody tr.warning{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.danger,html[data-netbox-color-mode=dark] table tbody tr.danger,html[data-netbox-color-mode=light] table tbody tr.danger{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.light,html[data-netbox-color-mode=dark] table tbody tr.light,html[data-netbox-color-mode=light] table tbody tr.light{background-color:#f8f9fa26;border-color:#adb5bd}}@media print{html table tbody tr.dark,html[data-netbox-color-mode=dark] table tbody tr.dark,html[data-netbox-color-mode=light] table tbody tr.dark{background-color:#21252926;border-color:#adb5bd}}@media print{html table tbody tr.red,html[data-netbox-color-mode=dark] table tbody tr.red,html[data-netbox-color-mode=light] table tbody tr.red{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.yellow,html[data-netbox-color-mode=dark] table tbody tr.yellow,html[data-netbox-color-mode=light] table tbody tr.yellow{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.green,html[data-netbox-color-mode=dark] table tbody tr.green,html[data-netbox-color-mode=light] table tbody tr.green{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.blue,html[data-netbox-color-mode=dark] table tbody tr.blue,html[data-netbox-color-mode=light] table tbody tr.blue{background-color:#0d6efd26;border-color:#adb5bd}}@media print{html table tbody tr.cyan,html[data-netbox-color-mode=dark] table tbody tr.cyan,html[data-netbox-color-mode=light] table tbody tr.cyan{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.indigo,html[data-netbox-color-mode=dark] table tbody tr.indigo,html[data-netbox-color-mode=light] table tbody tr.indigo{background-color:#6610f226;border-color:#adb5bd}}@media print{html table tbody tr.purple,html[data-netbox-color-mode=dark] table tbody tr.purple,html[data-netbox-color-mode=light] table tbody tr.purple{background-color:#6f42c126;border-color:#adb5bd}}@media print{html table tbody tr.pink,html[data-netbox-color-mode=dark] table tbody tr.pink,html[data-netbox-color-mode=light] table tbody tr.pink{background-color:#d6338426;border-color:#adb5bd}}@media print{html table tbody tr.darker,html[data-netbox-color-mode=dark] table tbody tr.darker,html[data-netbox-color-mode=light] table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}}@media print{html table tbody tr.darkest,html[data-netbox-color-mode=dark] table tbody tr.darkest,html[data-netbox-color-mode=light] table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}}@media print{html table tbody tr.gray,html[data-netbox-color-mode=dark] table tbody tr.gray,html[data-netbox-color-mode=light] table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}}@media print{html table tbody tr.gray-100,html[data-netbox-color-mode=dark] table tbody tr.gray-100,html[data-netbox-color-mode=light] table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}}@media print{html table tbody tr.gray-200,html[data-netbox-color-mode=dark] table tbody tr.gray-200,html[data-netbox-color-mode=light] table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}}@media print{html table tbody tr.gray-300,html[data-netbox-color-mode=dark] table tbody tr.gray-300,html[data-netbox-color-mode=light] table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}}@media print{html table tbody tr.gray-400,html[data-netbox-color-mode=dark] table tbody tr.gray-400,html[data-netbox-color-mode=light] table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}}@media print{html table tbody tr.gray-500,html[data-netbox-color-mode=dark] table tbody tr.gray-500,html[data-netbox-color-mode=light] table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}}@media print{html table tbody tr.gray-600,html[data-netbox-color-mode=dark] table tbody tr.gray-600,html[data-netbox-color-mode=light] table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}}@media print{html table tbody tr.gray-700,html[data-netbox-color-mode=dark] table tbody tr.gray-700,html[data-netbox-color-mode=light] table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}}@media print{html table tbody tr.gray-800,html[data-netbox-color-mode=dark] table tbody tr.gray-800,html[data-netbox-color-mode=light] table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}}@media print{html table tbody tr.gray-900,html[data-netbox-color-mode=dark] table tbody tr.gray-900,html[data-netbox-color-mode=light] table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}}@media print{html table tbody tr.red-100,html[data-netbox-color-mode=dark] table tbody tr.red-100,html[data-netbox-color-mode=light] table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}}@media print{html table tbody tr.red-200,html[data-netbox-color-mode=dark] table tbody tr.red-200,html[data-netbox-color-mode=light] table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}}@media print{html table tbody tr.red-300,html[data-netbox-color-mode=dark] table tbody tr.red-300,html[data-netbox-color-mode=light] table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}}@media print{html table tbody tr.red-400,html[data-netbox-color-mode=dark] table tbody tr.red-400,html[data-netbox-color-mode=light] table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}}@media print{html table tbody tr.red-500,html[data-netbox-color-mode=dark] table tbody tr.red-500,html[data-netbox-color-mode=light] table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.red-600,html[data-netbox-color-mode=dark] table tbody tr.red-600,html[data-netbox-color-mode=light] table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}}@media print{html table tbody tr.red-700,html[data-netbox-color-mode=dark] table tbody tr.red-700,html[data-netbox-color-mode=light] table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}}@media print{html table tbody tr.red-800,html[data-netbox-color-mode=dark] table tbody tr.red-800,html[data-netbox-color-mode=light] table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}}@media print{html table tbody tr.red-900,html[data-netbox-color-mode=dark] table tbody tr.red-900,html[data-netbox-color-mode=light] table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-100,html[data-netbox-color-mode=dark] table tbody tr.yellow-100,html[data-netbox-color-mode=light] table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-200,html[data-netbox-color-mode=dark] table tbody tr.yellow-200,html[data-netbox-color-mode=light] table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-300,html[data-netbox-color-mode=dark] table tbody tr.yellow-300,html[data-netbox-color-mode=light] table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-400,html[data-netbox-color-mode=dark] table tbody tr.yellow-400,html[data-netbox-color-mode=light] table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}}@media print{html table tbody tr.yellow-500,html[data-netbox-color-mode=dark] table tbody tr.yellow-500,html[data-netbox-color-mode=light] table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.yellow-600,html[data-netbox-color-mode=dark] table tbody tr.yellow-600,html[data-netbox-color-mode=light] table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}}@media print{html table tbody tr.yellow-700,html[data-netbox-color-mode=dark] table tbody tr.yellow-700,html[data-netbox-color-mode=light] table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}}@media print{html table tbody tr.yellow-800,html[data-netbox-color-mode=dark] table tbody tr.yellow-800,html[data-netbox-color-mode=light] table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}}@media print{html table tbody tr.yellow-900,html[data-netbox-color-mode=dark] table tbody tr.yellow-900,html[data-netbox-color-mode=light] table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}}@media print{html table tbody tr.green-100,html[data-netbox-color-mode=dark] table tbody tr.green-100,html[data-netbox-color-mode=light] table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}}@media print{html table tbody tr.green-200,html[data-netbox-color-mode=dark] table tbody tr.green-200,html[data-netbox-color-mode=light] table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}}@media print{html table tbody tr.green-300,html[data-netbox-color-mode=dark] table tbody tr.green-300,html[data-netbox-color-mode=light] table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}}@media print{html table tbody tr.green-400,html[data-netbox-color-mode=dark] table tbody tr.green-400,html[data-netbox-color-mode=light] table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}}@media print{html table tbody tr.green-500,html[data-netbox-color-mode=dark] table tbody tr.green-500,html[data-netbox-color-mode=light] table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.green-600,html[data-netbox-color-mode=dark] table tbody tr.green-600,html[data-netbox-color-mode=light] table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}}@media print{html table tbody tr.green-700,html[data-netbox-color-mode=dark] table tbody tr.green-700,html[data-netbox-color-mode=light] table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}}@media print{html table tbody tr.green-800,html[data-netbox-color-mode=dark] table tbody tr.green-800,html[data-netbox-color-mode=light] table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}}@media print{html table tbody tr.green-900,html[data-netbox-color-mode=dark] table tbody tr.green-900,html[data-netbox-color-mode=light] table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}}@media print{html table tbody tr.blue-100,html[data-netbox-color-mode=dark] table tbody tr.blue-100,html[data-netbox-color-mode=light] table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}}@media print{html table tbody tr.blue-200,html[data-netbox-color-mode=dark] table tbody tr.blue-200,html[data-netbox-color-mode=light] table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}}@media print{html table tbody tr.blue-300,html[data-netbox-color-mode=dark] table tbody tr.blue-300,html[data-netbox-color-mode=light] table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}}@media print{html table tbody tr.blue-400,html[data-netbox-color-mode=dark] table tbody tr.blue-400,html[data-netbox-color-mode=light] table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}}@media print{html table tbody tr.blue-500,html[data-netbox-color-mode=dark] table tbody tr.blue-500,html[data-netbox-color-mode=light] table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}}@media print{html table tbody tr.blue-600,html[data-netbox-color-mode=dark] table tbody tr.blue-600,html[data-netbox-color-mode=light] table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}}@media print{html table tbody tr.blue-700,html[data-netbox-color-mode=dark] table tbody tr.blue-700,html[data-netbox-color-mode=light] table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}}@media print{html table tbody tr.blue-800,html[data-netbox-color-mode=dark] table tbody tr.blue-800,html[data-netbox-color-mode=light] table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}}@media print{html table tbody tr.blue-900,html[data-netbox-color-mode=dark] table tbody tr.blue-900,html[data-netbox-color-mode=light] table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}}@media print{html table tbody tr.cyan-100,html[data-netbox-color-mode=dark] table tbody tr.cyan-100,html[data-netbox-color-mode=light] table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}}@media print{html table tbody tr.cyan-200,html[data-netbox-color-mode=dark] table tbody tr.cyan-200,html[data-netbox-color-mode=light] table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}}@media print{html table tbody tr.cyan-300,html[data-netbox-color-mode=dark] table tbody tr.cyan-300,html[data-netbox-color-mode=light] table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}}@media print{html table tbody tr.cyan-400,html[data-netbox-color-mode=dark] table tbody tr.cyan-400,html[data-netbox-color-mode=light] table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}}@media print{html table tbody tr.cyan-500,html[data-netbox-color-mode=dark] table tbody tr.cyan-500,html[data-netbox-color-mode=light] table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-600,html[data-netbox-color-mode=dark] table tbody tr.cyan-600,html[data-netbox-color-mode=light] table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-700,html[data-netbox-color-mode=dark] table tbody tr.cyan-700,html[data-netbox-color-mode=light] table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-800,html[data-netbox-color-mode=dark] table tbody tr.cyan-800,html[data-netbox-color-mode=light] table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-900,html[data-netbox-color-mode=dark] table tbody tr.cyan-900,html[data-netbox-color-mode=light] table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}}@media print{html table tbody tr.indigo-100,html[data-netbox-color-mode=dark] table tbody tr.indigo-100,html[data-netbox-color-mode=light] table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}}@media print{html table tbody tr.indigo-200,html[data-netbox-color-mode=dark] table tbody tr.indigo-200,html[data-netbox-color-mode=light] table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}}@media print{html table tbody tr.indigo-300,html[data-netbox-color-mode=dark] table tbody tr.indigo-300,html[data-netbox-color-mode=light] table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}}@media print{html table tbody tr.indigo-400,html[data-netbox-color-mode=dark] table tbody tr.indigo-400,html[data-netbox-color-mode=light] table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}}@media print{html table tbody tr.indigo-500,html[data-netbox-color-mode=dark] table tbody tr.indigo-500,html[data-netbox-color-mode=light] table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}}@media print{html table tbody tr.indigo-600,html[data-netbox-color-mode=dark] table tbody tr.indigo-600,html[data-netbox-color-mode=light] table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}}@media print{html table tbody tr.indigo-700,html[data-netbox-color-mode=dark] table tbody tr.indigo-700,html[data-netbox-color-mode=light] table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}}@media print{html table tbody tr.indigo-800,html[data-netbox-color-mode=dark] table tbody tr.indigo-800,html[data-netbox-color-mode=light] table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}}@media print{html table tbody tr.indigo-900,html[data-netbox-color-mode=dark] table tbody tr.indigo-900,html[data-netbox-color-mode=light] table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}}@media print{html table tbody tr.purple-100,html[data-netbox-color-mode=dark] table tbody tr.purple-100,html[data-netbox-color-mode=light] table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}}@media print{html table tbody tr.purple-200,html[data-netbox-color-mode=dark] table tbody tr.purple-200,html[data-netbox-color-mode=light] table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}}@media print{html table tbody tr.purple-300,html[data-netbox-color-mode=dark] table tbody tr.purple-300,html[data-netbox-color-mode=light] table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}}@media print{html table tbody tr.purple-400,html[data-netbox-color-mode=dark] table tbody tr.purple-400,html[data-netbox-color-mode=light] table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}}@media print{html table tbody tr.purple-500,html[data-netbox-color-mode=dark] table tbody tr.purple-500,html[data-netbox-color-mode=light] table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}}@media print{html table tbody tr.purple-600,html[data-netbox-color-mode=dark] table tbody tr.purple-600,html[data-netbox-color-mode=light] table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}}@media print{html table tbody tr.purple-700,html[data-netbox-color-mode=dark] table tbody tr.purple-700,html[data-netbox-color-mode=light] table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}}@media print{html table tbody tr.purple-800,html[data-netbox-color-mode=dark] table tbody tr.purple-800,html[data-netbox-color-mode=light] table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}}@media print{html table tbody tr.purple-900,html[data-netbox-color-mode=dark] table tbody tr.purple-900,html[data-netbox-color-mode=light] table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}}@media print{html table tbody tr.pink-100,html[data-netbox-color-mode=dark] table tbody tr.pink-100,html[data-netbox-color-mode=light] table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}}@media print{html table tbody tr.pink-200,html[data-netbox-color-mode=dark] table tbody tr.pink-200,html[data-netbox-color-mode=light] table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}}@media print{html table tbody tr.pink-300,html[data-netbox-color-mode=dark] table tbody tr.pink-300,html[data-netbox-color-mode=light] table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}}@media print{html table tbody tr.pink-400,html[data-netbox-color-mode=dark] table tbody tr.pink-400,html[data-netbox-color-mode=light] table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}}@media print{html table tbody tr.pink-500,html[data-netbox-color-mode=dark] table tbody tr.pink-500,html[data-netbox-color-mode=light] table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}}@media print{html table tbody tr.pink-600,html[data-netbox-color-mode=dark] table tbody tr.pink-600,html[data-netbox-color-mode=light] table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}}@media print{html table tbody tr.pink-700,html[data-netbox-color-mode=dark] table tbody tr.pink-700,html[data-netbox-color-mode=light] table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}}@media print{html table tbody tr.pink-800,html[data-netbox-color-mode=dark] table tbody tr.pink-800,html[data-netbox-color-mode=light] table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}}@media print{html table tbody tr.pink-900,html[data-netbox-color-mode=dark] table tbody tr.pink-900,html[data-netbox-color-mode=light] table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}}@media print{html table .table-badge-group .table-badge,html[data-netbox-color-mode=dark] table .table-badge-group .table-badge,html[data-netbox-color-mode=light] table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}}@media print{html table .table-badge-group .table-badge:not(.badge),html[data-netbox-color-mode=dark] table .table-badge-group .table-badge:not(.badge),html[data-netbox-color-mode=light] table .table-badge-group .table-badge:not(.badge){padding:0 .65em}}@media print{html table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child),html[data-netbox-color-mode=dark] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child),html[data-netbox-color-mode=light] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}}@media print{html pre.change-data,html[data-netbox-color-mode=dark] pre.change-data,html[data-netbox-color-mode=light] pre.change-data{padding-right:0;padding-left:0}}@media print{html pre.change-data>span,html[data-netbox-color-mode=dark] pre.change-data>span,html[data-netbox-color-mode=light] pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}}@media print{html pre.change-data>span.added,html[data-netbox-color-mode=dark] pre.change-data>span.added,html[data-netbox-color-mode=light] pre.change-data>span.added{background-color:var(--nbx-change-added)}}@media print{html pre.change-data>span.removed,html[data-netbox-color-mode=dark] pre.change-data>span.removed,html[data-netbox-color-mode=light] pre.change-data>span.removed{background-color:var(--nbx-change-removed)}}@media print{html pre.change-diff,html[data-netbox-color-mode=dark] pre.change-diff,html[data-netbox-color-mode=light] pre.change-diff{border-color:transparent}}@media print{html pre.change-diff.change-removed,html[data-netbox-color-mode=dark] pre.change-diff.change-removed,html[data-netbox-color-mode=light] pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}}@media print{html pre.change-diff.change-added,html[data-netbox-color-mode=dark] pre.change-diff.change-added,html[data-netbox-color-mode=light] pre.change-diff.change-added{background-color:var(--nbx-change-added)}}@media print{html div.card-overlay,html[data-netbox-color-mode=dark] div.card-overlay,html[data-netbox-color-mode=light] div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}}@media print{html div.card-overlay>div.spinner-border,html[data-netbox-color-mode=dark] div.card-overlay>div.spinner-border,html[data-netbox-color-mode=light] div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#6c757d}}@media print{html .table-controls,html[data-netbox-color-mode=dark] .table-controls,html[data-netbox-color-mode=light] .table-controls{display:flex}}@media print and (min-width: 768px){html .table-controls,html[data-netbox-color-mode=dark] .table-controls,html[data-netbox-color-mode=light] .table-controls{margin-top:0!important;margin-bottom:0!important}}@media print{html .table-controls .table-configure,html[data-netbox-color-mode=dark] .table-controls .table-configure,html[data-netbox-color-mode=light] .table-controls .table-configure{justify-content:flex-start}}@media print and (min-width: 768px){html .table-controls .table-configure,html[data-netbox-color-mode=dark] .table-controls .table-configure,html[data-netbox-color-mode=light] .table-controls .table-configure{justify-content:flex-end}}@media print{html .table-controls .form-switch.form-check-inline,html[data-netbox-color-mode=dark] .table-controls .form-switch.form-check-inline,html[data-netbox-color-mode=light] .table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}}@media print{html .paginator,html[data-netbox-color-mode=dark] .paginator,html[data-netbox-color-mode=light] .paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}}@media print{html .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=light] .nav-tabs .nav-link:hover{border-bottom-color:transparent}}@media print{html .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=light] .nav-tabs .nav-link.active{background-color:#f8f9fa;border-bottom-color:#f8f9fa;transform:translateY(1px)}}@media print{html .tab-content,html[data-netbox-color-mode=dark] .tab-content,html[data-netbox-color-mode=light] .tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#f8f9fa;border-bottom:1px solid #dee2e6}}@media print{html .tab-content,html[data-netbox-color-mode=dark] .tab-content,html[data-netbox-color-mode=light] .tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{html .masonry,html[data-netbox-color-mode=dark] .masonry,html[data-netbox-color-mode=light] .masonry{position:static!important;display:block!important;height:unset!important}}@media print{html .masonry .masonry-item,html[data-netbox-color-mode=dark] .masonry .masonry-item,html[data-netbox-color-mode=light] .masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}@media print{html .record-depth,html[data-netbox-color-mode=dark] .record-depth,html[data-netbox-color-mode=light] .record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}}@media print{html .record-depth span:only-of-type,html .record-depth span:last-of-type,html[data-netbox-color-mode=dark] .record-depth span:only-of-type,html[data-netbox-color-mode=dark] .record-depth span:last-of-type,html[data-netbox-color-mode=light] .record-depth span:only-of-type,html[data-netbox-color-mode=light] .record-depth span:last-of-type{margin-right:.25rem}}@media print{html .popover.image-preview-popover,html[data-netbox-color-mode=dark] .popover.image-preview-popover,html[data-netbox-color-mode=light] .popover.image-preview-popover{max-width:unset}}@media print{html #django-messages,html[data-netbox-color-mode=dark] #django-messages,html[data-netbox-color-mode=light] #django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}}@media print{html html[data-netbox-url-name=home] .content-container,html html[data-netbox-url-name=home] .search,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .search,html[data-netbox-color-mode=light] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=light] html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}}@media print{html html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search,html[data-netbox-color-mode=light] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=light] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}}@media print{html html[data-netbox-url-name=login] #django-messages,html[data-netbox-color-mode=dark] html[data-netbox-url-name=login] #django-messages,html[data-netbox-color-mode=light] html[data-netbox-url-name=login] #django-messages{display:none}} +@media print{:root{--nbx-body-bg: #fff !important;--nbx-body-color: #000 !important}html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--bs-orange: #fd7e14;--bs-teal: #20c997;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-primary: #337ab7;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-red: #dc3545;--bs-yellow: #ffc107;--bs-green: #198754;--bs-blue: #0d6efd;--bs-cyan: #0dcaf0;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-darker: #1b1f22;--bs-darkest: #171b1d;--bs-gray: #ced4da;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-red-100: #f8d7da;--bs-red-200: #f1aeb5;--bs-red-300: #ea868f;--bs-red-400: #e35d6a;--bs-red-500: #dc3545;--bs-red-600: #b02a37;--bs-red-700: #842029;--bs-red-800: #58151c;--bs-red-900: #2c0b0e;--bs-yellow-100: #fff3cd;--bs-yellow-200: #ffe69c;--bs-yellow-300: #ffda6a;--bs-yellow-400: #ffcd39;--bs-yellow-500: #ffc107;--bs-yellow-600: #cc9a06;--bs-yellow-700: #997404;--bs-yellow-800: #664d03;--bs-yellow-900: #332701;--bs-green-100: #d1e7dd;--bs-green-200: #a3cfbb;--bs-green-300: #75b798;--bs-green-400: #479f76;--bs-green-500: #198754;--bs-green-600: #146c43;--bs-green-700: #0f5132;--bs-green-800: #0a3622;--bs-green-900: #051b11;--bs-blue-100: #cfe2ff;--bs-blue-200: #9ec5fe;--bs-blue-300: #6ea8fe;--bs-blue-400: #3d8bfd;--bs-blue-500: #0d6efd;--bs-blue-600: #0a58ca;--bs-blue-700: #084298;--bs-blue-800: #052c65;--bs-blue-900: #031633;--bs-cyan-100: #cff4fc;--bs-cyan-200: #9eeaf9;--bs-cyan-300: #6edff6;--bs-cyan-400: #3dd5f3;--bs-cyan-500: #0dcaf0;--bs-cyan-600: #0aa2c0;--bs-cyan-700: #087990;--bs-cyan-800: #055160;--bs-cyan-900: #032830;--bs-indigo-100: #e0cffc;--bs-indigo-200: #c29ffa;--bs-indigo-300: #a370f7;--bs-indigo-400: #8540f5;--bs-indigo-500: #6610f2;--bs-indigo-600: #520dc2;--bs-indigo-700: #3d0a91;--bs-indigo-800: #290661;--bs-indigo-900: #140330;--bs-purple-100: #e2d9f3;--bs-purple-200: #c5b3e6;--bs-purple-300: #a98eda;--bs-purple-400: #8c68cd;--bs-purple-500: #6f42c1;--bs-purple-600: #59359a;--bs-purple-700: #432874;--bs-purple-800: #2c1a4d;--bs-purple-900: #160d27;--bs-pink-100: #f7d6e6;--bs-pink-200: #efadce;--bs-pink-300: #e685b5;--bs-pink-400: #de5c9d;--bs-pink-500: #d63384;--bs-pink-600: #ab296a;--bs-pink-700: #801f4f;--bs-pink-800: #561435;--bs-pink-900: #2b0a1a;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0))}html *,html *:before,html *:after,html[data-netbox-color-mode=dark] *,html[data-netbox-color-mode=dark] *:before,html[data-netbox-color-mode=dark] *:after,html[data-netbox-color-mode=light] *,html[data-netbox-color-mode=light] *:before,html[data-netbox-color-mode=light] *:after{box-sizing:border-box}}@media print and (prefers-reduced-motion: no-preference){html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{scroll-behavior:smooth}}@media print{html body,html[data-netbox-color-mode=dark] body,html[data-netbox-color-mode=light] body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}}@media print{html hr,html[data-netbox-color-mode=dark] hr,html[data-netbox-color-mode=light] hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}}@media print{html hr:not([size]),html[data-netbox-color-mode=dark] hr:not([size]),html[data-netbox-color-mode=light] hr:not([size]){height:1px}}@media print{html h6,html .h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=light] .h6,html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=light] h6,html h5,html .h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=light] .h5,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=light] h5,html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4,html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3,html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2,html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}}@media print{html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{font-size:calc(1.375rem + 1.5vw)}}@media print and (min-width: 1200px){html h1,html .h1,html[data-netbox-color-mode=dark] .h1,html[data-netbox-color-mode=light] .h1,html[data-netbox-color-mode=dark] h1,html[data-netbox-color-mode=light] h1{font-size:2.5rem}}@media print{html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2{font-size:calc(1.325rem + .9vw)}}@media print and (min-width: 1200px){html h2,html .h2,html[data-netbox-color-mode=dark] .h2,html[data-netbox-color-mode=light] .h2,html[data-netbox-color-mode=dark] h2,html[data-netbox-color-mode=light] h2{font-size:2rem}}@media print{html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3{font-size:calc(1.3rem + .6vw)}}@media print and (min-width: 1200px){html h3,html .h3,html[data-netbox-color-mode=dark] .h3,html[data-netbox-color-mode=light] .h3,html[data-netbox-color-mode=dark] h3,html[data-netbox-color-mode=light] h3{font-size:1.75rem}}@media print{html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4{font-size:calc(1.275rem + .3vw)}}@media print and (min-width: 1200px){html h4,html .h4,html[data-netbox-color-mode=dark] .h4,html[data-netbox-color-mode=light] .h4,html[data-netbox-color-mode=dark] h4,html[data-netbox-color-mode=light] h4{font-size:1.5rem}}@media print{html h5,html .h5,html[data-netbox-color-mode=dark] .h5,html[data-netbox-color-mode=light] .h5,html[data-netbox-color-mode=dark] h5,html[data-netbox-color-mode=light] h5{font-size:1.25rem}}@media print{html h6,html .h6,html[data-netbox-color-mode=dark] .h6,html[data-netbox-color-mode=light] .h6,html[data-netbox-color-mode=dark] h6,html[data-netbox-color-mode=light] h6{font-size:1rem}}@media print{html p,html[data-netbox-color-mode=dark] p,html[data-netbox-color-mode=light] p{margin-top:0;margin-bottom:1rem}}@media print{html abbr[title],html abbr[data-bs-original-title],html[data-netbox-color-mode=dark] abbr[title],html[data-netbox-color-mode=dark] abbr[data-bs-original-title],html[data-netbox-color-mode=light] abbr[title],html[data-netbox-color-mode=light] abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}}@media print{html address,html[data-netbox-color-mode=dark] address,html[data-netbox-color-mode=light] address{margin-bottom:1rem;font-style:normal;line-height:inherit}}@media print{html ol,html ul,html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=light] ol,html[data-netbox-color-mode=light] ul{padding-left:2rem}}@media print{html ol,html ul,html dl,html[data-netbox-color-mode=dark] ol,html[data-netbox-color-mode=dark] ul,html[data-netbox-color-mode=dark] dl,html[data-netbox-color-mode=light] ol,html[data-netbox-color-mode=light] ul,html[data-netbox-color-mode=light] dl{margin-top:0;margin-bottom:1rem}}@media print{html ol ol,html ul ul,html ol ul,html ul ol,html[data-netbox-color-mode=dark] ol ol,html[data-netbox-color-mode=dark] ul ul,html[data-netbox-color-mode=dark] ol ul,html[data-netbox-color-mode=dark] ul ol,html[data-netbox-color-mode=light] ol ol,html[data-netbox-color-mode=light] ul ul,html[data-netbox-color-mode=light] ol ul,html[data-netbox-color-mode=light] ul ol{margin-bottom:0}}@media print{html dt,html[data-netbox-color-mode=dark] dt,html[data-netbox-color-mode=light] dt{font-weight:700}}@media print{html dd,html[data-netbox-color-mode=dark] dd,html[data-netbox-color-mode=light] dd{margin-bottom:.5rem;margin-left:0}}@media print{html blockquote,html[data-netbox-color-mode=dark] blockquote,html[data-netbox-color-mode=light] blockquote{margin:0 0 1rem}}@media print{html b,html strong,html[data-netbox-color-mode=dark] b,html[data-netbox-color-mode=dark] strong,html[data-netbox-color-mode=light] b,html[data-netbox-color-mode=light] strong{font-weight:800}}@media print{html small,html .small,html[data-netbox-color-mode=dark] .small,html[data-netbox-color-mode=light] .small,html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=light] small{font-size:.875em}}@media print{html mark,html .mark,html[data-netbox-color-mode=dark] .mark,html[data-netbox-color-mode=light] .mark,html[data-netbox-color-mode=dark] mark,html[data-netbox-color-mode=light] mark{padding:.2em;background-color:#fcf8e3}}@media print{html sub,html sup,html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=dark] sup,html[data-netbox-color-mode=light] sub,html[data-netbox-color-mode=light] sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}}@media print{html sub,html[data-netbox-color-mode=dark] sub,html[data-netbox-color-mode=light] sub{bottom:-.25em}}@media print{html sup,html[data-netbox-color-mode=dark] sup,html[data-netbox-color-mode=light] sup{top:-.5em}}@media print{html a,html[data-netbox-color-mode=dark] a,html[data-netbox-color-mode=light] a{color:#0d6efd;text-decoration:underline}html a:hover,html[data-netbox-color-mode=dark] a:hover,html[data-netbox-color-mode=light] a:hover{color:#0a58ca}}@media print{html a:not([href]):not([class]),html a:not([href]):not([class]):hover,html[data-netbox-color-mode=dark] a:not([href]):not([class]),html[data-netbox-color-mode=dark] a:not([href]):not([class]):hover,html[data-netbox-color-mode=light] a:not([href]):not([class]),html[data-netbox-color-mode=light] a:not([href]):not([class]):hover{color:inherit;text-decoration:none}}@media print{html pre,html code,html kbd,html samp,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=dark] samp,html[data-netbox-color-mode=light] pre,html[data-netbox-color-mode=light] code,html[data-netbox-color-mode=light] kbd,html[data-netbox-color-mode=light] samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}}@media print{html pre,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=light] pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}html pre code,html[data-netbox-color-mode=dark] pre code,html[data-netbox-color-mode=light] pre code{font-size:inherit;color:inherit;word-break:normal}}@media print{html code,html[data-netbox-color-mode=dark] code,html[data-netbox-color-mode=light] code{font-size:.875em;color:#212529;word-wrap:break-word}a>html code,a>html[data-netbox-color-mode=dark] code,a>html[data-netbox-color-mode=light] code{color:inherit}}@media print{html kbd,html[data-netbox-color-mode=dark] kbd,html[data-netbox-color-mode=light] kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.375rem}html kbd kbd,html[data-netbox-color-mode=dark] kbd kbd,html[data-netbox-color-mode=light] kbd kbd{padding:0;font-size:1em;font-weight:700}}@media print{html figure,html[data-netbox-color-mode=dark] figure,html[data-netbox-color-mode=light] figure{margin:0 0 1rem}}@media print{html img,html svg,html[data-netbox-color-mode=dark] img,html[data-netbox-color-mode=dark] svg,html[data-netbox-color-mode=light] img,html[data-netbox-color-mode=light] svg{vertical-align:middle}}@media print{html table,html[data-netbox-color-mode=dark] table,html[data-netbox-color-mode=light] table{caption-side:bottom;border-collapse:collapse}}@media print{html caption,html[data-netbox-color-mode=dark] caption,html[data-netbox-color-mode=light] caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}}@media print{html th,html[data-netbox-color-mode=dark] th,html[data-netbox-color-mode=light] th{text-align:inherit;text-align:-webkit-match-parent}}@media print{html thead,html tbody,html tfoot,html tr,html td,html th,html[data-netbox-color-mode=dark] thead,html[data-netbox-color-mode=dark] tbody,html[data-netbox-color-mode=dark] tfoot,html[data-netbox-color-mode=dark] tr,html[data-netbox-color-mode=dark] td,html[data-netbox-color-mode=dark] th,html[data-netbox-color-mode=light] thead,html[data-netbox-color-mode=light] tbody,html[data-netbox-color-mode=light] tfoot,html[data-netbox-color-mode=light] tr,html[data-netbox-color-mode=light] td,html[data-netbox-color-mode=light] th{border-color:inherit;border-style:solid;border-width:0}}@media print{html label,html[data-netbox-color-mode=dark] label,html[data-netbox-color-mode=light] label{display:inline-block}}@media print{html button,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=light] button{border-radius:0}}@media print{html button:focus:not(:focus-visible),html[data-netbox-color-mode=dark] button:focus:not(:focus-visible),html[data-netbox-color-mode=light] button:focus:not(:focus-visible){outline:0}}@media print{html input,html button,html select,html optgroup,html textarea,html[data-netbox-color-mode=dark] input,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=dark] optgroup,html[data-netbox-color-mode=dark] textarea,html[data-netbox-color-mode=light] input,html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] select,html[data-netbox-color-mode=light] optgroup,html[data-netbox-color-mode=light] textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}}@media print{html button,html select,html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] select{text-transform:none}}@media print{html [role=button],html[data-netbox-color-mode=dark] [role=button],html[data-netbox-color-mode=light] [role=button]{cursor:pointer}}@media print{html select,html[data-netbox-color-mode=dark] select,html[data-netbox-color-mode=light] select{word-wrap:normal}html select:disabled,html[data-netbox-color-mode=dark] select:disabled,html[data-netbox-color-mode=light] select:disabled{opacity:1}}@media print{html [list]::-webkit-calendar-picker-indicator,html[data-netbox-color-mode=dark] [list]::-webkit-calendar-picker-indicator,html[data-netbox-color-mode=light] [list]::-webkit-calendar-picker-indicator{display:none}}@media print{html button,html [type=button],html [type=reset],html [type=submit],html[data-netbox-color-mode=dark] button,html[data-netbox-color-mode=dark] [type=button],html[data-netbox-color-mode=dark] [type=reset],html[data-netbox-color-mode=dark] [type=submit],html[data-netbox-color-mode=light] button,html[data-netbox-color-mode=light] [type=button],html[data-netbox-color-mode=light] [type=reset],html[data-netbox-color-mode=light] [type=submit]{-webkit-appearance:button}html button:not(:disabled),html [type=button]:not(:disabled),html [type=reset]:not(:disabled),html [type=submit]:not(:disabled),html[data-netbox-color-mode=dark] button:not(:disabled),html[data-netbox-color-mode=dark] [type=button]:not(:disabled),html[data-netbox-color-mode=dark] [type=reset]:not(:disabled),html[data-netbox-color-mode=dark] [type=submit]:not(:disabled),html[data-netbox-color-mode=light] button:not(:disabled),html[data-netbox-color-mode=light] [type=button]:not(:disabled),html[data-netbox-color-mode=light] [type=reset]:not(:disabled),html[data-netbox-color-mode=light] [type=submit]:not(:disabled){cursor:pointer}}@media print{html ::-moz-focus-inner,html[data-netbox-color-mode=dark] ::-moz-focus-inner,html[data-netbox-color-mode=light] ::-moz-focus-inner{padding:0;border-style:none}}@media print{html textarea,html[data-netbox-color-mode=dark] textarea,html[data-netbox-color-mode=light] textarea{resize:vertical}}@media print{html fieldset,html[data-netbox-color-mode=dark] fieldset,html[data-netbox-color-mode=light] fieldset{min-width:0;padding:0;margin:0;border:0}}@media print{html legend,html[data-netbox-color-mode=dark] legend,html[data-netbox-color-mode=light] legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}}@media print and (min-width: 1200px){html legend,html[data-netbox-color-mode=dark] legend,html[data-netbox-color-mode=light] legend{font-size:1.5rem}}@media print{html legend+*,html[data-netbox-color-mode=dark] legend+*,html[data-netbox-color-mode=light] legend+*{clear:left}}@media print{html ::-webkit-datetime-edit-fields-wrapper,html ::-webkit-datetime-edit-text,html ::-webkit-datetime-edit-minute,html ::-webkit-datetime-edit-hour-field,html ::-webkit-datetime-edit-day-field,html ::-webkit-datetime-edit-month-field,html ::-webkit-datetime-edit-year-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=dark] ::-webkit-datetime-edit-year-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-fields-wrapper,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-text,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-minute,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-hour-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-day-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-month-field,html[data-netbox-color-mode=light] ::-webkit-datetime-edit-year-field{padding:0}}@media print{html ::-webkit-inner-spin-button,html[data-netbox-color-mode=dark] ::-webkit-inner-spin-button,html[data-netbox-color-mode=light] ::-webkit-inner-spin-button{height:auto}}@media print{html [type=search],html[data-netbox-color-mode=dark] [type=search],html[data-netbox-color-mode=light] [type=search]{outline-offset:-2px;-webkit-appearance:textfield}}@media print{html ::-webkit-search-decoration,html[data-netbox-color-mode=dark] ::-webkit-search-decoration,html[data-netbox-color-mode=light] ::-webkit-search-decoration{-webkit-appearance:none}}@media print{html ::-webkit-color-swatch-wrapper,html[data-netbox-color-mode=dark] ::-webkit-color-swatch-wrapper,html[data-netbox-color-mode=light] ::-webkit-color-swatch-wrapper{padding:0}}@media print{html ::file-selector-button,html[data-netbox-color-mode=dark] ::file-selector-button,html[data-netbox-color-mode=light] ::file-selector-button{font:inherit}}@media print{html ::-webkit-file-upload-button,html[data-netbox-color-mode=dark] ::-webkit-file-upload-button,html[data-netbox-color-mode=light] ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}}@media print{html output,html[data-netbox-color-mode=dark] output,html[data-netbox-color-mode=light] output{display:inline-block}}@media print{html iframe,html[data-netbox-color-mode=dark] iframe,html[data-netbox-color-mode=light] iframe{border:0}}@media print{html summary,html[data-netbox-color-mode=dark] summary,html[data-netbox-color-mode=light] summary{display:list-item;cursor:pointer}}@media print{html progress,html[data-netbox-color-mode=dark] progress,html[data-netbox-color-mode=light] progress{vertical-align:baseline}}@media print{html [hidden],html[data-netbox-color-mode=dark] [hidden],html[data-netbox-color-mode=light] [hidden]{display:none!important}}@media print{html .lead,html[data-netbox-color-mode=dark] .lead,html[data-netbox-color-mode=light] .lead{font-size:1.25rem;font-weight:300}}@media print{html .display-1,html[data-netbox-color-mode=dark] .display-1,html[data-netbox-color-mode=light] .display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-1,html[data-netbox-color-mode=dark] .display-1,html[data-netbox-color-mode=light] .display-1{font-size:5rem}}@media print{html .display-2,html[data-netbox-color-mode=dark] .display-2,html[data-netbox-color-mode=light] .display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-2,html[data-netbox-color-mode=dark] .display-2,html[data-netbox-color-mode=light] .display-2{font-size:4.5rem}}@media print{html .display-3,html[data-netbox-color-mode=dark] .display-3,html[data-netbox-color-mode=light] .display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-3,html[data-netbox-color-mode=dark] .display-3,html[data-netbox-color-mode=light] .display-3{font-size:4rem}}@media print{html .display-4,html[data-netbox-color-mode=dark] .display-4,html[data-netbox-color-mode=light] .display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-4,html[data-netbox-color-mode=dark] .display-4,html[data-netbox-color-mode=light] .display-4{font-size:3.5rem}}@media print{html .display-5,html[data-netbox-color-mode=dark] .display-5,html[data-netbox-color-mode=light] .display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-5,html[data-netbox-color-mode=dark] .display-5,html[data-netbox-color-mode=light] .display-5{font-size:3rem}}@media print{html .display-6,html[data-netbox-color-mode=dark] .display-6,html[data-netbox-color-mode=light] .display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}}@media print and (min-width: 1200px){html .display-6,html[data-netbox-color-mode=dark] .display-6,html[data-netbox-color-mode=light] .display-6{font-size:2.5rem}}@media print{html .list-unstyled,html[data-netbox-color-mode=dark] .list-unstyled,html[data-netbox-color-mode=light] .list-unstyled{padding-left:0;list-style:none}}@media print{html .list-inline,html[data-netbox-color-mode=dark] .list-inline,html[data-netbox-color-mode=light] .list-inline{padding-left:0;list-style:none}}@media print{html .list-inline-item,html[data-netbox-color-mode=dark] .list-inline-item,html[data-netbox-color-mode=light] .list-inline-item{display:inline-block}html .list-inline-item:not(:last-child),html[data-netbox-color-mode=dark] .list-inline-item:not(:last-child),html[data-netbox-color-mode=light] .list-inline-item:not(:last-child){margin-right:.5rem}}@media print{html .initialism,html[data-netbox-color-mode=dark] .initialism,html[data-netbox-color-mode=light] .initialism{font-size:.875em;text-transform:uppercase}}@media print{html .blockquote,html[data-netbox-color-mode=dark] .blockquote,html[data-netbox-color-mode=light] .blockquote{margin-bottom:1rem;font-size:1.25rem}html .blockquote>:last-child,html[data-netbox-color-mode=dark] .blockquote>:last-child,html[data-netbox-color-mode=light] .blockquote>:last-child{margin-bottom:0}}@media print{html .blockquote-footer,html[data-netbox-color-mode=dark] .blockquote-footer,html[data-netbox-color-mode=light] .blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}html .blockquote-footer:before,html[data-netbox-color-mode=dark] .blockquote-footer:before,html[data-netbox-color-mode=light] .blockquote-footer:before{content:"\2014\a0"}}@media print{html .img-fluid,html[data-netbox-color-mode=dark] .img-fluid,html[data-netbox-color-mode=light] .img-fluid{max-width:100%;height:auto}}@media print{html .img-thumbnail,html[data-netbox-color-mode=dark] .img-thumbnail,html[data-netbox-color-mode=light] .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.375rem;max-width:100%;height:auto}}@media print{html .figure,html[data-netbox-color-mode=dark] .figure,html[data-netbox-color-mode=light] .figure{display:inline-block}}@media print{html .figure-img,html[data-netbox-color-mode=dark] .figure-img,html[data-netbox-color-mode=light] .figure-img{margin-bottom:.5rem;line-height:1}}@media print{html .figure-caption,html[data-netbox-color-mode=dark] .figure-caption,html[data-netbox-color-mode=light] .figure-caption{font-size:.875em;color:#6c757d}}@media print{html .container,html .container-fluid,html .container-xxl,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=light] .container-xxl,html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=dark] .container-fluid,html[data-netbox-color-mode=light] .container,html[data-netbox-color-mode=light] .container-fluid{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}}@media print and (min-width: 576px){html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:540px}}@media print and (min-width: 768px){html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:720px}}@media print and (min-width: 992px){html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:960px}}@media print and (min-width: 1200px){html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:1140px}}@media print and (min-width: 1400px){html .container-xxl,html[data-netbox-color-mode=dark] .container-xxl,html[data-netbox-color-mode=light] .container-xxl,html .container-xl,html[data-netbox-color-mode=dark] .container-xl,html[data-netbox-color-mode=light] .container-xl,html .container-lg,html[data-netbox-color-mode=dark] .container-lg,html[data-netbox-color-mode=light] .container-lg,html .container-md,html[data-netbox-color-mode=dark] .container-md,html[data-netbox-color-mode=light] .container-md,html .container-sm,html[data-netbox-color-mode=dark] .container-sm,html[data-netbox-color-mode=light] .container-sm,html .container,html[data-netbox-color-mode=dark] .container,html[data-netbox-color-mode=light] .container{max-width:1320px}}@media print{html .row,html[data-netbox-color-mode=dark] .row,html[data-netbox-color-mode=light] .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}html .row>*,html[data-netbox-color-mode=dark] .row>*,html[data-netbox-color-mode=light] .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}}@media print{html .col,html[data-netbox-color-mode=dark] .col,html[data-netbox-color-mode=light] .col{flex:1 0 0%}}@media print{html .row-cols-auto>*,html[data-netbox-color-mode=dark] .row-cols-auto>*,html[data-netbox-color-mode=light] .row-cols-auto>*{flex:0 0 auto;width:auto}}@media print{html .row-cols-1>*,html[data-netbox-color-mode=dark] .row-cols-1>*,html[data-netbox-color-mode=light] .row-cols-1>*{flex:0 0 auto;width:100%}}@media print{html .row-cols-2>*,html[data-netbox-color-mode=dark] .row-cols-2>*,html[data-netbox-color-mode=light] .row-cols-2>*{flex:0 0 auto;width:50%}}@media print{html .row-cols-3>*,html[data-netbox-color-mode=dark] .row-cols-3>*,html[data-netbox-color-mode=light] .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}}@media print{html .row-cols-4>*,html[data-netbox-color-mode=dark] .row-cols-4>*,html[data-netbox-color-mode=light] .row-cols-4>*{flex:0 0 auto;width:25%}}@media print{html .row-cols-5>*,html[data-netbox-color-mode=dark] .row-cols-5>*,html[data-netbox-color-mode=light] .row-cols-5>*{flex:0 0 auto;width:20%}}@media print{html .row-cols-6>*,html[data-netbox-color-mode=dark] .row-cols-6>*,html[data-netbox-color-mode=light] .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 576px){html .col-sm,html[data-netbox-color-mode=dark] .col-sm,html[data-netbox-color-mode=light] .col-sm{flex:1 0 0%}html .row-cols-sm-auto>*,html[data-netbox-color-mode=dark] .row-cols-sm-auto>*,html[data-netbox-color-mode=light] .row-cols-sm-auto>*{flex:0 0 auto;width:auto}html .row-cols-sm-1>*,html[data-netbox-color-mode=dark] .row-cols-sm-1>*,html[data-netbox-color-mode=light] .row-cols-sm-1>*{flex:0 0 auto;width:100%}html .row-cols-sm-2>*,html[data-netbox-color-mode=dark] .row-cols-sm-2>*,html[data-netbox-color-mode=light] .row-cols-sm-2>*{flex:0 0 auto;width:50%}html .row-cols-sm-3>*,html[data-netbox-color-mode=dark] .row-cols-sm-3>*,html[data-netbox-color-mode=light] .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-sm-4>*,html[data-netbox-color-mode=dark] .row-cols-sm-4>*,html[data-netbox-color-mode=light] .row-cols-sm-4>*{flex:0 0 auto;width:25%}html .row-cols-sm-5>*,html[data-netbox-color-mode=dark] .row-cols-sm-5>*,html[data-netbox-color-mode=light] .row-cols-sm-5>*{flex:0 0 auto;width:20%}html .row-cols-sm-6>*,html[data-netbox-color-mode=dark] .row-cols-sm-6>*,html[data-netbox-color-mode=light] .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 768px){html .col-md,html[data-netbox-color-mode=dark] .col-md,html[data-netbox-color-mode=light] .col-md{flex:1 0 0%}html .row-cols-md-auto>*,html[data-netbox-color-mode=dark] .row-cols-md-auto>*,html[data-netbox-color-mode=light] .row-cols-md-auto>*{flex:0 0 auto;width:auto}html .row-cols-md-1>*,html[data-netbox-color-mode=dark] .row-cols-md-1>*,html[data-netbox-color-mode=light] .row-cols-md-1>*{flex:0 0 auto;width:100%}html .row-cols-md-2>*,html[data-netbox-color-mode=dark] .row-cols-md-2>*,html[data-netbox-color-mode=light] .row-cols-md-2>*{flex:0 0 auto;width:50%}html .row-cols-md-3>*,html[data-netbox-color-mode=dark] .row-cols-md-3>*,html[data-netbox-color-mode=light] .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-md-4>*,html[data-netbox-color-mode=dark] .row-cols-md-4>*,html[data-netbox-color-mode=light] .row-cols-md-4>*{flex:0 0 auto;width:25%}html .row-cols-md-5>*,html[data-netbox-color-mode=dark] .row-cols-md-5>*,html[data-netbox-color-mode=light] .row-cols-md-5>*{flex:0 0 auto;width:20%}html .row-cols-md-6>*,html[data-netbox-color-mode=dark] .row-cols-md-6>*,html[data-netbox-color-mode=light] .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 992px){html .col-lg,html[data-netbox-color-mode=dark] .col-lg,html[data-netbox-color-mode=light] .col-lg{flex:1 0 0%}html .row-cols-lg-auto>*,html[data-netbox-color-mode=dark] .row-cols-lg-auto>*,html[data-netbox-color-mode=light] .row-cols-lg-auto>*{flex:0 0 auto;width:auto}html .row-cols-lg-1>*,html[data-netbox-color-mode=dark] .row-cols-lg-1>*,html[data-netbox-color-mode=light] .row-cols-lg-1>*{flex:0 0 auto;width:100%}html .row-cols-lg-2>*,html[data-netbox-color-mode=dark] .row-cols-lg-2>*,html[data-netbox-color-mode=light] .row-cols-lg-2>*{flex:0 0 auto;width:50%}html .row-cols-lg-3>*,html[data-netbox-color-mode=dark] .row-cols-lg-3>*,html[data-netbox-color-mode=light] .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-lg-4>*,html[data-netbox-color-mode=dark] .row-cols-lg-4>*,html[data-netbox-color-mode=light] .row-cols-lg-4>*{flex:0 0 auto;width:25%}html .row-cols-lg-5>*,html[data-netbox-color-mode=dark] .row-cols-lg-5>*,html[data-netbox-color-mode=light] .row-cols-lg-5>*{flex:0 0 auto;width:20%}html .row-cols-lg-6>*,html[data-netbox-color-mode=dark] .row-cols-lg-6>*,html[data-netbox-color-mode=light] .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 1200px){html .col-xl,html[data-netbox-color-mode=dark] .col-xl,html[data-netbox-color-mode=light] .col-xl{flex:1 0 0%}html .row-cols-xl-auto>*,html[data-netbox-color-mode=dark] .row-cols-xl-auto>*,html[data-netbox-color-mode=light] .row-cols-xl-auto>*{flex:0 0 auto;width:auto}html .row-cols-xl-1>*,html[data-netbox-color-mode=dark] .row-cols-xl-1>*,html[data-netbox-color-mode=light] .row-cols-xl-1>*{flex:0 0 auto;width:100%}html .row-cols-xl-2>*,html[data-netbox-color-mode=dark] .row-cols-xl-2>*,html[data-netbox-color-mode=light] .row-cols-xl-2>*{flex:0 0 auto;width:50%}html .row-cols-xl-3>*,html[data-netbox-color-mode=dark] .row-cols-xl-3>*,html[data-netbox-color-mode=light] .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-xl-4>*,html[data-netbox-color-mode=dark] .row-cols-xl-4>*,html[data-netbox-color-mode=light] .row-cols-xl-4>*{flex:0 0 auto;width:25%}html .row-cols-xl-5>*,html[data-netbox-color-mode=dark] .row-cols-xl-5>*,html[data-netbox-color-mode=light] .row-cols-xl-5>*{flex:0 0 auto;width:20%}html .row-cols-xl-6>*,html[data-netbox-color-mode=dark] .row-cols-xl-6>*,html[data-netbox-color-mode=light] .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media print and (min-width: 1400px){html .col-xxl,html[data-netbox-color-mode=dark] .col-xxl,html[data-netbox-color-mode=light] .col-xxl{flex:1 0 0%}html .row-cols-xxl-auto>*,html[data-netbox-color-mode=dark] .row-cols-xxl-auto>*,html[data-netbox-color-mode=light] .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}html .row-cols-xxl-1>*,html[data-netbox-color-mode=dark] .row-cols-xxl-1>*,html[data-netbox-color-mode=light] .row-cols-xxl-1>*{flex:0 0 auto;width:100%}html .row-cols-xxl-2>*,html[data-netbox-color-mode=dark] .row-cols-xxl-2>*,html[data-netbox-color-mode=light] .row-cols-xxl-2>*{flex:0 0 auto;width:50%}html .row-cols-xxl-3>*,html[data-netbox-color-mode=dark] .row-cols-xxl-3>*,html[data-netbox-color-mode=light] .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}html .row-cols-xxl-4>*,html[data-netbox-color-mode=dark] .row-cols-xxl-4>*,html[data-netbox-color-mode=light] .row-cols-xxl-4>*{flex:0 0 auto;width:25%}html .row-cols-xxl-5>*,html[data-netbox-color-mode=dark] .row-cols-xxl-5>*,html[data-netbox-color-mode=light] .row-cols-xxl-5>*{flex:0 0 auto;width:20%}html .row-cols-xxl-6>*,html[data-netbox-color-mode=dark] .row-cols-xxl-6>*,html[data-netbox-color-mode=light] .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}@media print{html .col-auto,html[data-netbox-color-mode=dark] .col-auto,html[data-netbox-color-mode=light] .col-auto{flex:0 0 auto;width:auto}}@media print{html .col-1,html[data-netbox-color-mode=dark] .col-1,html[data-netbox-color-mode=light] .col-1{flex:0 0 auto;width:8.33333333%}}@media print{html .col-2,html[data-netbox-color-mode=dark] .col-2,html[data-netbox-color-mode=light] .col-2{flex:0 0 auto;width:16.66666667%}}@media print{html .col-3,html[data-netbox-color-mode=dark] .col-3,html[data-netbox-color-mode=light] .col-3{flex:0 0 auto;width:25%}}@media print{html .col-4,html[data-netbox-color-mode=dark] .col-4,html[data-netbox-color-mode=light] .col-4{flex:0 0 auto;width:33.33333333%}}@media print{html .col-5,html[data-netbox-color-mode=dark] .col-5,html[data-netbox-color-mode=light] .col-5{flex:0 0 auto;width:41.66666667%}}@media print{html .col-6,html[data-netbox-color-mode=dark] .col-6,html[data-netbox-color-mode=light] .col-6{flex:0 0 auto;width:50%}}@media print{html .col-7,html[data-netbox-color-mode=dark] .col-7,html[data-netbox-color-mode=light] .col-7{flex:0 0 auto;width:58.33333333%}}@media print{html .col-8,html[data-netbox-color-mode=dark] .col-8,html[data-netbox-color-mode=light] .col-8{flex:0 0 auto;width:66.66666667%}}@media print{html .col-9,html[data-netbox-color-mode=dark] .col-9,html[data-netbox-color-mode=light] .col-9{flex:0 0 auto;width:75%}}@media print{html .col-10,html[data-netbox-color-mode=dark] .col-10,html[data-netbox-color-mode=light] .col-10{flex:0 0 auto;width:83.33333333%}}@media print{html .col-11,html[data-netbox-color-mode=dark] .col-11,html[data-netbox-color-mode=light] .col-11{flex:0 0 auto;width:91.66666667%}}@media print{html .col-12,html[data-netbox-color-mode=dark] .col-12,html[data-netbox-color-mode=light] .col-12{flex:0 0 auto;width:100%}}@media print{html .offset-1,html[data-netbox-color-mode=dark] .offset-1,html[data-netbox-color-mode=light] .offset-1{margin-left:8.33333333%}}@media print{html .offset-2,html[data-netbox-color-mode=dark] .offset-2,html[data-netbox-color-mode=light] .offset-2{margin-left:16.66666667%}}@media print{html .offset-3,html[data-netbox-color-mode=dark] .offset-3,html[data-netbox-color-mode=light] .offset-3{margin-left:25%}}@media print{html .offset-4,html[data-netbox-color-mode=dark] .offset-4,html[data-netbox-color-mode=light] .offset-4{margin-left:33.33333333%}}@media print{html .offset-5,html[data-netbox-color-mode=dark] .offset-5,html[data-netbox-color-mode=light] .offset-5{margin-left:41.66666667%}}@media print{html .offset-6,html[data-netbox-color-mode=dark] .offset-6,html[data-netbox-color-mode=light] .offset-6{margin-left:50%}}@media print{html .offset-7,html[data-netbox-color-mode=dark] .offset-7,html[data-netbox-color-mode=light] .offset-7{margin-left:58.33333333%}}@media print{html .offset-8,html[data-netbox-color-mode=dark] .offset-8,html[data-netbox-color-mode=light] .offset-8{margin-left:66.66666667%}}@media print{html .offset-9,html[data-netbox-color-mode=dark] .offset-9,html[data-netbox-color-mode=light] .offset-9{margin-left:75%}}@media print{html .offset-10,html[data-netbox-color-mode=dark] .offset-10,html[data-netbox-color-mode=light] .offset-10{margin-left:83.33333333%}}@media print{html .offset-11,html[data-netbox-color-mode=dark] .offset-11,html[data-netbox-color-mode=light] .offset-11{margin-left:91.66666667%}}@media print{html .g-0,html .gx-0,html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gx-0,html[data-netbox-color-mode=light] .g-0,html[data-netbox-color-mode=light] .gx-0{--bs-gutter-x: 0}}@media print{html .g-0,html .gy-0,html[data-netbox-color-mode=dark] .g-0,html[data-netbox-color-mode=dark] .gy-0,html[data-netbox-color-mode=light] .g-0,html[data-netbox-color-mode=light] .gy-0{--bs-gutter-y: 0}}@media print{html .g-1,html .gx-1,html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gx-1,html[data-netbox-color-mode=light] .g-1,html[data-netbox-color-mode=light] .gx-1{--bs-gutter-x: .25rem}}@media print{html .g-1,html .gy-1,html[data-netbox-color-mode=dark] .g-1,html[data-netbox-color-mode=dark] .gy-1,html[data-netbox-color-mode=light] .g-1,html[data-netbox-color-mode=light] .gy-1{--bs-gutter-y: .25rem}}@media print{html .g-2,html .gx-2,html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gx-2,html[data-netbox-color-mode=light] .g-2,html[data-netbox-color-mode=light] .gx-2{--bs-gutter-x: .5rem}}@media print{html .g-2,html .gy-2,html[data-netbox-color-mode=dark] .g-2,html[data-netbox-color-mode=dark] .gy-2,html[data-netbox-color-mode=light] .g-2,html[data-netbox-color-mode=light] .gy-2{--bs-gutter-y: .5rem}}@media print{html .g-3,html .gx-3,html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gx-3,html[data-netbox-color-mode=light] .g-3,html[data-netbox-color-mode=light] .gx-3{--bs-gutter-x: 1rem}}@media print{html .g-3,html .gy-3,html[data-netbox-color-mode=dark] .g-3,html[data-netbox-color-mode=dark] .gy-3,html[data-netbox-color-mode=light] .g-3,html[data-netbox-color-mode=light] .gy-3{--bs-gutter-y: 1rem}}@media print{html .g-4,html .gx-4,html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gx-4,html[data-netbox-color-mode=light] .g-4,html[data-netbox-color-mode=light] .gx-4{--bs-gutter-x: 1.5rem}}@media print{html .g-4,html .gy-4,html[data-netbox-color-mode=dark] .g-4,html[data-netbox-color-mode=dark] .gy-4,html[data-netbox-color-mode=light] .g-4,html[data-netbox-color-mode=light] .gy-4{--bs-gutter-y: 1.5rem}}@media print{html .g-5,html .gx-5,html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gx-5,html[data-netbox-color-mode=light] .g-5,html[data-netbox-color-mode=light] .gx-5{--bs-gutter-x: 3rem}}@media print{html .g-5,html .gy-5,html[data-netbox-color-mode=dark] .g-5,html[data-netbox-color-mode=dark] .gy-5,html[data-netbox-color-mode=light] .g-5,html[data-netbox-color-mode=light] .gy-5{--bs-gutter-y: 3rem}}@media print and (min-width: 576px){html .col-sm-auto,html[data-netbox-color-mode=dark] .col-sm-auto,html[data-netbox-color-mode=light] .col-sm-auto{flex:0 0 auto;width:auto}html .col-sm-1,html[data-netbox-color-mode=dark] .col-sm-1,html[data-netbox-color-mode=light] .col-sm-1{flex:0 0 auto;width:8.33333333%}html .col-sm-2,html[data-netbox-color-mode=dark] .col-sm-2,html[data-netbox-color-mode=light] .col-sm-2{flex:0 0 auto;width:16.66666667%}html .col-sm-3,html[data-netbox-color-mode=dark] .col-sm-3,html[data-netbox-color-mode=light] .col-sm-3{flex:0 0 auto;width:25%}html .col-sm-4,html[data-netbox-color-mode=dark] .col-sm-4,html[data-netbox-color-mode=light] .col-sm-4{flex:0 0 auto;width:33.33333333%}html .col-sm-5,html[data-netbox-color-mode=dark] .col-sm-5,html[data-netbox-color-mode=light] .col-sm-5{flex:0 0 auto;width:41.66666667%}html .col-sm-6,html[data-netbox-color-mode=dark] .col-sm-6,html[data-netbox-color-mode=light] .col-sm-6{flex:0 0 auto;width:50%}html .col-sm-7,html[data-netbox-color-mode=dark] .col-sm-7,html[data-netbox-color-mode=light] .col-sm-7{flex:0 0 auto;width:58.33333333%}html .col-sm-8,html[data-netbox-color-mode=dark] .col-sm-8,html[data-netbox-color-mode=light] .col-sm-8{flex:0 0 auto;width:66.66666667%}html .col-sm-9,html[data-netbox-color-mode=dark] .col-sm-9,html[data-netbox-color-mode=light] .col-sm-9{flex:0 0 auto;width:75%}html .col-sm-10,html[data-netbox-color-mode=dark] .col-sm-10,html[data-netbox-color-mode=light] .col-sm-10{flex:0 0 auto;width:83.33333333%}html .col-sm-11,html[data-netbox-color-mode=dark] .col-sm-11,html[data-netbox-color-mode=light] .col-sm-11{flex:0 0 auto;width:91.66666667%}html .col-sm-12,html[data-netbox-color-mode=dark] .col-sm-12,html[data-netbox-color-mode=light] .col-sm-12{flex:0 0 auto;width:100%}html .offset-sm-0,html[data-netbox-color-mode=dark] .offset-sm-0,html[data-netbox-color-mode=light] .offset-sm-0{margin-left:0}html .offset-sm-1,html[data-netbox-color-mode=dark] .offset-sm-1,html[data-netbox-color-mode=light] .offset-sm-1{margin-left:8.33333333%}html .offset-sm-2,html[data-netbox-color-mode=dark] .offset-sm-2,html[data-netbox-color-mode=light] .offset-sm-2{margin-left:16.66666667%}html .offset-sm-3,html[data-netbox-color-mode=dark] .offset-sm-3,html[data-netbox-color-mode=light] .offset-sm-3{margin-left:25%}html .offset-sm-4,html[data-netbox-color-mode=dark] .offset-sm-4,html[data-netbox-color-mode=light] .offset-sm-4{margin-left:33.33333333%}html .offset-sm-5,html[data-netbox-color-mode=dark] .offset-sm-5,html[data-netbox-color-mode=light] .offset-sm-5{margin-left:41.66666667%}html .offset-sm-6,html[data-netbox-color-mode=dark] .offset-sm-6,html[data-netbox-color-mode=light] .offset-sm-6{margin-left:50%}html .offset-sm-7,html[data-netbox-color-mode=dark] .offset-sm-7,html[data-netbox-color-mode=light] .offset-sm-7{margin-left:58.33333333%}html .offset-sm-8,html[data-netbox-color-mode=dark] .offset-sm-8,html[data-netbox-color-mode=light] .offset-sm-8{margin-left:66.66666667%}html .offset-sm-9,html[data-netbox-color-mode=dark] .offset-sm-9,html[data-netbox-color-mode=light] .offset-sm-9{margin-left:75%}html .offset-sm-10,html[data-netbox-color-mode=dark] .offset-sm-10,html[data-netbox-color-mode=light] .offset-sm-10{margin-left:83.33333333%}html .offset-sm-11,html[data-netbox-color-mode=dark] .offset-sm-11,html[data-netbox-color-mode=light] .offset-sm-11{margin-left:91.66666667%}html .g-sm-0,html .gx-sm-0,html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gx-sm-0,html[data-netbox-color-mode=light] .g-sm-0,html[data-netbox-color-mode=light] .gx-sm-0{--bs-gutter-x: 0}html .g-sm-0,html .gy-sm-0,html[data-netbox-color-mode=dark] .g-sm-0,html[data-netbox-color-mode=dark] .gy-sm-0,html[data-netbox-color-mode=light] .g-sm-0,html[data-netbox-color-mode=light] .gy-sm-0{--bs-gutter-y: 0}html .g-sm-1,html .gx-sm-1,html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gx-sm-1,html[data-netbox-color-mode=light] .g-sm-1,html[data-netbox-color-mode=light] .gx-sm-1{--bs-gutter-x: .25rem}html .g-sm-1,html .gy-sm-1,html[data-netbox-color-mode=dark] .g-sm-1,html[data-netbox-color-mode=dark] .gy-sm-1,html[data-netbox-color-mode=light] .g-sm-1,html[data-netbox-color-mode=light] .gy-sm-1{--bs-gutter-y: .25rem}html .g-sm-2,html .gx-sm-2,html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gx-sm-2,html[data-netbox-color-mode=light] .g-sm-2,html[data-netbox-color-mode=light] .gx-sm-2{--bs-gutter-x: .5rem}html .g-sm-2,html .gy-sm-2,html[data-netbox-color-mode=dark] .g-sm-2,html[data-netbox-color-mode=dark] .gy-sm-2,html[data-netbox-color-mode=light] .g-sm-2,html[data-netbox-color-mode=light] .gy-sm-2{--bs-gutter-y: .5rem}html .g-sm-3,html .gx-sm-3,html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gx-sm-3,html[data-netbox-color-mode=light] .g-sm-3,html[data-netbox-color-mode=light] .gx-sm-3{--bs-gutter-x: 1rem}html .g-sm-3,html .gy-sm-3,html[data-netbox-color-mode=dark] .g-sm-3,html[data-netbox-color-mode=dark] .gy-sm-3,html[data-netbox-color-mode=light] .g-sm-3,html[data-netbox-color-mode=light] .gy-sm-3{--bs-gutter-y: 1rem}html .g-sm-4,html .gx-sm-4,html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gx-sm-4,html[data-netbox-color-mode=light] .g-sm-4,html[data-netbox-color-mode=light] .gx-sm-4{--bs-gutter-x: 1.5rem}html .g-sm-4,html .gy-sm-4,html[data-netbox-color-mode=dark] .g-sm-4,html[data-netbox-color-mode=dark] .gy-sm-4,html[data-netbox-color-mode=light] .g-sm-4,html[data-netbox-color-mode=light] .gy-sm-4{--bs-gutter-y: 1.5rem}html .g-sm-5,html .gx-sm-5,html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gx-sm-5,html[data-netbox-color-mode=light] .g-sm-5,html[data-netbox-color-mode=light] .gx-sm-5{--bs-gutter-x: 3rem}html .g-sm-5,html .gy-sm-5,html[data-netbox-color-mode=dark] .g-sm-5,html[data-netbox-color-mode=dark] .gy-sm-5,html[data-netbox-color-mode=light] .g-sm-5,html[data-netbox-color-mode=light] .gy-sm-5{--bs-gutter-y: 3rem}}@media print and (min-width: 768px){html .col-md-auto,html[data-netbox-color-mode=dark] .col-md-auto,html[data-netbox-color-mode=light] .col-md-auto{flex:0 0 auto;width:auto}html .col-md-1,html[data-netbox-color-mode=dark] .col-md-1,html[data-netbox-color-mode=light] .col-md-1{flex:0 0 auto;width:8.33333333%}html .col-md-2,html[data-netbox-color-mode=dark] .col-md-2,html[data-netbox-color-mode=light] .col-md-2{flex:0 0 auto;width:16.66666667%}html .col-md-3,html[data-netbox-color-mode=dark] .col-md-3,html[data-netbox-color-mode=light] .col-md-3{flex:0 0 auto;width:25%}html .col-md-4,html[data-netbox-color-mode=dark] .col-md-4,html[data-netbox-color-mode=light] .col-md-4{flex:0 0 auto;width:33.33333333%}html .col-md-5,html[data-netbox-color-mode=dark] .col-md-5,html[data-netbox-color-mode=light] .col-md-5{flex:0 0 auto;width:41.66666667%}html .col-md-6,html[data-netbox-color-mode=dark] .col-md-6,html[data-netbox-color-mode=light] .col-md-6{flex:0 0 auto;width:50%}html .col-md-7,html[data-netbox-color-mode=dark] .col-md-7,html[data-netbox-color-mode=light] .col-md-7{flex:0 0 auto;width:58.33333333%}html .col-md-8,html[data-netbox-color-mode=dark] .col-md-8,html[data-netbox-color-mode=light] .col-md-8{flex:0 0 auto;width:66.66666667%}html .col-md-9,html[data-netbox-color-mode=dark] .col-md-9,html[data-netbox-color-mode=light] .col-md-9{flex:0 0 auto;width:75%}html .col-md-10,html[data-netbox-color-mode=dark] .col-md-10,html[data-netbox-color-mode=light] .col-md-10{flex:0 0 auto;width:83.33333333%}html .col-md-11,html[data-netbox-color-mode=dark] .col-md-11,html[data-netbox-color-mode=light] .col-md-11{flex:0 0 auto;width:91.66666667%}html .col-md-12,html[data-netbox-color-mode=dark] .col-md-12,html[data-netbox-color-mode=light] .col-md-12{flex:0 0 auto;width:100%}html .offset-md-0,html[data-netbox-color-mode=dark] .offset-md-0,html[data-netbox-color-mode=light] .offset-md-0{margin-left:0}html .offset-md-1,html[data-netbox-color-mode=dark] .offset-md-1,html[data-netbox-color-mode=light] .offset-md-1{margin-left:8.33333333%}html .offset-md-2,html[data-netbox-color-mode=dark] .offset-md-2,html[data-netbox-color-mode=light] .offset-md-2{margin-left:16.66666667%}html .offset-md-3,html[data-netbox-color-mode=dark] .offset-md-3,html[data-netbox-color-mode=light] .offset-md-3{margin-left:25%}html .offset-md-4,html[data-netbox-color-mode=dark] .offset-md-4,html[data-netbox-color-mode=light] .offset-md-4{margin-left:33.33333333%}html .offset-md-5,html[data-netbox-color-mode=dark] .offset-md-5,html[data-netbox-color-mode=light] .offset-md-5{margin-left:41.66666667%}html .offset-md-6,html[data-netbox-color-mode=dark] .offset-md-6,html[data-netbox-color-mode=light] .offset-md-6{margin-left:50%}html .offset-md-7,html[data-netbox-color-mode=dark] .offset-md-7,html[data-netbox-color-mode=light] .offset-md-7{margin-left:58.33333333%}html .offset-md-8,html[data-netbox-color-mode=dark] .offset-md-8,html[data-netbox-color-mode=light] .offset-md-8{margin-left:66.66666667%}html .offset-md-9,html[data-netbox-color-mode=dark] .offset-md-9,html[data-netbox-color-mode=light] .offset-md-9{margin-left:75%}html .offset-md-10,html[data-netbox-color-mode=dark] .offset-md-10,html[data-netbox-color-mode=light] .offset-md-10{margin-left:83.33333333%}html .offset-md-11,html[data-netbox-color-mode=dark] .offset-md-11,html[data-netbox-color-mode=light] .offset-md-11{margin-left:91.66666667%}html .g-md-0,html .gx-md-0,html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gx-md-0,html[data-netbox-color-mode=light] .g-md-0,html[data-netbox-color-mode=light] .gx-md-0{--bs-gutter-x: 0}html .g-md-0,html .gy-md-0,html[data-netbox-color-mode=dark] .g-md-0,html[data-netbox-color-mode=dark] .gy-md-0,html[data-netbox-color-mode=light] .g-md-0,html[data-netbox-color-mode=light] .gy-md-0{--bs-gutter-y: 0}html .g-md-1,html .gx-md-1,html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gx-md-1,html[data-netbox-color-mode=light] .g-md-1,html[data-netbox-color-mode=light] .gx-md-1{--bs-gutter-x: .25rem}html .g-md-1,html .gy-md-1,html[data-netbox-color-mode=dark] .g-md-1,html[data-netbox-color-mode=dark] .gy-md-1,html[data-netbox-color-mode=light] .g-md-1,html[data-netbox-color-mode=light] .gy-md-1{--bs-gutter-y: .25rem}html .g-md-2,html .gx-md-2,html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gx-md-2,html[data-netbox-color-mode=light] .g-md-2,html[data-netbox-color-mode=light] .gx-md-2{--bs-gutter-x: .5rem}html .g-md-2,html .gy-md-2,html[data-netbox-color-mode=dark] .g-md-2,html[data-netbox-color-mode=dark] .gy-md-2,html[data-netbox-color-mode=light] .g-md-2,html[data-netbox-color-mode=light] .gy-md-2{--bs-gutter-y: .5rem}html .g-md-3,html .gx-md-3,html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gx-md-3,html[data-netbox-color-mode=light] .g-md-3,html[data-netbox-color-mode=light] .gx-md-3{--bs-gutter-x: 1rem}html .g-md-3,html .gy-md-3,html[data-netbox-color-mode=dark] .g-md-3,html[data-netbox-color-mode=dark] .gy-md-3,html[data-netbox-color-mode=light] .g-md-3,html[data-netbox-color-mode=light] .gy-md-3{--bs-gutter-y: 1rem}html .g-md-4,html .gx-md-4,html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gx-md-4,html[data-netbox-color-mode=light] .g-md-4,html[data-netbox-color-mode=light] .gx-md-4{--bs-gutter-x: 1.5rem}html .g-md-4,html .gy-md-4,html[data-netbox-color-mode=dark] .g-md-4,html[data-netbox-color-mode=dark] .gy-md-4,html[data-netbox-color-mode=light] .g-md-4,html[data-netbox-color-mode=light] .gy-md-4{--bs-gutter-y: 1.5rem}html .g-md-5,html .gx-md-5,html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gx-md-5,html[data-netbox-color-mode=light] .g-md-5,html[data-netbox-color-mode=light] .gx-md-5{--bs-gutter-x: 3rem}html .g-md-5,html .gy-md-5,html[data-netbox-color-mode=dark] .g-md-5,html[data-netbox-color-mode=dark] .gy-md-5,html[data-netbox-color-mode=light] .g-md-5,html[data-netbox-color-mode=light] .gy-md-5{--bs-gutter-y: 3rem}}@media print and (min-width: 992px){html .col-lg-auto,html[data-netbox-color-mode=dark] .col-lg-auto,html[data-netbox-color-mode=light] .col-lg-auto{flex:0 0 auto;width:auto}html .col-lg-1,html[data-netbox-color-mode=dark] .col-lg-1,html[data-netbox-color-mode=light] .col-lg-1{flex:0 0 auto;width:8.33333333%}html .col-lg-2,html[data-netbox-color-mode=dark] .col-lg-2,html[data-netbox-color-mode=light] .col-lg-2{flex:0 0 auto;width:16.66666667%}html .col-lg-3,html[data-netbox-color-mode=dark] .col-lg-3,html[data-netbox-color-mode=light] .col-lg-3{flex:0 0 auto;width:25%}html .col-lg-4,html[data-netbox-color-mode=dark] .col-lg-4,html[data-netbox-color-mode=light] .col-lg-4{flex:0 0 auto;width:33.33333333%}html .col-lg-5,html[data-netbox-color-mode=dark] .col-lg-5,html[data-netbox-color-mode=light] .col-lg-5{flex:0 0 auto;width:41.66666667%}html .col-lg-6,html[data-netbox-color-mode=dark] .col-lg-6,html[data-netbox-color-mode=light] .col-lg-6{flex:0 0 auto;width:50%}html .col-lg-7,html[data-netbox-color-mode=dark] .col-lg-7,html[data-netbox-color-mode=light] .col-lg-7{flex:0 0 auto;width:58.33333333%}html .col-lg-8,html[data-netbox-color-mode=dark] .col-lg-8,html[data-netbox-color-mode=light] .col-lg-8{flex:0 0 auto;width:66.66666667%}html .col-lg-9,html[data-netbox-color-mode=dark] .col-lg-9,html[data-netbox-color-mode=light] .col-lg-9{flex:0 0 auto;width:75%}html .col-lg-10,html[data-netbox-color-mode=dark] .col-lg-10,html[data-netbox-color-mode=light] .col-lg-10{flex:0 0 auto;width:83.33333333%}html .col-lg-11,html[data-netbox-color-mode=dark] .col-lg-11,html[data-netbox-color-mode=light] .col-lg-11{flex:0 0 auto;width:91.66666667%}html .col-lg-12,html[data-netbox-color-mode=dark] .col-lg-12,html[data-netbox-color-mode=light] .col-lg-12{flex:0 0 auto;width:100%}html .offset-lg-0,html[data-netbox-color-mode=dark] .offset-lg-0,html[data-netbox-color-mode=light] .offset-lg-0{margin-left:0}html .offset-lg-1,html[data-netbox-color-mode=dark] .offset-lg-1,html[data-netbox-color-mode=light] .offset-lg-1{margin-left:8.33333333%}html .offset-lg-2,html[data-netbox-color-mode=dark] .offset-lg-2,html[data-netbox-color-mode=light] .offset-lg-2{margin-left:16.66666667%}html .offset-lg-3,html[data-netbox-color-mode=dark] .offset-lg-3,html[data-netbox-color-mode=light] .offset-lg-3{margin-left:25%}html .offset-lg-4,html[data-netbox-color-mode=dark] .offset-lg-4,html[data-netbox-color-mode=light] .offset-lg-4{margin-left:33.33333333%}html .offset-lg-5,html[data-netbox-color-mode=dark] .offset-lg-5,html[data-netbox-color-mode=light] .offset-lg-5{margin-left:41.66666667%}html .offset-lg-6,html[data-netbox-color-mode=dark] .offset-lg-6,html[data-netbox-color-mode=light] .offset-lg-6{margin-left:50%}html .offset-lg-7,html[data-netbox-color-mode=dark] .offset-lg-7,html[data-netbox-color-mode=light] .offset-lg-7{margin-left:58.33333333%}html .offset-lg-8,html[data-netbox-color-mode=dark] .offset-lg-8,html[data-netbox-color-mode=light] .offset-lg-8{margin-left:66.66666667%}html .offset-lg-9,html[data-netbox-color-mode=dark] .offset-lg-9,html[data-netbox-color-mode=light] .offset-lg-9{margin-left:75%}html .offset-lg-10,html[data-netbox-color-mode=dark] .offset-lg-10,html[data-netbox-color-mode=light] .offset-lg-10{margin-left:83.33333333%}html .offset-lg-11,html[data-netbox-color-mode=dark] .offset-lg-11,html[data-netbox-color-mode=light] .offset-lg-11{margin-left:91.66666667%}html .g-lg-0,html .gx-lg-0,html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gx-lg-0,html[data-netbox-color-mode=light] .g-lg-0,html[data-netbox-color-mode=light] .gx-lg-0{--bs-gutter-x: 0}html .g-lg-0,html .gy-lg-0,html[data-netbox-color-mode=dark] .g-lg-0,html[data-netbox-color-mode=dark] .gy-lg-0,html[data-netbox-color-mode=light] .g-lg-0,html[data-netbox-color-mode=light] .gy-lg-0{--bs-gutter-y: 0}html .g-lg-1,html .gx-lg-1,html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gx-lg-1,html[data-netbox-color-mode=light] .g-lg-1,html[data-netbox-color-mode=light] .gx-lg-1{--bs-gutter-x: .25rem}html .g-lg-1,html .gy-lg-1,html[data-netbox-color-mode=dark] .g-lg-1,html[data-netbox-color-mode=dark] .gy-lg-1,html[data-netbox-color-mode=light] .g-lg-1,html[data-netbox-color-mode=light] .gy-lg-1{--bs-gutter-y: .25rem}html .g-lg-2,html .gx-lg-2,html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gx-lg-2,html[data-netbox-color-mode=light] .g-lg-2,html[data-netbox-color-mode=light] .gx-lg-2{--bs-gutter-x: .5rem}html .g-lg-2,html .gy-lg-2,html[data-netbox-color-mode=dark] .g-lg-2,html[data-netbox-color-mode=dark] .gy-lg-2,html[data-netbox-color-mode=light] .g-lg-2,html[data-netbox-color-mode=light] .gy-lg-2{--bs-gutter-y: .5rem}html .g-lg-3,html .gx-lg-3,html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gx-lg-3,html[data-netbox-color-mode=light] .g-lg-3,html[data-netbox-color-mode=light] .gx-lg-3{--bs-gutter-x: 1rem}html .g-lg-3,html .gy-lg-3,html[data-netbox-color-mode=dark] .g-lg-3,html[data-netbox-color-mode=dark] .gy-lg-3,html[data-netbox-color-mode=light] .g-lg-3,html[data-netbox-color-mode=light] .gy-lg-3{--bs-gutter-y: 1rem}html .g-lg-4,html .gx-lg-4,html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gx-lg-4,html[data-netbox-color-mode=light] .g-lg-4,html[data-netbox-color-mode=light] .gx-lg-4{--bs-gutter-x: 1.5rem}html .g-lg-4,html .gy-lg-4,html[data-netbox-color-mode=dark] .g-lg-4,html[data-netbox-color-mode=dark] .gy-lg-4,html[data-netbox-color-mode=light] .g-lg-4,html[data-netbox-color-mode=light] .gy-lg-4{--bs-gutter-y: 1.5rem}html .g-lg-5,html .gx-lg-5,html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gx-lg-5,html[data-netbox-color-mode=light] .g-lg-5,html[data-netbox-color-mode=light] .gx-lg-5{--bs-gutter-x: 3rem}html .g-lg-5,html .gy-lg-5,html[data-netbox-color-mode=dark] .g-lg-5,html[data-netbox-color-mode=dark] .gy-lg-5,html[data-netbox-color-mode=light] .g-lg-5,html[data-netbox-color-mode=light] .gy-lg-5{--bs-gutter-y: 3rem}}@media print and (min-width: 1200px){html .col-xl-auto,html[data-netbox-color-mode=dark] .col-xl-auto,html[data-netbox-color-mode=light] .col-xl-auto{flex:0 0 auto;width:auto}html .col-xl-1,html[data-netbox-color-mode=dark] .col-xl-1,html[data-netbox-color-mode=light] .col-xl-1{flex:0 0 auto;width:8.33333333%}html .col-xl-2,html[data-netbox-color-mode=dark] .col-xl-2,html[data-netbox-color-mode=light] .col-xl-2{flex:0 0 auto;width:16.66666667%}html .col-xl-3,html[data-netbox-color-mode=dark] .col-xl-3,html[data-netbox-color-mode=light] .col-xl-3{flex:0 0 auto;width:25%}html .col-xl-4,html[data-netbox-color-mode=dark] .col-xl-4,html[data-netbox-color-mode=light] .col-xl-4{flex:0 0 auto;width:33.33333333%}html .col-xl-5,html[data-netbox-color-mode=dark] .col-xl-5,html[data-netbox-color-mode=light] .col-xl-5{flex:0 0 auto;width:41.66666667%}html .col-xl-6,html[data-netbox-color-mode=dark] .col-xl-6,html[data-netbox-color-mode=light] .col-xl-6{flex:0 0 auto;width:50%}html .col-xl-7,html[data-netbox-color-mode=dark] .col-xl-7,html[data-netbox-color-mode=light] .col-xl-7{flex:0 0 auto;width:58.33333333%}html .col-xl-8,html[data-netbox-color-mode=dark] .col-xl-8,html[data-netbox-color-mode=light] .col-xl-8{flex:0 0 auto;width:66.66666667%}html .col-xl-9,html[data-netbox-color-mode=dark] .col-xl-9,html[data-netbox-color-mode=light] .col-xl-9{flex:0 0 auto;width:75%}html .col-xl-10,html[data-netbox-color-mode=dark] .col-xl-10,html[data-netbox-color-mode=light] .col-xl-10{flex:0 0 auto;width:83.33333333%}html .col-xl-11,html[data-netbox-color-mode=dark] .col-xl-11,html[data-netbox-color-mode=light] .col-xl-11{flex:0 0 auto;width:91.66666667%}html .col-xl-12,html[data-netbox-color-mode=dark] .col-xl-12,html[data-netbox-color-mode=light] .col-xl-12{flex:0 0 auto;width:100%}html .offset-xl-0,html[data-netbox-color-mode=dark] .offset-xl-0,html[data-netbox-color-mode=light] .offset-xl-0{margin-left:0}html .offset-xl-1,html[data-netbox-color-mode=dark] .offset-xl-1,html[data-netbox-color-mode=light] .offset-xl-1{margin-left:8.33333333%}html .offset-xl-2,html[data-netbox-color-mode=dark] .offset-xl-2,html[data-netbox-color-mode=light] .offset-xl-2{margin-left:16.66666667%}html .offset-xl-3,html[data-netbox-color-mode=dark] .offset-xl-3,html[data-netbox-color-mode=light] .offset-xl-3{margin-left:25%}html .offset-xl-4,html[data-netbox-color-mode=dark] .offset-xl-4,html[data-netbox-color-mode=light] .offset-xl-4{margin-left:33.33333333%}html .offset-xl-5,html[data-netbox-color-mode=dark] .offset-xl-5,html[data-netbox-color-mode=light] .offset-xl-5{margin-left:41.66666667%}html .offset-xl-6,html[data-netbox-color-mode=dark] .offset-xl-6,html[data-netbox-color-mode=light] .offset-xl-6{margin-left:50%}html .offset-xl-7,html[data-netbox-color-mode=dark] .offset-xl-7,html[data-netbox-color-mode=light] .offset-xl-7{margin-left:58.33333333%}html .offset-xl-8,html[data-netbox-color-mode=dark] .offset-xl-8,html[data-netbox-color-mode=light] .offset-xl-8{margin-left:66.66666667%}html .offset-xl-9,html[data-netbox-color-mode=dark] .offset-xl-9,html[data-netbox-color-mode=light] .offset-xl-9{margin-left:75%}html .offset-xl-10,html[data-netbox-color-mode=dark] .offset-xl-10,html[data-netbox-color-mode=light] .offset-xl-10{margin-left:83.33333333%}html .offset-xl-11,html[data-netbox-color-mode=dark] .offset-xl-11,html[data-netbox-color-mode=light] .offset-xl-11{margin-left:91.66666667%}html .g-xl-0,html .gx-xl-0,html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gx-xl-0,html[data-netbox-color-mode=light] .g-xl-0,html[data-netbox-color-mode=light] .gx-xl-0{--bs-gutter-x: 0}html .g-xl-0,html .gy-xl-0,html[data-netbox-color-mode=dark] .g-xl-0,html[data-netbox-color-mode=dark] .gy-xl-0,html[data-netbox-color-mode=light] .g-xl-0,html[data-netbox-color-mode=light] .gy-xl-0{--bs-gutter-y: 0}html .g-xl-1,html .gx-xl-1,html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gx-xl-1,html[data-netbox-color-mode=light] .g-xl-1,html[data-netbox-color-mode=light] .gx-xl-1{--bs-gutter-x: .25rem}html .g-xl-1,html .gy-xl-1,html[data-netbox-color-mode=dark] .g-xl-1,html[data-netbox-color-mode=dark] .gy-xl-1,html[data-netbox-color-mode=light] .g-xl-1,html[data-netbox-color-mode=light] .gy-xl-1{--bs-gutter-y: .25rem}html .g-xl-2,html .gx-xl-2,html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gx-xl-2,html[data-netbox-color-mode=light] .g-xl-2,html[data-netbox-color-mode=light] .gx-xl-2{--bs-gutter-x: .5rem}html .g-xl-2,html .gy-xl-2,html[data-netbox-color-mode=dark] .g-xl-2,html[data-netbox-color-mode=dark] .gy-xl-2,html[data-netbox-color-mode=light] .g-xl-2,html[data-netbox-color-mode=light] .gy-xl-2{--bs-gutter-y: .5rem}html .g-xl-3,html .gx-xl-3,html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gx-xl-3,html[data-netbox-color-mode=light] .g-xl-3,html[data-netbox-color-mode=light] .gx-xl-3{--bs-gutter-x: 1rem}html .g-xl-3,html .gy-xl-3,html[data-netbox-color-mode=dark] .g-xl-3,html[data-netbox-color-mode=dark] .gy-xl-3,html[data-netbox-color-mode=light] .g-xl-3,html[data-netbox-color-mode=light] .gy-xl-3{--bs-gutter-y: 1rem}html .g-xl-4,html .gx-xl-4,html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gx-xl-4,html[data-netbox-color-mode=light] .g-xl-4,html[data-netbox-color-mode=light] .gx-xl-4{--bs-gutter-x: 1.5rem}html .g-xl-4,html .gy-xl-4,html[data-netbox-color-mode=dark] .g-xl-4,html[data-netbox-color-mode=dark] .gy-xl-4,html[data-netbox-color-mode=light] .g-xl-4,html[data-netbox-color-mode=light] .gy-xl-4{--bs-gutter-y: 1.5rem}html .g-xl-5,html .gx-xl-5,html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gx-xl-5,html[data-netbox-color-mode=light] .g-xl-5,html[data-netbox-color-mode=light] .gx-xl-5{--bs-gutter-x: 3rem}html .g-xl-5,html .gy-xl-5,html[data-netbox-color-mode=dark] .g-xl-5,html[data-netbox-color-mode=dark] .gy-xl-5,html[data-netbox-color-mode=light] .g-xl-5,html[data-netbox-color-mode=light] .gy-xl-5{--bs-gutter-y: 3rem}}@media print and (min-width: 1400px){html .col-xxl-auto,html[data-netbox-color-mode=dark] .col-xxl-auto,html[data-netbox-color-mode=light] .col-xxl-auto{flex:0 0 auto;width:auto}html .col-xxl-1,html[data-netbox-color-mode=dark] .col-xxl-1,html[data-netbox-color-mode=light] .col-xxl-1{flex:0 0 auto;width:8.33333333%}html .col-xxl-2,html[data-netbox-color-mode=dark] .col-xxl-2,html[data-netbox-color-mode=light] .col-xxl-2{flex:0 0 auto;width:16.66666667%}html .col-xxl-3,html[data-netbox-color-mode=dark] .col-xxl-3,html[data-netbox-color-mode=light] .col-xxl-3{flex:0 0 auto;width:25%}html .col-xxl-4,html[data-netbox-color-mode=dark] .col-xxl-4,html[data-netbox-color-mode=light] .col-xxl-4{flex:0 0 auto;width:33.33333333%}html .col-xxl-5,html[data-netbox-color-mode=dark] .col-xxl-5,html[data-netbox-color-mode=light] .col-xxl-5{flex:0 0 auto;width:41.66666667%}html .col-xxl-6,html[data-netbox-color-mode=dark] .col-xxl-6,html[data-netbox-color-mode=light] .col-xxl-6{flex:0 0 auto;width:50%}html .col-xxl-7,html[data-netbox-color-mode=dark] .col-xxl-7,html[data-netbox-color-mode=light] .col-xxl-7{flex:0 0 auto;width:58.33333333%}html .col-xxl-8,html[data-netbox-color-mode=dark] .col-xxl-8,html[data-netbox-color-mode=light] .col-xxl-8{flex:0 0 auto;width:66.66666667%}html .col-xxl-9,html[data-netbox-color-mode=dark] .col-xxl-9,html[data-netbox-color-mode=light] .col-xxl-9{flex:0 0 auto;width:75%}html .col-xxl-10,html[data-netbox-color-mode=dark] .col-xxl-10,html[data-netbox-color-mode=light] .col-xxl-10{flex:0 0 auto;width:83.33333333%}html .col-xxl-11,html[data-netbox-color-mode=dark] .col-xxl-11,html[data-netbox-color-mode=light] .col-xxl-11{flex:0 0 auto;width:91.66666667%}html .col-xxl-12,html[data-netbox-color-mode=dark] .col-xxl-12,html[data-netbox-color-mode=light] .col-xxl-12{flex:0 0 auto;width:100%}html .offset-xxl-0,html[data-netbox-color-mode=dark] .offset-xxl-0,html[data-netbox-color-mode=light] .offset-xxl-0{margin-left:0}html .offset-xxl-1,html[data-netbox-color-mode=dark] .offset-xxl-1,html[data-netbox-color-mode=light] .offset-xxl-1{margin-left:8.33333333%}html .offset-xxl-2,html[data-netbox-color-mode=dark] .offset-xxl-2,html[data-netbox-color-mode=light] .offset-xxl-2{margin-left:16.66666667%}html .offset-xxl-3,html[data-netbox-color-mode=dark] .offset-xxl-3,html[data-netbox-color-mode=light] .offset-xxl-3{margin-left:25%}html .offset-xxl-4,html[data-netbox-color-mode=dark] .offset-xxl-4,html[data-netbox-color-mode=light] .offset-xxl-4{margin-left:33.33333333%}html .offset-xxl-5,html[data-netbox-color-mode=dark] .offset-xxl-5,html[data-netbox-color-mode=light] .offset-xxl-5{margin-left:41.66666667%}html .offset-xxl-6,html[data-netbox-color-mode=dark] .offset-xxl-6,html[data-netbox-color-mode=light] .offset-xxl-6{margin-left:50%}html .offset-xxl-7,html[data-netbox-color-mode=dark] .offset-xxl-7,html[data-netbox-color-mode=light] .offset-xxl-7{margin-left:58.33333333%}html .offset-xxl-8,html[data-netbox-color-mode=dark] .offset-xxl-8,html[data-netbox-color-mode=light] .offset-xxl-8{margin-left:66.66666667%}html .offset-xxl-9,html[data-netbox-color-mode=dark] .offset-xxl-9,html[data-netbox-color-mode=light] .offset-xxl-9{margin-left:75%}html .offset-xxl-10,html[data-netbox-color-mode=dark] .offset-xxl-10,html[data-netbox-color-mode=light] .offset-xxl-10{margin-left:83.33333333%}html .offset-xxl-11,html[data-netbox-color-mode=dark] .offset-xxl-11,html[data-netbox-color-mode=light] .offset-xxl-11{margin-left:91.66666667%}html .g-xxl-0,html .gx-xxl-0,html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gx-xxl-0,html[data-netbox-color-mode=light] .g-xxl-0,html[data-netbox-color-mode=light] .gx-xxl-0{--bs-gutter-x: 0}html .g-xxl-0,html .gy-xxl-0,html[data-netbox-color-mode=dark] .g-xxl-0,html[data-netbox-color-mode=dark] .gy-xxl-0,html[data-netbox-color-mode=light] .g-xxl-0,html[data-netbox-color-mode=light] .gy-xxl-0{--bs-gutter-y: 0}html .g-xxl-1,html .gx-xxl-1,html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gx-xxl-1,html[data-netbox-color-mode=light] .g-xxl-1,html[data-netbox-color-mode=light] .gx-xxl-1{--bs-gutter-x: .25rem}html .g-xxl-1,html .gy-xxl-1,html[data-netbox-color-mode=dark] .g-xxl-1,html[data-netbox-color-mode=dark] .gy-xxl-1,html[data-netbox-color-mode=light] .g-xxl-1,html[data-netbox-color-mode=light] .gy-xxl-1{--bs-gutter-y: .25rem}html .g-xxl-2,html .gx-xxl-2,html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gx-xxl-2,html[data-netbox-color-mode=light] .g-xxl-2,html[data-netbox-color-mode=light] .gx-xxl-2{--bs-gutter-x: .5rem}html .g-xxl-2,html .gy-xxl-2,html[data-netbox-color-mode=dark] .g-xxl-2,html[data-netbox-color-mode=dark] .gy-xxl-2,html[data-netbox-color-mode=light] .g-xxl-2,html[data-netbox-color-mode=light] .gy-xxl-2{--bs-gutter-y: .5rem}html .g-xxl-3,html .gx-xxl-3,html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gx-xxl-3,html[data-netbox-color-mode=light] .g-xxl-3,html[data-netbox-color-mode=light] .gx-xxl-3{--bs-gutter-x: 1rem}html .g-xxl-3,html .gy-xxl-3,html[data-netbox-color-mode=dark] .g-xxl-3,html[data-netbox-color-mode=dark] .gy-xxl-3,html[data-netbox-color-mode=light] .g-xxl-3,html[data-netbox-color-mode=light] .gy-xxl-3{--bs-gutter-y: 1rem}html .g-xxl-4,html .gx-xxl-4,html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gx-xxl-4,html[data-netbox-color-mode=light] .g-xxl-4,html[data-netbox-color-mode=light] .gx-xxl-4{--bs-gutter-x: 1.5rem}html .g-xxl-4,html .gy-xxl-4,html[data-netbox-color-mode=dark] .g-xxl-4,html[data-netbox-color-mode=dark] .gy-xxl-4,html[data-netbox-color-mode=light] .g-xxl-4,html[data-netbox-color-mode=light] .gy-xxl-4{--bs-gutter-y: 1.5rem}html .g-xxl-5,html .gx-xxl-5,html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gx-xxl-5,html[data-netbox-color-mode=light] .g-xxl-5,html[data-netbox-color-mode=light] .gx-xxl-5{--bs-gutter-x: 3rem}html .g-xxl-5,html .gy-xxl-5,html[data-netbox-color-mode=dark] .g-xxl-5,html[data-netbox-color-mode=dark] .gy-xxl-5,html[data-netbox-color-mode=light] .g-xxl-5,html[data-netbox-color-mode=light] .gy-xxl-5{--bs-gutter-y: 3rem}}@media print{html .table,html[data-netbox-color-mode=dark] .table,html[data-netbox-color-mode=light] .table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, .05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, .1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, .075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}html .table>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table>:not(caption)>*>*,html[data-netbox-color-mode=light] .table>:not(caption)>*>*{padding:.5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}html .table>tbody,html[data-netbox-color-mode=dark] .table>tbody,html[data-netbox-color-mode=light] .table>tbody{vertical-align:inherit}html .table>thead,html[data-netbox-color-mode=dark] .table>thead,html[data-netbox-color-mode=light] .table>thead{vertical-align:bottom}html .table>:not(:last-child)>:last-child>*,html[data-netbox-color-mode=dark] .table>:not(:last-child)>:last-child>*,html[data-netbox-color-mode=light] .table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}}@media print{html .caption-top,html[data-netbox-color-mode=dark] .caption-top,html[data-netbox-color-mode=light] .caption-top{caption-side:top}}@media print{html .table-sm>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-sm>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-sm>:not(caption)>*>*{padding:.25rem}}@media print{html .table-bordered>:not(caption)>*,html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*,html[data-netbox-color-mode=light] .table-bordered>:not(caption)>*{border-width:1px 0}html .table-bordered>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-bordered>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-bordered>:not(caption)>*>*{border-width:0 1px}}@media print{html .table-borderless>:not(caption)>*>*,html[data-netbox-color-mode=dark] .table-borderless>:not(caption)>*>*,html[data-netbox-color-mode=light] .table-borderless>:not(caption)>*>*{border-bottom-width:0}}@media print{html .table-striped>tbody>tr:nth-of-type(odd),html[data-netbox-color-mode=dark] .table-striped>tbody>tr:nth-of-type(odd),html[data-netbox-color-mode=light] .table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}}@media print{html .table-active,html[data-netbox-color-mode=dark] .table-active,html[data-netbox-color-mode=light] .table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}}@media print{html .table-hover>tbody>tr:hover,html[data-netbox-color-mode=dark] .table-hover>tbody>tr:hover,html[data-netbox-color-mode=light] .table-hover>tbody>tr:hover{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}}@media print{html .table-primary,html[data-netbox-color-mode=dark] .table-primary,html[data-netbox-color-mode=light] .table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}}@media print{html .table-secondary,html[data-netbox-color-mode=dark] .table-secondary,html[data-netbox-color-mode=light] .table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}}@media print{html .table-success,html[data-netbox-color-mode=dark] .table-success,html[data-netbox-color-mode=light] .table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}}@media print{html .table-info,html[data-netbox-color-mode=dark] .table-info,html[data-netbox-color-mode=light] .table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}}@media print{html .table-warning,html[data-netbox-color-mode=dark] .table-warning,html[data-netbox-color-mode=light] .table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}}@media print{html .table-danger,html[data-netbox-color-mode=dark] .table-danger,html[data-netbox-color-mode=light] .table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}}@media print{html .table-light,html[data-netbox-color-mode=dark] .table-light,html[data-netbox-color-mode=light] .table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}}@media print{html .table-dark,html[data-netbox-color-mode=dark] .table-dark,html[data-netbox-color-mode=light] .table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #fff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #fff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #fff;color:#fff;border-color:#373b3e}}@media print{html .table-responsive,html[data-netbox-color-mode=dark] .table-responsive,html[data-netbox-color-mode=light] .table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 575.98px){html .table-responsive-sm,html[data-netbox-color-mode=dark] .table-responsive-sm,html[data-netbox-color-mode=light] .table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 767.98px){html .table-responsive-md,html[data-netbox-color-mode=dark] .table-responsive-md,html[data-netbox-color-mode=light] .table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 991.98px){html .table-responsive-lg,html[data-netbox-color-mode=dark] .table-responsive-lg,html[data-netbox-color-mode=light] .table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 1199.98px){html .table-responsive-xl,html[data-netbox-color-mode=dark] .table-responsive-xl,html[data-netbox-color-mode=light] .table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print and (max-width: 1399.98px){html .table-responsive-xxl,html[data-netbox-color-mode=dark] .table-responsive-xxl,html[data-netbox-color-mode=light] .table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media print{html .form-label,html[data-netbox-color-mode=dark] .form-label,html[data-netbox-color-mode=light] .form-label{margin-bottom:.5rem}}@media print{html .col-form-label,html[data-netbox-color-mode=dark] .col-form-label,html[data-netbox-color-mode=light] .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}}@media print{html .col-form-label-lg,html[data-netbox-color-mode=dark] .col-form-label-lg,html[data-netbox-color-mode=light] .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}}@media print{html .col-form-label-sm,html[data-netbox-color-mode=dark] .col-form-label-sm,html[data-netbox-color-mode=light] .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}}@media print{html .form-text,html[data-netbox-color-mode=dark] .form-text,html[data-netbox-color-mode=light] .form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}}@media print{html .form-control,html[data-netbox-color-mode=dark] .form-control,html[data-netbox-color-mode=light] .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #e9ecef;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control,html[data-netbox-color-mode=dark] .form-control,html[data-netbox-color-mode=light] .form-control{transition:none}}@media print{html .form-control[type=file],html[data-netbox-color-mode=dark] .form-control[type=file],html[data-netbox-color-mode=light] .form-control[type=file]{overflow:hidden}html .form-control[type=file]:not(:disabled):not([readonly]),html[data-netbox-color-mode=dark] .form-control[type=file]:not(:disabled):not([readonly]),html[data-netbox-color-mode=light] .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}}@media print{html .form-control:focus,html[data-netbox-color-mode=dark] .form-control:focus,html[data-netbox-color-mode=light] .form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .form-control::-webkit-date-and-time-value,html[data-netbox-color-mode=dark] .form-control::-webkit-date-and-time-value,html[data-netbox-color-mode=light] .form-control::-webkit-date-and-time-value{height:1.5em}}@media print{html .form-control::placeholder,html[data-netbox-color-mode=dark] .form-control::placeholder,html[data-netbox-color-mode=light] .form-control::placeholder{color:#adb5bd;opacity:1}}@media print{html .form-control:disabled,html .form-control[readonly],html[data-netbox-color-mode=dark] .form-control:disabled,html[data-netbox-color-mode=dark] .form-control[readonly],html[data-netbox-color-mode=light] .form-control:disabled,html[data-netbox-color-mode=light] .form-control[readonly]{background-color:#e9ecef;opacity:1}}@media print{html .form-control::file-selector-button,html[data-netbox-color-mode=dark] .form-control::file-selector-button,html[data-netbox-color-mode=light] .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control::file-selector-button,html[data-netbox-color-mode=dark] .form-control::file-selector-button,html[data-netbox-color-mode=light] .form-control::file-selector-button{transition:none}}@media print{html .form-control:hover:not(:disabled):not([readonly])::file-selector-button,html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::file-selector-button,html[data-netbox-color-mode=light] .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}}@media print{html .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control::-webkit-file-upload-button{transition:none}}@media print{html .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}}@media print{html .form-control-plaintext,html[data-netbox-color-mode=dark] .form-control-plaintext,html[data-netbox-color-mode=light] .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}html .form-control-plaintext.form-control-sm,html .form-control-plaintext.form-control-lg,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=dark] .form-control-plaintext.form-control-lg,html[data-netbox-color-mode=light] .form-control-plaintext.form-control-sm,html[data-netbox-color-mode=light] .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}}@media print{html .form-control-sm,html[data-netbox-color-mode=dark] .form-control-sm,html[data-netbox-color-mode=light] .form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}html .form-control-sm::file-selector-button,html[data-netbox-color-mode=dark] .form-control-sm::file-selector-button,html[data-netbox-color-mode=light] .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}html .form-control-sm::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control-sm::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}}@media print{html .form-control-lg,html[data-netbox-color-mode=dark] .form-control-lg,html[data-netbox-color-mode=light] .form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}html .form-control-lg::file-selector-button,html[data-netbox-color-mode=dark] .form-control-lg::file-selector-button,html[data-netbox-color-mode=light] .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}html .form-control-lg::-webkit-file-upload-button,html[data-netbox-color-mode=dark] .form-control-lg::-webkit-file-upload-button,html[data-netbox-color-mode=light] .form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}}@media print{html textarea.form-control,html[data-netbox-color-mode=dark] textarea.form-control,html[data-netbox-color-mode=light] textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}html textarea.form-control-sm,html[data-netbox-color-mode=dark] textarea.form-control-sm,html[data-netbox-color-mode=light] textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}html textarea.form-control-lg,html[data-netbox-color-mode=dark] textarea.form-control-lg,html[data-netbox-color-mode=light] textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}}@media print{html .form-control-color,html[data-netbox-color-mode=dark] .form-control-color,html[data-netbox-color-mode=light] .form-control-color{max-width:3rem;height:auto;padding:.375rem}html .form-control-color:not(:disabled):not([readonly]),html[data-netbox-color-mode=dark] .form-control-color:not(:disabled):not([readonly]),html[data-netbox-color-mode=light] .form-control-color:not(:disabled):not([readonly]){cursor:pointer}html .form-control-color::-moz-color-swatch,html[data-netbox-color-mode=dark] .form-control-color::-moz-color-swatch,html[data-netbox-color-mode=light] .form-control-color::-moz-color-swatch{height:1.5em;border-radius:.375rem}html .form-control-color::-webkit-color-swatch,html[data-netbox-color-mode=dark] .form-control-color::-webkit-color-swatch,html[data-netbox-color-mode=light] .form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.375rem}}@media print{html .form-select,html[data-netbox-color-mode=dark] .form-select,html[data-netbox-color-mode=light] .form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-select,html[data-netbox-color-mode=dark] .form-select,html[data-netbox-color-mode=light] .form-select{transition:none}}@media print{html .form-select:focus,html[data-netbox-color-mode=dark] .form-select:focus,html[data-netbox-color-mode=light] .form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .form-select[multiple],html .form-select[size]:not([size="1"]),html[data-netbox-color-mode=dark] .form-select[multiple],html[data-netbox-color-mode=dark] .form-select[size]:not([size="1"]),html[data-netbox-color-mode=light] .form-select[multiple],html[data-netbox-color-mode=light] .form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}}@media print{html .form-select:disabled,html[data-netbox-color-mode=dark] .form-select:disabled,html[data-netbox-color-mode=light] .form-select:disabled{color:#6c757d;background-color:#e9ecef}}@media print{html .form-select:-moz-focusring,html[data-netbox-color-mode=dark] .form-select:-moz-focusring,html[data-netbox-color-mode=light] .form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}}@media print{html .form-select-sm,html[data-netbox-color-mode=dark] .form-select-sm,html[data-netbox-color-mode=light] .form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}}@media print{html .form-select-lg,html[data-netbox-color-mode=dark] .form-select-lg,html[data-netbox-color-mode=light] .form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}}@media print{html .form-check,html[data-netbox-color-mode=dark] .form-check,html[data-netbox-color-mode=light] .form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}html .form-check .form-check-input,html[data-netbox-color-mode=dark] .form-check .form-check-input,html[data-netbox-color-mode=light] .form-check .form-check-input{float:left;margin-left:-1.5em}}@media print{html .form-check-input,html[data-netbox-color-mode=dark] .form-check-input,html[data-netbox-color-mode=light] .form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact}html .form-check-input[type=checkbox],html[data-netbox-color-mode=dark] .form-check-input[type=checkbox],html[data-netbox-color-mode=light] .form-check-input[type=checkbox]{border-radius:.25em}html .form-check-input[type=radio],html[data-netbox-color-mode=dark] .form-check-input[type=radio],html[data-netbox-color-mode=light] .form-check-input[type=radio]{border-radius:50%}html .form-check-input:active,html[data-netbox-color-mode=dark] .form-check-input:active,html[data-netbox-color-mode=light] .form-check-input:active{filter:brightness(90%)}html .form-check-input:focus,html[data-netbox-color-mode=dark] .form-check-input:focus,html[data-netbox-color-mode=light] .form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}html .form-check-input:checked,html[data-netbox-color-mode=dark] .form-check-input:checked,html[data-netbox-color-mode=light] .form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}html .form-check-input:checked[type=checkbox],html[data-netbox-color-mode=dark] .form-check-input:checked[type=checkbox],html[data-netbox-color-mode=light] .form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}html .form-check-input:checked[type=radio],html[data-netbox-color-mode=dark] .form-check-input:checked[type=radio],html[data-netbox-color-mode=light] .form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}html .form-check-input[type=checkbox]:indeterminate,html[data-netbox-color-mode=dark] .form-check-input[type=checkbox]:indeterminate,html[data-netbox-color-mode=light] .form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}html .form-check-input:disabled,html[data-netbox-color-mode=dark] .form-check-input:disabled,html[data-netbox-color-mode=light] .form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}html .form-check-input[disabled]~.form-check-label,html .form-check-input:disabled~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input:disabled~.form-check-label,html[data-netbox-color-mode=light] .form-check-input[disabled]~.form-check-label,html[data-netbox-color-mode=light] .form-check-input:disabled~.form-check-label{opacity:.5}}@media print{html .form-switch,html[data-netbox-color-mode=dark] .form-switch,html[data-netbox-color-mode=light] .form-switch{padding-left:2.5em}html .form-switch .form-check-input,html[data-netbox-color-mode=dark] .form-switch .form-check-input,html[data-netbox-color-mode=light] .form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-switch .form-check-input,html[data-netbox-color-mode=dark] .form-switch .form-check-input,html[data-netbox-color-mode=light] .form-switch .form-check-input{transition:none}}@media print{html .form-switch .form-check-input:focus,html[data-netbox-color-mode=dark] .form-switch .form-check-input:focus,html[data-netbox-color-mode=light] .form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}}@media print{html .form-switch .form-check-input:checked,html[data-netbox-color-mode=dark] .form-switch .form-check-input:checked,html[data-netbox-color-mode=light] .form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}}@media print{html .form-check-inline,html[data-netbox-color-mode=dark] .form-check-inline,html[data-netbox-color-mode=light] .form-check-inline{display:inline-block;margin-right:1rem}}@media print{html .btn-check,html[data-netbox-color-mode=dark] .btn-check,html[data-netbox-color-mode=light] .btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html .btn-check[disabled]+.btn,html .btn-check:disabled+.btn,html[data-netbox-color-mode=dark] .btn-check[disabled]+.btn,html[data-netbox-color-mode=dark] .btn-check:disabled+.btn,html[data-netbox-color-mode=light] .btn-check[disabled]+.btn,html[data-netbox-color-mode=light] .btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}}@media print{html .form-range,html[data-netbox-color-mode=dark] .form-range,html[data-netbox-color-mode=light] .form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}html .form-range:focus,html[data-netbox-color-mode=dark] .form-range:focus,html[data-netbox-color-mode=light] .form-range:focus{outline:0}html .form-range:focus::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range:focus::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}html .form-range:focus::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range:focus::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem #0d6efd40}html .form-range::-moz-focus-outer,html[data-netbox-color-mode=dark] .form-range::-moz-focus-outer,html[data-netbox-color-mode=light] .form-range::-moz-focus-outer{border:0}html .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb{transition:none}}@media print{html .form-range::-webkit-slider-thumb:active,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-thumb:active,html[data-netbox-color-mode=light] .form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}}@media print{html .form-range::-webkit-slider-runnable-track,html[data-netbox-color-mode=dark] .form-range::-webkit-slider-runnable-track,html[data-netbox-color-mode=light] .form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}}@media print{html .form-range::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}}@media print and (prefers-reduced-motion: reduce){html .form-range::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb{transition:none}}@media print{html .form-range::-moz-range-thumb:active,html[data-netbox-color-mode=dark] .form-range::-moz-range-thumb:active,html[data-netbox-color-mode=light] .form-range::-moz-range-thumb:active{background-color:#b6d4fe}}@media print{html .form-range::-moz-range-track,html[data-netbox-color-mode=dark] .form-range::-moz-range-track,html[data-netbox-color-mode=light] .form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}}@media print{html .form-range:disabled,html[data-netbox-color-mode=dark] .form-range:disabled,html[data-netbox-color-mode=light] .form-range:disabled{pointer-events:none}html .form-range:disabled::-webkit-slider-thumb,html[data-netbox-color-mode=dark] .form-range:disabled::-webkit-slider-thumb,html[data-netbox-color-mode=light] .form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html .form-range:disabled::-moz-range-thumb,html[data-netbox-color-mode=dark] .form-range:disabled::-moz-range-thumb,html[data-netbox-color-mode=light] .form-range:disabled::-moz-range-thumb{background-color:#adb5bd}}@media print{html .form-floating,html[data-netbox-color-mode=dark] .form-floating,html[data-netbox-color-mode=light] .form-floating{position:relative}html .form-floating>.form-control,html .form-floating>.form-select,html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-select,html[data-netbox-color-mode=light] .form-floating>.form-control,html[data-netbox-color-mode=light] .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}html .form-floating>label,html[data-netbox-color-mode=dark] .form-floating>label,html[data-netbox-color-mode=light] .form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-floating>label,html[data-netbox-color-mode=dark] .form-floating>label,html[data-netbox-color-mode=light] .form-floating>label{transition:none}}@media print{html .form-floating>.form-control,html[data-netbox-color-mode=dark] .form-floating>.form-control,html[data-netbox-color-mode=light] .form-floating>.form-control{padding:1rem .75rem}html .form-floating>.form-control::placeholder,html[data-netbox-color-mode=dark] .form-floating>.form-control::placeholder,html[data-netbox-color-mode=light] .form-floating>.form-control::placeholder{color:transparent}html .form-floating>.form-control:focus,html .form-floating>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=dark] .form-floating>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=light] .form-floating>.form-control:focus,html[data-netbox-color-mode=light] .form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}html .form-floating>.form-control:-webkit-autofill,html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill,html[data-netbox-color-mode=light] .form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.form-select,html[data-netbox-color-mode=dark] .form-floating>.form-select,html[data-netbox-color-mode=light] .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.form-control:focus~label,html .form-floating>.form-control:not(:placeholder-shown)~label,html .form-floating>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.form-select~label,html[data-netbox-color-mode=light] .form-floating>.form-control:focus~label,html[data-netbox-color-mode=light] .form-floating>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=light] .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .form-floating>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=dark] .form-floating>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=light] .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .input-group,html[data-netbox-color-mode=dark] .input-group,html[data-netbox-color-mode=light] .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html .input-group>.form-control,html .input-group>.form-select,html[data-netbox-color-mode=dark] .input-group>.form-control,html[data-netbox-color-mode=dark] .input-group>.form-select,html[data-netbox-color-mode=light] .input-group>.form-control,html[data-netbox-color-mode=light] .input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}html .input-group>.form-control:focus,html .input-group>.form-select:focus,html[data-netbox-color-mode=dark] .input-group>.form-control:focus,html[data-netbox-color-mode=dark] .input-group>.form-select:focus,html[data-netbox-color-mode=light] .input-group>.form-control:focus,html[data-netbox-color-mode=light] .input-group>.form-select:focus{z-index:3}html .input-group .btn,html[data-netbox-color-mode=dark] .input-group .btn,html[data-netbox-color-mode=light] .input-group .btn{position:relative;z-index:2}html .input-group .btn:focus,html[data-netbox-color-mode=dark] .input-group .btn:focus,html[data-netbox-color-mode=light] .input-group .btn:focus{z-index:3}}@media print{html .input-group-text,html[data-netbox-color-mode=dark] .input-group-text,html[data-netbox-color-mode=light] .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}}@media print{html .input-group-lg>.form-control,html .input-group-lg>.form-select,html .input-group-lg>.input-group-text,html .input-group-lg>.btn,html[data-netbox-color-mode=dark] .input-group-lg>.form-control,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.input-group-text,html[data-netbox-color-mode=dark] .input-group-lg>.btn,html[data-netbox-color-mode=light] .input-group-lg>.form-control,html[data-netbox-color-mode=light] .input-group-lg>.form-select,html[data-netbox-color-mode=light] .input-group-lg>.input-group-text,html[data-netbox-color-mode=light] .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}}@media print{html .input-group-sm>.form-control,html .input-group-sm>.form-select,html .input-group-sm>.input-group-text,html .input-group-sm>.btn,html[data-netbox-color-mode=dark] .input-group-sm>.form-control,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.input-group-text,html[data-netbox-color-mode=dark] .input-group-sm>.btn,html[data-netbox-color-mode=light] .input-group-sm>.form-control,html[data-netbox-color-mode=light] .input-group-sm>.form-select,html[data-netbox-color-mode=light] .input-group-sm>.input-group-text,html[data-netbox-color-mode=light] .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html .input-group-lg>.form-select,html .input-group-sm>.form-select,html[data-netbox-color-mode=dark] .input-group-lg>.form-select,html[data-netbox-color-mode=dark] .input-group-sm>.form-select,html[data-netbox-color-mode=light] .input-group-lg>.form-select,html[data-netbox-color-mode=light] .input-group-sm>.form-select{padding-right:3rem}}@media print{html .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),html[data-netbox-color-mode=light] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=light] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}html .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),html[data-netbox-color-mode=dark] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=dark] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),html[data-netbox-color-mode=light] .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),html[data-netbox-color-mode=light] .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}html .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),html[data-netbox-color-mode=dark] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),html[data-netbox-color-mode=light] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}}@media print{html .valid-feedback,html[data-netbox-color-mode=dark] .valid-feedback,html[data-netbox-color-mode=light] .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}}@media print{html .valid-tooltip,html[data-netbox-color-mode=dark] .valid-tooltip,html[data-netbox-color-mode=light] .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}}@media print{.was-validated html:valid~.valid-feedback,.was-validated html:valid~.valid-tooltip,html.is-valid~.valid-feedback,html.is-valid~.valid-tooltip,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=dark]:valid~.valid-tooltip,html[data-netbox-color-mode=dark].is-valid~.valid-feedback,html[data-netbox-color-mode=dark].is-valid~.valid-tooltip,.was-validated html[data-netbox-color-mode=light]:valid~.valid-feedback,.was-validated html[data-netbox-color-mode=light]:valid~.valid-tooltip,html[data-netbox-color-mode=light].is-valid~.valid-feedback,html[data-netbox-color-mode=light].is-valid~.valid-tooltip{display:block}}@media print{.was-validated html .form-control:valid,html .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-control:valid,html[data-netbox-color-mode=dark] .form-control.is-valid,.was-validated html[data-netbox-color-mode=light] .form-control:valid,html[data-netbox-color-mode=light] .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-control:valid:focus,html .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-control:valid:focus,html[data-netbox-color-mode=dark] .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-control:valid:focus,html[data-netbox-color-mode=light] .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}}@media print{.was-validated html textarea.form-control:valid,html textarea.form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] textarea.form-control:valid,html[data-netbox-color-mode=dark] textarea.form-control.is-valid,.was-validated html[data-netbox-color-mode=light] textarea.form-control:valid,html[data-netbox-color-mode=light] textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}}@media print{.was-validated html .form-select:valid,html .form-select.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-select:valid,html[data-netbox-color-mode=dark] .form-select.is-valid,.was-validated html[data-netbox-color-mode=light] .form-select:valid,html[data-netbox-color-mode=light] .form-select.is-valid{border-color:#198754}.was-validated html .form-select:valid:not([multiple]):not([size]),.was-validated html .form-select:valid:not([multiple])[size="1"],html .form-select.is-valid:not([multiple]):not([size]),html .form-select.is-valid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-valid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=light] .form-select:valid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=light] .form-select:valid:not([multiple])[size="1"],html[data-netbox-color-mode=light] .form-select.is-valid:not([multiple]):not([size]),html[data-netbox-color-mode=light] .form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-select:valid:focus,html .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-select:valid:focus,html[data-netbox-color-mode=dark] .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-select:valid:focus,html[data-netbox-color-mode=light] .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}}@media print{.was-validated html .form-check-input:valid,html .form-check-input.is-valid,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid,html[data-netbox-color-mode=dark] .form-check-input.is-valid,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid,html[data-netbox-color-mode=light] .form-check-input.is-valid{border-color:#198754}.was-validated html .form-check-input:valid:checked,html .form-check-input.is-valid:checked,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-valid:checked,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid:checked,html[data-netbox-color-mode=light] .form-check-input.is-valid:checked{background-color:#198754}.was-validated html .form-check-input:valid:focus,html .form-check-input.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid:focus,html[data-netbox-color-mode=light] .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated html .form-check-input:valid~.form-check-label,html .form-check-input.is-valid~.form-check-label,.was-validated html[data-netbox-color-mode=dark] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-valid~.form-check-label,.was-validated html[data-netbox-color-mode=light] .form-check-input:valid~.form-check-label,html[data-netbox-color-mode=light] .form-check-input.is-valid~.form-check-label{color:#198754}}@media print{html .form-check-inline .form-check-input~.valid-feedback,html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.valid-feedback,html[data-netbox-color-mode=light] .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}}@media print{.was-validated html .input-group .form-control:valid,html .input-group .form-control.is-valid,.was-validated html .input-group .form-select:valid,html .input-group .form-select.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:valid,html[data-netbox-color-mode=light] .input-group .form-control.is-valid,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:valid,html[data-netbox-color-mode=light] .input-group .form-select.is-valid{z-index:1}.was-validated html .input-group .form-control:valid:focus,html .input-group .form-control.is-valid:focus,.was-validated html .input-group .form-select:valid:focus,html .input-group .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:valid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:valid:focus,html[data-netbox-color-mode=light] .input-group .form-control.is-valid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:valid:focus,html[data-netbox-color-mode=light] .input-group .form-select.is-valid:focus{z-index:3}}@media print{html .invalid-feedback,html[data-netbox-color-mode=dark] .invalid-feedback,html[data-netbox-color-mode=light] .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}}@media print{html .invalid-tooltip,html[data-netbox-color-mode=dark] .invalid-tooltip,html[data-netbox-color-mode=light] .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}}@media print{.was-validated html:invalid~.invalid-feedback,.was-validated html:invalid~.invalid-tooltip,html.is-invalid~.invalid-feedback,html.is-invalid~.invalid-tooltip,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=dark]:invalid~.invalid-tooltip,html[data-netbox-color-mode=dark].is-invalid~.invalid-feedback,html[data-netbox-color-mode=dark].is-invalid~.invalid-tooltip,.was-validated html[data-netbox-color-mode=light]:invalid~.invalid-feedback,.was-validated html[data-netbox-color-mode=light]:invalid~.invalid-tooltip,html[data-netbox-color-mode=light].is-invalid~.invalid-feedback,html[data-netbox-color-mode=light].is-invalid~.invalid-tooltip{display:block}}@media print{.was-validated html .form-control:invalid,html .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-control:invalid,html[data-netbox-color-mode=dark] .form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-control:invalid,html[data-netbox-color-mode=light] .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-control:invalid:focus,html .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-control:invalid:focus,html[data-netbox-color-mode=dark] .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-control:invalid:focus,html[data-netbox-color-mode=light] .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}}@media print{.was-validated html textarea.form-control:invalid,html textarea.form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] textarea.form-control:invalid,html[data-netbox-color-mode=dark] textarea.form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] textarea.form-control:invalid,html[data-netbox-color-mode=light] textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}}@media print{.was-validated html .form-select:invalid,html .form-select.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-select:invalid,html[data-netbox-color-mode=dark] .form-select.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-select:invalid,html[data-netbox-color-mode=light] .form-select.is-invalid{border-color:#dc3545}.was-validated html .form-select:invalid:not([multiple]):not([size]),.was-validated html .form-select:invalid:not([multiple])[size="1"],html .form-select.is-invalid:not([multiple]):not([size]),html .form-select.is-invalid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=dark] .form-select.is-invalid:not([multiple])[size="1"],.was-validated html[data-netbox-color-mode=light] .form-select:invalid:not([multiple]):not([size]),.was-validated html[data-netbox-color-mode=light] .form-select:invalid:not([multiple])[size="1"],html[data-netbox-color-mode=light] .form-select.is-invalid:not([multiple]):not([size]),html[data-netbox-color-mode=light] .form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated html .form-select:invalid:focus,html .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-select:invalid:focus,html[data-netbox-color-mode=dark] .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-select:invalid:focus,html[data-netbox-color-mode=light] .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}}@media print{.was-validated html .form-check-input:invalid,html .form-check-input.is-invalid,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid,html[data-netbox-color-mode=dark] .form-check-input.is-invalid,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid,html[data-netbox-color-mode=light] .form-check-input.is-invalid{border-color:#dc3545}.was-validated html .form-check-input:invalid:checked,html .form-check-input.is-invalid:checked,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:checked,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:checked,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid:checked,html[data-netbox-color-mode=light] .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated html .form-check-input:invalid:focus,html .form-check-input.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid:focus,html[data-netbox-color-mode=dark] .form-check-input.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid:focus,html[data-netbox-color-mode=light] .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated html .form-check-input:invalid~.form-check-label,html .form-check-input.is-invalid~.form-check-label,.was-validated html[data-netbox-color-mode=dark] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=dark] .form-check-input.is-invalid~.form-check-label,.was-validated html[data-netbox-color-mode=light] .form-check-input:invalid~.form-check-label,html[data-netbox-color-mode=light] .form-check-input.is-invalid~.form-check-label{color:#dc3545}}@media print{html .form-check-inline .form-check-input~.invalid-feedback,html[data-netbox-color-mode=dark] .form-check-inline .form-check-input~.invalid-feedback,html[data-netbox-color-mode=light] .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}}@media print{.was-validated html .input-group .form-control:invalid,html .input-group .form-control.is-invalid,.was-validated html .input-group .form-select:invalid,html .input-group .form-select.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:invalid,html[data-netbox-color-mode=light] .input-group .form-control.is-invalid,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:invalid,html[data-netbox-color-mode=light] .input-group .form-select.is-invalid{z-index:2}.was-validated html .input-group .form-control:invalid:focus,html .input-group .form-control.is-invalid:focus,.was-validated html .input-group .form-select:invalid:focus,html .input-group .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=dark] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=dark] .input-group .form-select.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-control:invalid:focus,html[data-netbox-color-mode=light] .input-group .form-control.is-invalid:focus,.was-validated html[data-netbox-color-mode=light] .input-group .form-select:invalid:focus,html[data-netbox-color-mode=light] .input-group .form-select.is-invalid:focus{z-index:3}}@media print{html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.375rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{transition:none}}@media print{html .btn:hover,html[data-netbox-color-mode=dark] .btn:hover,html[data-netbox-color-mode=light] .btn:hover{color:#212529}}@media print{.btn-check:focus+html .btn,html .btn:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=dark] .btn:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn,html[data-netbox-color-mode=light] .btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .btn:disabled,html .btn.disabled,fieldset:disabled html .btn,html[data-netbox-color-mode=dark] .btn:disabled,html[data-netbox-color-mode=dark] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn:disabled,html[data-netbox-color-mode=light] .btn.disabled,fieldset:disabled html[data-netbox-color-mode=light] .btn{pointer-events:none;opacity:.65}}@media print{html .btn-primary,html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=light] .btn-primary{color:#fff;background-color:#337ab7;border-color:#337ab7}html .btn-primary:hover,html[data-netbox-color-mode=dark] .btn-primary:hover,html[data-netbox-color-mode=light] .btn-primary:hover{color:#fff;background-color:#2b689c;border-color:#296292}.btn-check:focus+html .btn-primary,html .btn-primary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-primary,html[data-netbox-color-mode=light] .btn-primary:focus{color:#fff;background-color:#2b689c;border-color:#296292;box-shadow:0 0 0 .25rem #528ec280}.btn-check:checked+html .btn-primary,.btn-check:active+html .btn-primary,html .btn-primary:active,html .btn-primary.active,.show>html .btn-primary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary,html[data-netbox-color-mode=dark] .btn-primary:active,html[data-netbox-color-mode=dark] .btn-primary.active,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-primary,.btn-check:active+html[data-netbox-color-mode=light] .btn-primary,html[data-netbox-color-mode=light] .btn-primary:active,html[data-netbox-color-mode=light] .btn-primary.active,.show>html[data-netbox-color-mode=light] .btn-primary.dropdown-toggle{color:#fff;background-color:#296292;border-color:#265c89}.btn-check:checked+html .btn-primary:focus,.btn-check:active+html .btn-primary:focus,html .btn-primary:active:focus,html .btn-primary.active:focus,.show>html .btn-primary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-primary:focus,html[data-netbox-color-mode=dark] .btn-primary:active:focus,html[data-netbox-color-mode=dark] .btn-primary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-primary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-primary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-primary:focus,html[data-netbox-color-mode=light] .btn-primary:active:focus,html[data-netbox-color-mode=light] .btn-primary.active:focus,.show>html[data-netbox-color-mode=light] .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #528ec280}html .btn-primary:disabled,html .btn-primary.disabled,html[data-netbox-color-mode=dark] .btn-primary:disabled,html[data-netbox-color-mode=dark] .btn-primary.disabled,html[data-netbox-color-mode=light] .btn-primary:disabled,html[data-netbox-color-mode=light] .btn-primary.disabled{color:#fff;background-color:#337ab7;border-color:#337ab7}}@media print{html .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html .btn-secondary:hover,html[data-netbox-color-mode=dark] .btn-secondary:hover,html[data-netbox-color-mode=light] .btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html .btn-secondary,html .btn-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html .btn-secondary,.btn-check:active+html .btn-secondary,html .btn-secondary:active,html .btn-secondary.active,.show>html .btn-secondary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary,html[data-netbox-color-mode=dark] .btn-secondary:active,html[data-netbox-color-mode=dark] .btn-secondary.active,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-secondary,.btn-check:active+html[data-netbox-color-mode=light] .btn-secondary,html[data-netbox-color-mode=light] .btn-secondary:active,html[data-netbox-color-mode=light] .btn-secondary.active,.show>html[data-netbox-color-mode=light] .btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html .btn-secondary:focus,.btn-check:active+html .btn-secondary:focus,html .btn-secondary:active:focus,html .btn-secondary.active:focus,.show>html .btn-secondary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-secondary:focus,html[data-netbox-color-mode=dark] .btn-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=dark] .btn-secondary.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-secondary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-secondary:focus,html[data-netbox-color-mode=light] .btn-secondary:active:focus,html[data-netbox-color-mode=light] .btn-secondary.active:focus,.show>html[data-netbox-color-mode=light] .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html .btn-secondary:disabled,html .btn-secondary.disabled,html[data-netbox-color-mode=dark] .btn-secondary:disabled,html[data-netbox-color-mode=dark] .btn-secondary.disabled,html[data-netbox-color-mode=light] .btn-secondary:disabled,html[data-netbox-color-mode=light] .btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}}@media print{html .btn-success,html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=light] .btn-success{color:#fff;background-color:#198754;border-color:#198754}html .btn-success:hover,html[data-netbox-color-mode=dark] .btn-success:hover,html[data-netbox-color-mode=light] .btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-success,html .btn-success:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-success,html[data-netbox-color-mode=light] .btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-success,.btn-check:active+html .btn-success,html .btn-success:active,html .btn-success.active,.show>html .btn-success.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success,html[data-netbox-color-mode=dark] .btn-success:active,html[data-netbox-color-mode=dark] .btn-success.active,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-success,.btn-check:active+html[data-netbox-color-mode=light] .btn-success,html[data-netbox-color-mode=light] .btn-success:active,html[data-netbox-color-mode=light] .btn-success.active,.show>html[data-netbox-color-mode=light] .btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-success:focus,.btn-check:active+html .btn-success:focus,html .btn-success:active:focus,html .btn-success.active:focus,.show>html .btn-success.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-success:focus,html[data-netbox-color-mode=dark] .btn-success:active:focus,html[data-netbox-color-mode=dark] .btn-success.active:focus,.show>html[data-netbox-color-mode=dark] .btn-success.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-success:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-success:focus,html[data-netbox-color-mode=light] .btn-success:active:focus,html[data-netbox-color-mode=light] .btn-success.active:focus,.show>html[data-netbox-color-mode=light] .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-success:disabled,html .btn-success.disabled,html[data-netbox-color-mode=dark] .btn-success:disabled,html[data-netbox-color-mode=dark] .btn-success.disabled,html[data-netbox-color-mode=light] .btn-success:disabled,html[data-netbox-color-mode=light] .btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-info,html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=light] .btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-info:hover,html[data-netbox-color-mode=dark] .btn-info:hover,html[data-netbox-color-mode=light] .btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-info,html .btn-info:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-info,html[data-netbox-color-mode=light] .btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-info,.btn-check:active+html .btn-info,html .btn-info:active,html .btn-info.active,.show>html .btn-info.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info,html[data-netbox-color-mode=dark] .btn-info:active,html[data-netbox-color-mode=dark] .btn-info.active,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-info,.btn-check:active+html[data-netbox-color-mode=light] .btn-info,html[data-netbox-color-mode=light] .btn-info:active,html[data-netbox-color-mode=light] .btn-info.active,.show>html[data-netbox-color-mode=light] .btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-info:focus,.btn-check:active+html .btn-info:focus,html .btn-info:active:focus,html .btn-info.active:focus,.show>html .btn-info.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-info:focus,html[data-netbox-color-mode=dark] .btn-info:active:focus,html[data-netbox-color-mode=dark] .btn-info.active:focus,.show>html[data-netbox-color-mode=dark] .btn-info.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-info:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-info:focus,html[data-netbox-color-mode=light] .btn-info:active:focus,html[data-netbox-color-mode=light] .btn-info.active:focus,.show>html[data-netbox-color-mode=light] .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-info:disabled,html .btn-info.disabled,html[data-netbox-color-mode=dark] .btn-info:disabled,html[data-netbox-color-mode=dark] .btn-info.disabled,html[data-netbox-color-mode=light] .btn-info:disabled,html[data-netbox-color-mode=light] .btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-warning,html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=light] .btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-warning:hover,html[data-netbox-color-mode=dark] .btn-warning:hover,html[data-netbox-color-mode=light] .btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-warning,html .btn-warning:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-warning,html[data-netbox-color-mode=light] .btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-warning,.btn-check:active+html .btn-warning,html .btn-warning:active,html .btn-warning.active,.show>html .btn-warning.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning,html[data-netbox-color-mode=dark] .btn-warning:active,html[data-netbox-color-mode=dark] .btn-warning.active,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-warning,.btn-check:active+html[data-netbox-color-mode=light] .btn-warning,html[data-netbox-color-mode=light] .btn-warning:active,html[data-netbox-color-mode=light] .btn-warning.active,.show>html[data-netbox-color-mode=light] .btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-warning:focus,.btn-check:active+html .btn-warning:focus,html .btn-warning:active:focus,html .btn-warning.active:focus,.show>html .btn-warning.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-warning:focus,html[data-netbox-color-mode=dark] .btn-warning:active:focus,html[data-netbox-color-mode=dark] .btn-warning.active:focus,.show>html[data-netbox-color-mode=dark] .btn-warning.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-warning:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-warning:focus,html[data-netbox-color-mode=light] .btn-warning:active:focus,html[data-netbox-color-mode=light] .btn-warning.active:focus,.show>html[data-netbox-color-mode=light] .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-warning:disabled,html .btn-warning.disabled,html[data-netbox-color-mode=dark] .btn-warning:disabled,html[data-netbox-color-mode=dark] .btn-warning.disabled,html[data-netbox-color-mode=light] .btn-warning:disabled,html[data-netbox-color-mode=light] .btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-danger,html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=light] .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-danger:hover,html[data-netbox-color-mode=dark] .btn-danger:hover,html[data-netbox-color-mode=light] .btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-danger,html .btn-danger:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-danger,html[data-netbox-color-mode=light] .btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-danger,.btn-check:active+html .btn-danger,html .btn-danger:active,html .btn-danger.active,.show>html .btn-danger.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger,html[data-netbox-color-mode=dark] .btn-danger:active,html[data-netbox-color-mode=dark] .btn-danger.active,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-danger,.btn-check:active+html[data-netbox-color-mode=light] .btn-danger,html[data-netbox-color-mode=light] .btn-danger:active,html[data-netbox-color-mode=light] .btn-danger.active,.show>html[data-netbox-color-mode=light] .btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-danger:focus,.btn-check:active+html .btn-danger:focus,html .btn-danger:active:focus,html .btn-danger.active:focus,.show>html .btn-danger.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-danger:focus,html[data-netbox-color-mode=dark] .btn-danger:active:focus,html[data-netbox-color-mode=dark] .btn-danger.active:focus,.show>html[data-netbox-color-mode=dark] .btn-danger.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-danger:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-danger:focus,html[data-netbox-color-mode=light] .btn-danger:active:focus,html[data-netbox-color-mode=light] .btn-danger.active:focus,.show>html[data-netbox-color-mode=light] .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-danger:disabled,html .btn-danger.disabled,html[data-netbox-color-mode=dark] .btn-danger:disabled,html[data-netbox-color-mode=dark] .btn-danger.disabled,html[data-netbox-color-mode=light] .btn-danger:disabled,html[data-netbox-color-mode=light] .btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-light,html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=light] .btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html .btn-light:hover,html[data-netbox-color-mode=dark] .btn-light:hover,html[data-netbox-color-mode=light] .btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html .btn-light,html .btn-light:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-light,html[data-netbox-color-mode=light] .btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html .btn-light,.btn-check:active+html .btn-light,html .btn-light:active,html .btn-light.active,.show>html .btn-light.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light,html[data-netbox-color-mode=dark] .btn-light:active,html[data-netbox-color-mode=dark] .btn-light.active,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-light,.btn-check:active+html[data-netbox-color-mode=light] .btn-light,html[data-netbox-color-mode=light] .btn-light:active,html[data-netbox-color-mode=light] .btn-light.active,.show>html[data-netbox-color-mode=light] .btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html .btn-light:focus,.btn-check:active+html .btn-light:focus,html .btn-light:active:focus,html .btn-light.active:focus,.show>html .btn-light.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-light:focus,html[data-netbox-color-mode=dark] .btn-light:active:focus,html[data-netbox-color-mode=dark] .btn-light.active:focus,.show>html[data-netbox-color-mode=dark] .btn-light.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-light:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-light:focus,html[data-netbox-color-mode=light] .btn-light:active:focus,html[data-netbox-color-mode=light] .btn-light.active:focus,.show>html[data-netbox-color-mode=light] .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html .btn-light:disabled,html .btn-light.disabled,html[data-netbox-color-mode=dark] .btn-light:disabled,html[data-netbox-color-mode=dark] .btn-light.disabled,html[data-netbox-color-mode=light] .btn-light:disabled,html[data-netbox-color-mode=light] .btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}}@media print{html .btn-dark,html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=light] .btn-dark{color:#fff;background-color:#212529;border-color:#212529}html .btn-dark:hover,html[data-netbox-color-mode=dark] .btn-dark:hover,html[data-netbox-color-mode=light] .btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html .btn-dark,html .btn-dark:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-dark,html[data-netbox-color-mode=light] .btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html .btn-dark,.btn-check:active+html .btn-dark,html .btn-dark:active,html .btn-dark.active,.show>html .btn-dark.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark,html[data-netbox-color-mode=dark] .btn-dark:active,html[data-netbox-color-mode=dark] .btn-dark.active,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-dark,.btn-check:active+html[data-netbox-color-mode=light] .btn-dark,html[data-netbox-color-mode=light] .btn-dark:active,html[data-netbox-color-mode=light] .btn-dark.active,.show>html[data-netbox-color-mode=light] .btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html .btn-dark:focus,.btn-check:active+html .btn-dark:focus,html .btn-dark:active:focus,html .btn-dark.active:focus,.show>html .btn-dark.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-dark:focus,html[data-netbox-color-mode=dark] .btn-dark:active:focus,html[data-netbox-color-mode=dark] .btn-dark.active:focus,.show>html[data-netbox-color-mode=dark] .btn-dark.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-dark:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-dark:focus,html[data-netbox-color-mode=light] .btn-dark:active:focus,html[data-netbox-color-mode=light] .btn-dark.active:focus,.show>html[data-netbox-color-mode=light] .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html .btn-dark:disabled,html .btn-dark.disabled,html[data-netbox-color-mode=dark] .btn-dark:disabled,html[data-netbox-color-mode=dark] .btn-dark.disabled,html[data-netbox-color-mode=light] .btn-dark:disabled,html[data-netbox-color-mode=light] .btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}}@media print{html .btn-red,html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=light] .btn-red{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-red:hover,html[data-netbox-color-mode=dark] .btn-red:hover,html[data-netbox-color-mode=light] .btn-red:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-red,html .btn-red:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red,html[data-netbox-color-mode=light] .btn-red:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-red,.btn-check:active+html .btn-red,html .btn-red:active,html .btn-red.active,.show>html .btn-red.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red,html[data-netbox-color-mode=dark] .btn-red:active,html[data-netbox-color-mode=dark] .btn-red.active,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red,.btn-check:active+html[data-netbox-color-mode=light] .btn-red,html[data-netbox-color-mode=light] .btn-red:active,html[data-netbox-color-mode=light] .btn-red.active,.show>html[data-netbox-color-mode=light] .btn-red.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-red:focus,.btn-check:active+html .btn-red:focus,html .btn-red:active:focus,html .btn-red.active:focus,.show>html .btn-red.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red:focus,html[data-netbox-color-mode=dark] .btn-red:active:focus,html[data-netbox-color-mode=dark] .btn-red.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red:focus,html[data-netbox-color-mode=light] .btn-red:active:focus,html[data-netbox-color-mode=light] .btn-red.active:focus,.show>html[data-netbox-color-mode=light] .btn-red.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-red:disabled,html .btn-red.disabled,html[data-netbox-color-mode=dark] .btn-red:disabled,html[data-netbox-color-mode=dark] .btn-red.disabled,html[data-netbox-color-mode=light] .btn-red:disabled,html[data-netbox-color-mode=light] .btn-red.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-yellow:hover,html[data-netbox-color-mode=dark] .btn-yellow:hover,html[data-netbox-color-mode=light] .btn-yellow:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-yellow,html .btn-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-yellow,.btn-check:active+html .btn-yellow,html .btn-yellow:active,html .btn-yellow.active,.show>html .btn-yellow.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow,html[data-netbox-color-mode=dark] .btn-yellow:active,html[data-netbox-color-mode=dark] .btn-yellow.active,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow,html[data-netbox-color-mode=light] .btn-yellow:active,html[data-netbox-color-mode=light] .btn-yellow.active,.show>html[data-netbox-color-mode=light] .btn-yellow.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-yellow:focus,.btn-check:active+html .btn-yellow:focus,html .btn-yellow:active:focus,html .btn-yellow.active:focus,.show>html .btn-yellow.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow:focus,html[data-netbox-color-mode=dark] .btn-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow:focus,html[data-netbox-color-mode=light] .btn-yellow:active:focus,html[data-netbox-color-mode=light] .btn-yellow.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-yellow:disabled,html .btn-yellow.disabled,html[data-netbox-color-mode=dark] .btn-yellow:disabled,html[data-netbox-color-mode=dark] .btn-yellow.disabled,html[data-netbox-color-mode=light] .btn-yellow:disabled,html[data-netbox-color-mode=light] .btn-yellow.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-green,html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=light] .btn-green{color:#fff;background-color:#198754;border-color:#198754}html .btn-green:hover,html[data-netbox-color-mode=dark] .btn-green:hover,html[data-netbox-color-mode=light] .btn-green:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-green,html .btn-green:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green,html[data-netbox-color-mode=light] .btn-green:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-green,.btn-check:active+html .btn-green,html .btn-green:active,html .btn-green.active,.show>html .btn-green.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green,html[data-netbox-color-mode=dark] .btn-green:active,html[data-netbox-color-mode=dark] .btn-green.active,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green,.btn-check:active+html[data-netbox-color-mode=light] .btn-green,html[data-netbox-color-mode=light] .btn-green:active,html[data-netbox-color-mode=light] .btn-green.active,.show>html[data-netbox-color-mode=light] .btn-green.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-green:focus,.btn-check:active+html .btn-green:focus,html .btn-green:active:focus,html .btn-green.active:focus,.show>html .btn-green.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green:focus,html[data-netbox-color-mode=dark] .btn-green:active:focus,html[data-netbox-color-mode=dark] .btn-green.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green:focus,html[data-netbox-color-mode=light] .btn-green:active:focus,html[data-netbox-color-mode=light] .btn-green.active:focus,.show>html[data-netbox-color-mode=light] .btn-green.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-green:disabled,html .btn-green.disabled,html[data-netbox-color-mode=dark] .btn-green:disabled,html[data-netbox-color-mode=dark] .btn-green.disabled,html[data-netbox-color-mode=light] .btn-green:disabled,html[data-netbox-color-mode=light] .btn-green.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-blue,html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=light] .btn-blue{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .btn-blue:hover,html[data-netbox-color-mode=dark] .btn-blue:hover,html[data-netbox-color-mode=light] .btn-blue:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html .btn-blue,html .btn-blue:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue,html[data-netbox-color-mode=light] .btn-blue:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html .btn-blue,.btn-check:active+html .btn-blue,html .btn-blue:active,html .btn-blue.active,.show>html .btn-blue.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue,html[data-netbox-color-mode=dark] .btn-blue:active,html[data-netbox-color-mode=dark] .btn-blue.active,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue,html[data-netbox-color-mode=light] .btn-blue:active,html[data-netbox-color-mode=light] .btn-blue.active,.show>html[data-netbox-color-mode=light] .btn-blue.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html .btn-blue:focus,.btn-check:active+html .btn-blue:focus,html .btn-blue:active:focus,html .btn-blue.active:focus,.show>html .btn-blue.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue:focus,html[data-netbox-color-mode=dark] .btn-blue:active:focus,html[data-netbox-color-mode=dark] .btn-blue.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue:focus,html[data-netbox-color-mode=light] .btn-blue:active:focus,html[data-netbox-color-mode=light] .btn-blue.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html .btn-blue:disabled,html .btn-blue.disabled,html[data-netbox-color-mode=dark] .btn-blue:disabled,html[data-netbox-color-mode=dark] .btn-blue.disabled,html[data-netbox-color-mode=light] .btn-blue:disabled,html[data-netbox-color-mode=light] .btn-blue.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}}@media print{html .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-cyan:hover,html[data-netbox-color-mode=dark] .btn-cyan:hover,html[data-netbox-color-mode=light] .btn-cyan:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-cyan,html .btn-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-cyan,.btn-check:active+html .btn-cyan,html .btn-cyan:active,html .btn-cyan.active,.show>html .btn-cyan.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan,html[data-netbox-color-mode=dark] .btn-cyan:active,html[data-netbox-color-mode=dark] .btn-cyan.active,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan,html[data-netbox-color-mode=light] .btn-cyan:active,html[data-netbox-color-mode=light] .btn-cyan.active,.show>html[data-netbox-color-mode=light] .btn-cyan.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-cyan:focus,.btn-check:active+html .btn-cyan:focus,html .btn-cyan:active:focus,html .btn-cyan.active:focus,.show>html .btn-cyan.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan:focus,html[data-netbox-color-mode=dark] .btn-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan:focus,html[data-netbox-color-mode=light] .btn-cyan:active:focus,html[data-netbox-color-mode=light] .btn-cyan.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-cyan:disabled,html .btn-cyan.disabled,html[data-netbox-color-mode=dark] .btn-cyan:disabled,html[data-netbox-color-mode=dark] .btn-cyan.disabled,html[data-netbox-color-mode=light] .btn-cyan:disabled,html[data-netbox-color-mode=light] .btn-cyan.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo{color:#fff;background-color:#6610f2;border-color:#6610f2}html .btn-indigo:hover,html[data-netbox-color-mode=dark] .btn-indigo:hover,html[data-netbox-color-mode=light] .btn-indigo:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html .btn-indigo,html .btn-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html .btn-indigo,.btn-check:active+html .btn-indigo,html .btn-indigo:active,html .btn-indigo.active,.show>html .btn-indigo.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo,html[data-netbox-color-mode=dark] .btn-indigo:active,html[data-netbox-color-mode=dark] .btn-indigo.active,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo,html[data-netbox-color-mode=light] .btn-indigo:active,html[data-netbox-color-mode=light] .btn-indigo.active,.show>html[data-netbox-color-mode=light] .btn-indigo.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html .btn-indigo:focus,.btn-check:active+html .btn-indigo:focus,html .btn-indigo:active:focus,html .btn-indigo.active:focus,.show>html .btn-indigo.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo:focus,html[data-netbox-color-mode=dark] .btn-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo:focus,html[data-netbox-color-mode=light] .btn-indigo:active:focus,html[data-netbox-color-mode=light] .btn-indigo.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html .btn-indigo:disabled,html .btn-indigo.disabled,html[data-netbox-color-mode=dark] .btn-indigo:disabled,html[data-netbox-color-mode=dark] .btn-indigo.disabled,html[data-netbox-color-mode=light] .btn-indigo:disabled,html[data-netbox-color-mode=light] .btn-indigo.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}}@media print{html .btn-purple,html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=light] .btn-purple{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html .btn-purple:hover,html[data-netbox-color-mode=dark] .btn-purple:hover,html[data-netbox-color-mode=light] .btn-purple:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html .btn-purple,html .btn-purple:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple,html[data-netbox-color-mode=light] .btn-purple:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html .btn-purple,.btn-check:active+html .btn-purple,html .btn-purple:active,html .btn-purple.active,.show>html .btn-purple.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple,html[data-netbox-color-mode=dark] .btn-purple:active,html[data-netbox-color-mode=dark] .btn-purple.active,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple,html[data-netbox-color-mode=light] .btn-purple:active,html[data-netbox-color-mode=light] .btn-purple.active,.show>html[data-netbox-color-mode=light] .btn-purple.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html .btn-purple:focus,.btn-check:active+html .btn-purple:focus,html .btn-purple:active:focus,html .btn-purple.active:focus,.show>html .btn-purple.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple:focus,html[data-netbox-color-mode=dark] .btn-purple:active:focus,html[data-netbox-color-mode=dark] .btn-purple.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple:focus,html[data-netbox-color-mode=light] .btn-purple:active:focus,html[data-netbox-color-mode=light] .btn-purple.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html .btn-purple:disabled,html .btn-purple.disabled,html[data-netbox-color-mode=dark] .btn-purple:disabled,html[data-netbox-color-mode=dark] .btn-purple.disabled,html[data-netbox-color-mode=light] .btn-purple:disabled,html[data-netbox-color-mode=light] .btn-purple.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}}@media print{html .btn-pink,html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=light] .btn-pink{color:#fff;background-color:#d63384;border-color:#d63384}html .btn-pink:hover,html[data-netbox-color-mode=dark] .btn-pink:hover,html[data-netbox-color-mode=light] .btn-pink:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html .btn-pink,html .btn-pink:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink,html[data-netbox-color-mode=light] .btn-pink:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html .btn-pink,.btn-check:active+html .btn-pink,html .btn-pink:active,html .btn-pink.active,.show>html .btn-pink.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink,html[data-netbox-color-mode=dark] .btn-pink:active,html[data-netbox-color-mode=dark] .btn-pink.active,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink,html[data-netbox-color-mode=light] .btn-pink:active,html[data-netbox-color-mode=light] .btn-pink.active,.show>html[data-netbox-color-mode=light] .btn-pink.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html .btn-pink:focus,.btn-check:active+html .btn-pink:focus,html .btn-pink:active:focus,html .btn-pink.active:focus,.show>html .btn-pink.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink:focus,html[data-netbox-color-mode=dark] .btn-pink:active:focus,html[data-netbox-color-mode=dark] .btn-pink.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink:focus,html[data-netbox-color-mode=light] .btn-pink:active:focus,html[data-netbox-color-mode=light] .btn-pink.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html .btn-pink:disabled,html .btn-pink.disabled,html[data-netbox-color-mode=dark] .btn-pink:disabled,html[data-netbox-color-mode=dark] .btn-pink.disabled,html[data-netbox-color-mode=light] .btn-pink:disabled,html[data-netbox-color-mode=light] .btn-pink.disabled{color:#fff;background-color:#d63384;border-color:#d63384}}@media print{html .btn-darker,html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=light] .btn-darker{color:#fff;background-color:#1b1f22;border-color:#1b1f22}html .btn-darker:hover,html[data-netbox-color-mode=dark] .btn-darker:hover,html[data-netbox-color-mode=light] .btn-darker:hover{color:#fff;background-color:#171a1d;border-color:#16191b}.btn-check:focus+html .btn-darker,html .btn-darker:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-darker,html[data-netbox-color-mode=light] .btn-darker:focus{color:#fff;background-color:#171a1d;border-color:#16191b;box-shadow:0 0 0 .25rem #3d414380}.btn-check:checked+html .btn-darker,.btn-check:active+html .btn-darker,html .btn-darker:active,html .btn-darker.active,.show>html .btn-darker.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker,html[data-netbox-color-mode=dark] .btn-darker:active,html[data-netbox-color-mode=dark] .btn-darker.active,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darker,.btn-check:active+html[data-netbox-color-mode=light] .btn-darker,html[data-netbox-color-mode=light] .btn-darker:active,html[data-netbox-color-mode=light] .btn-darker.active,.show>html[data-netbox-color-mode=light] .btn-darker.dropdown-toggle{color:#fff;background-color:#16191b;border-color:#14171a}.btn-check:checked+html .btn-darker:focus,.btn-check:active+html .btn-darker:focus,html .btn-darker:active:focus,html .btn-darker.active:focus,.show>html .btn-darker.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darker:focus,html[data-netbox-color-mode=dark] .btn-darker:active:focus,html[data-netbox-color-mode=dark] .btn-darker.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darker.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darker:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-darker:focus,html[data-netbox-color-mode=light] .btn-darker:active:focus,html[data-netbox-color-mode=light] .btn-darker.active:focus,.show>html[data-netbox-color-mode=light] .btn-darker.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3d414380}html .btn-darker:disabled,html .btn-darker.disabled,html[data-netbox-color-mode=dark] .btn-darker:disabled,html[data-netbox-color-mode=dark] .btn-darker.disabled,html[data-netbox-color-mode=light] .btn-darker:disabled,html[data-netbox-color-mode=light] .btn-darker.disabled{color:#fff;background-color:#1b1f22;border-color:#1b1f22}}@media print{html .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest{color:#fff;background-color:#171b1d;border-color:#171b1d}html .btn-darkest:hover,html[data-netbox-color-mode=dark] .btn-darkest:hover,html[data-netbox-color-mode=light] .btn-darkest:hover{color:#fff;background-color:#141719;border-color:#121617}.btn-check:focus+html .btn-darkest,html .btn-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest:focus{color:#fff;background-color:#141719;border-color:#121617;box-shadow:0 0 0 .25rem #3a3d3f80}.btn-check:checked+html .btn-darkest,.btn-check:active+html .btn-darkest,html .btn-darkest:active,html .btn-darkest.active,.show>html .btn-darkest.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest,html[data-netbox-color-mode=dark] .btn-darkest:active,html[data-netbox-color-mode=dark] .btn-darkest.active,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darkest,.btn-check:active+html[data-netbox-color-mode=light] .btn-darkest,html[data-netbox-color-mode=light] .btn-darkest:active,html[data-netbox-color-mode=light] .btn-darkest.active,.show>html[data-netbox-color-mode=light] .btn-darkest.dropdown-toggle{color:#fff;background-color:#121617;border-color:#111416}.btn-check:checked+html .btn-darkest:focus,.btn-check:active+html .btn-darkest:focus,html .btn-darkest:active:focus,html .btn-darkest.active:focus,.show>html .btn-darkest.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-darkest:focus,html[data-netbox-color-mode=dark] .btn-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=dark] .btn-darkest.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-darkest:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-darkest:focus,html[data-netbox-color-mode=light] .btn-darkest:active:focus,html[data-netbox-color-mode=light] .btn-darkest.active:focus,.show>html[data-netbox-color-mode=light] .btn-darkest.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3a3d3f80}html .btn-darkest:disabled,html .btn-darkest.disabled,html[data-netbox-color-mode=dark] .btn-darkest:disabled,html[data-netbox-color-mode=dark] .btn-darkest.disabled,html[data-netbox-color-mode=light] .btn-darkest:disabled,html[data-netbox-color-mode=light] .btn-darkest.disabled{color:#fff;background-color:#171b1d;border-color:#171b1d}}@media print{html .btn-gray,html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=light] .btn-gray{color:#000;background-color:#ced4da;border-color:#ced4da}html .btn-gray:hover,html[data-netbox-color-mode=dark] .btn-gray:hover,html[data-netbox-color-mode=light] .btn-gray:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html .btn-gray,html .btn-gray:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray,html[data-netbox-color-mode=light] .btn-gray:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html .btn-gray,.btn-check:active+html .btn-gray,html .btn-gray:active,html .btn-gray.active,.show>html .btn-gray.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray,html[data-netbox-color-mode=dark] .btn-gray:active,html[data-netbox-color-mode=dark] .btn-gray.active,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray,html[data-netbox-color-mode=light] .btn-gray:active,html[data-netbox-color-mode=light] .btn-gray.active,.show>html[data-netbox-color-mode=light] .btn-gray.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html .btn-gray:focus,.btn-check:active+html .btn-gray:focus,html .btn-gray:active:focus,html .btn-gray.active:focus,.show>html .btn-gray.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray:focus,html[data-netbox-color-mode=dark] .btn-gray:active:focus,html[data-netbox-color-mode=dark] .btn-gray.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray:focus,html[data-netbox-color-mode=light] .btn-gray:active:focus,html[data-netbox-color-mode=light] .btn-gray.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html .btn-gray:disabled,html .btn-gray.disabled,html[data-netbox-color-mode=dark] .btn-gray:disabled,html[data-netbox-color-mode=dark] .btn-gray.disabled,html[data-netbox-color-mode=light] .btn-gray:disabled,html[data-netbox-color-mode=light] .btn-gray.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}}@media print{html .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}html .btn-gray-100:hover,html[data-netbox-color-mode=dark] .btn-gray-100:hover,html[data-netbox-color-mode=light] .btn-gray-100:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+html .btn-gray-100,html .btn-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem #d3d4d580}.btn-check:checked+html .btn-gray-100,.btn-check:active+html .btn-gray-100,html .btn-gray-100:active,html .btn-gray-100.active,.show>html .btn-gray-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100,html[data-netbox-color-mode=dark] .btn-gray-100:active,html[data-netbox-color-mode=dark] .btn-gray-100.active,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-100,html[data-netbox-color-mode=light] .btn-gray-100:active,html[data-netbox-color-mode=light] .btn-gray-100.active,.show>html[data-netbox-color-mode=light] .btn-gray-100.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+html .btn-gray-100:focus,.btn-check:active+html .btn-gray-100:focus,html .btn-gray-100:active:focus,html .btn-gray-100.active:focus,.show>html .btn-gray-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-100:focus,html[data-netbox-color-mode=dark] .btn-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-100:focus,html[data-netbox-color-mode=light] .btn-gray-100:active:focus,html[data-netbox-color-mode=light] .btn-gray-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3d4d580}html .btn-gray-100:disabled,html .btn-gray-100.disabled,html[data-netbox-color-mode=dark] .btn-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-gray-100.disabled,html[data-netbox-color-mode=light] .btn-gray-100:disabled,html[data-netbox-color-mode=light] .btn-gray-100.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}}@media print{html .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200{color:#000;background-color:#e9ecef;border-color:#e9ecef}html .btn-gray-200:hover,html[data-netbox-color-mode=dark] .btn-gray-200:hover,html[data-netbox-color-mode=light] .btn-gray-200:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}.btn-check:focus+html .btn-gray-200,html .btn-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}.btn-check:checked+html .btn-gray-200,.btn-check:active+html .btn-gray-200,html .btn-gray-200:active,html .btn-gray-200.active,.show>html .btn-gray-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200,html[data-netbox-color-mode=dark] .btn-gray-200:active,html[data-netbox-color-mode=dark] .btn-gray-200.active,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-200,html[data-netbox-color-mode=light] .btn-gray-200:active,html[data-netbox-color-mode=light] .btn-gray-200.active,.show>html[data-netbox-color-mode=light] .btn-gray-200.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}.btn-check:checked+html .btn-gray-200:focus,.btn-check:active+html .btn-gray-200:focus,html .btn-gray-200:active:focus,html .btn-gray-200.active:focus,.show>html .btn-gray-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-200:focus,html[data-netbox-color-mode=dark] .btn-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-200:focus,html[data-netbox-color-mode=light] .btn-gray-200:active:focus,html[data-netbox-color-mode=light] .btn-gray-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}html .btn-gray-200:disabled,html .btn-gray-200.disabled,html[data-netbox-color-mode=dark] .btn-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-gray-200.disabled,html[data-netbox-color-mode=light] .btn-gray-200:disabled,html[data-netbox-color-mode=light] .btn-gray-200.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}}@media print{html .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300{color:#000;background-color:#dee2e6;border-color:#dee2e6}html .btn-gray-300:hover,html[data-netbox-color-mode=dark] .btn-gray-300:hover,html[data-netbox-color-mode=light] .btn-gray-300:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+html .btn-gray-300,html .btn-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem #bdc0c480}.btn-check:checked+html .btn-gray-300,.btn-check:active+html .btn-gray-300,html .btn-gray-300:active,html .btn-gray-300.active,.show>html .btn-gray-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300,html[data-netbox-color-mode=dark] .btn-gray-300:active,html[data-netbox-color-mode=dark] .btn-gray-300.active,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-300,html[data-netbox-color-mode=light] .btn-gray-300:active,html[data-netbox-color-mode=light] .btn-gray-300.active,.show>html[data-netbox-color-mode=light] .btn-gray-300.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+html .btn-gray-300:focus,.btn-check:active+html .btn-gray-300:focus,html .btn-gray-300:active:focus,html .btn-gray-300.active:focus,.show>html .btn-gray-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-300:focus,html[data-netbox-color-mode=dark] .btn-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-300:focus,html[data-netbox-color-mode=light] .btn-gray-300:active:focus,html[data-netbox-color-mode=light] .btn-gray-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bdc0c480}html .btn-gray-300:disabled,html .btn-gray-300.disabled,html[data-netbox-color-mode=dark] .btn-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-gray-300.disabled,html[data-netbox-color-mode=light] .btn-gray-300:disabled,html[data-netbox-color-mode=light] .btn-gray-300.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}}@media print{html .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400{color:#000;background-color:#ced4da;border-color:#ced4da}html .btn-gray-400:hover,html[data-netbox-color-mode=dark] .btn-gray-400:hover,html[data-netbox-color-mode=light] .btn-gray-400:hover{color:#000;background-color:#d5dae0;border-color:#d3d8de}.btn-check:focus+html .btn-gray-400,html .btn-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400:focus{color:#000;background-color:#d5dae0;border-color:#d3d8de;box-shadow:0 0 0 .25rem #afb4b980}.btn-check:checked+html .btn-gray-400,.btn-check:active+html .btn-gray-400,html .btn-gray-400:active,html .btn-gray-400.active,.show>html .btn-gray-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400,html[data-netbox-color-mode=dark] .btn-gray-400:active,html[data-netbox-color-mode=dark] .btn-gray-400.active,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-400,html[data-netbox-color-mode=light] .btn-gray-400:active,html[data-netbox-color-mode=light] .btn-gray-400.active,.show>html[data-netbox-color-mode=light] .btn-gray-400.dropdown-toggle{color:#000;background-color:#d8dde1;border-color:#d3d8de}.btn-check:checked+html .btn-gray-400:focus,.btn-check:active+html .btn-gray-400:focus,html .btn-gray-400:active:focus,html .btn-gray-400.active:focus,.show>html .btn-gray-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-400:focus,html[data-netbox-color-mode=dark] .btn-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-400:focus,html[data-netbox-color-mode=light] .btn-gray-400:active:focus,html[data-netbox-color-mode=light] .btn-gray-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #afb4b980}html .btn-gray-400:disabled,html .btn-gray-400.disabled,html[data-netbox-color-mode=dark] .btn-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-gray-400.disabled,html[data-netbox-color-mode=light] .btn-gray-400:disabled,html[data-netbox-color-mode=light] .btn-gray-400.disabled{color:#000;background-color:#ced4da;border-color:#ced4da}}@media print{html .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500{color:#000;background-color:#adb5bd;border-color:#adb5bd}html .btn-gray-500:hover,html[data-netbox-color-mode=dark] .btn-gray-500:hover,html[data-netbox-color-mode=light] .btn-gray-500:hover{color:#000;background-color:#b9c0c7;border-color:#b5bcc4}.btn-check:focus+html .btn-gray-500,html .btn-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500:focus{color:#000;background-color:#b9c0c7;border-color:#b5bcc4;box-shadow:0 0 0 .25rem #939aa180}.btn-check:checked+html .btn-gray-500,.btn-check:active+html .btn-gray-500,html .btn-gray-500:active,html .btn-gray-500.active,.show>html .btn-gray-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500,html[data-netbox-color-mode=dark] .btn-gray-500:active,html[data-netbox-color-mode=dark] .btn-gray-500.active,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-500,html[data-netbox-color-mode=light] .btn-gray-500:active,html[data-netbox-color-mode=light] .btn-gray-500.active,.show>html[data-netbox-color-mode=light] .btn-gray-500.dropdown-toggle{color:#000;background-color:#bdc4ca;border-color:#b5bcc4}.btn-check:checked+html .btn-gray-500:focus,.btn-check:active+html .btn-gray-500:focus,html .btn-gray-500:active:focus,html .btn-gray-500.active:focus,.show>html .btn-gray-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-500:focus,html[data-netbox-color-mode=dark] .btn-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-500:focus,html[data-netbox-color-mode=light] .btn-gray-500:active:focus,html[data-netbox-color-mode=light] .btn-gray-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #939aa180}html .btn-gray-500:disabled,html .btn-gray-500.disabled,html[data-netbox-color-mode=dark] .btn-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-gray-500.disabled,html[data-netbox-color-mode=light] .btn-gray-500:disabled,html[data-netbox-color-mode=light] .btn-gray-500.disabled{color:#000;background-color:#adb5bd;border-color:#adb5bd}}@media print{html .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600{color:#fff;background-color:#6c757d;border-color:#6c757d}html .btn-gray-600:hover,html[data-netbox-color-mode=dark] .btn-gray-600:hover,html[data-netbox-color-mode=light] .btn-gray-600:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+html .btn-gray-600,html .btn-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem #828a9180}.btn-check:checked+html .btn-gray-600,.btn-check:active+html .btn-gray-600,html .btn-gray-600:active,html .btn-gray-600.active,.show>html .btn-gray-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600,html[data-netbox-color-mode=dark] .btn-gray-600:active,html[data-netbox-color-mode=dark] .btn-gray-600.active,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-600,html[data-netbox-color-mode=light] .btn-gray-600:active,html[data-netbox-color-mode=light] .btn-gray-600.active,.show>html[data-netbox-color-mode=light] .btn-gray-600.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+html .btn-gray-600:focus,.btn-check:active+html .btn-gray-600:focus,html .btn-gray-600:active:focus,html .btn-gray-600.active:focus,.show>html .btn-gray-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-600:focus,html[data-netbox-color-mode=dark] .btn-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-600:focus,html[data-netbox-color-mode=light] .btn-gray-600:active:focus,html[data-netbox-color-mode=light] .btn-gray-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #828a9180}html .btn-gray-600:disabled,html .btn-gray-600.disabled,html[data-netbox-color-mode=dark] .btn-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-gray-600.disabled,html[data-netbox-color-mode=light] .btn-gray-600:disabled,html[data-netbox-color-mode=light] .btn-gray-600.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}}@media print{html .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700{color:#fff;background-color:#495057;border-color:#495057}html .btn-gray-700:hover,html[data-netbox-color-mode=dark] .btn-gray-700:hover,html[data-netbox-color-mode=light] .btn-gray-700:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+html .btn-gray-700,html .btn-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700:focus{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem #646a7080}.btn-check:checked+html .btn-gray-700,.btn-check:active+html .btn-gray-700,html .btn-gray-700:active,html .btn-gray-700.active,.show>html .btn-gray-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700,html[data-netbox-color-mode=dark] .btn-gray-700:active,html[data-netbox-color-mode=dark] .btn-gray-700.active,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-700,html[data-netbox-color-mode=light] .btn-gray-700:active,html[data-netbox-color-mode=light] .btn-gray-700.active,.show>html[data-netbox-color-mode=light] .btn-gray-700.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:checked+html .btn-gray-700:focus,.btn-check:active+html .btn-gray-700:focus,html .btn-gray-700:active:focus,html .btn-gray-700.active:focus,.show>html .btn-gray-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-700:focus,html[data-netbox-color-mode=dark] .btn-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-700:focus,html[data-netbox-color-mode=light] .btn-gray-700:active:focus,html[data-netbox-color-mode=light] .btn-gray-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #646a7080}html .btn-gray-700:disabled,html .btn-gray-700.disabled,html[data-netbox-color-mode=dark] .btn-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-gray-700.disabled,html[data-netbox-color-mode=light] .btn-gray-700:disabled,html[data-netbox-color-mode=light] .btn-gray-700.disabled{color:#fff;background-color:#495057;border-color:#495057}}@media print{html .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800{color:#fff;background-color:#343a40;border-color:#343a40}html .btn-gray-800:hover,html[data-netbox-color-mode=dark] .btn-gray-800:hover,html[data-netbox-color-mode=light] .btn-gray-800:hover{color:#fff;background-color:#2c3136;border-color:#2a2e33}.btn-check:focus+html .btn-gray-800,html .btn-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800:focus{color:#fff;background-color:#2c3136;border-color:#2a2e33;box-shadow:0 0 0 .25rem #52585d80}.btn-check:checked+html .btn-gray-800,.btn-check:active+html .btn-gray-800,html .btn-gray-800:active,html .btn-gray-800.active,.show>html .btn-gray-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800,html[data-netbox-color-mode=dark] .btn-gray-800:active,html[data-netbox-color-mode=dark] .btn-gray-800.active,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-800,html[data-netbox-color-mode=light] .btn-gray-800:active,html[data-netbox-color-mode=light] .btn-gray-800.active,.show>html[data-netbox-color-mode=light] .btn-gray-800.dropdown-toggle{color:#fff;background-color:#2a2e33;border-color:#272c30}.btn-check:checked+html .btn-gray-800:focus,.btn-check:active+html .btn-gray-800:focus,html .btn-gray-800:active:focus,html .btn-gray-800.active:focus,.show>html .btn-gray-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-800:focus,html[data-netbox-color-mode=dark] .btn-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-800:focus,html[data-netbox-color-mode=light] .btn-gray-800:active:focus,html[data-netbox-color-mode=light] .btn-gray-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52585d80}html .btn-gray-800:disabled,html .btn-gray-800.disabled,html[data-netbox-color-mode=dark] .btn-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-gray-800.disabled,html[data-netbox-color-mode=light] .btn-gray-800:disabled,html[data-netbox-color-mode=light] .btn-gray-800.disabled{color:#fff;background-color:#343a40;border-color:#343a40}}@media print{html .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900{color:#fff;background-color:#212529;border-color:#212529}html .btn-gray-900:hover,html[data-netbox-color-mode=dark] .btn-gray-900:hover,html[data-netbox-color-mode=light] .btn-gray-900:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+html .btn-gray-900,html .btn-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-check:checked+html .btn-gray-900,.btn-check:active+html .btn-gray-900,html .btn-gray-900:active,html .btn-gray-900.active,.show>html .btn-gray-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900,html[data-netbox-color-mode=dark] .btn-gray-900:active,html[data-netbox-color-mode=dark] .btn-gray-900.active,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-900,html[data-netbox-color-mode=light] .btn-gray-900:active,html[data-netbox-color-mode=light] .btn-gray-900.active,.show>html[data-netbox-color-mode=light] .btn-gray-900.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+html .btn-gray-900:focus,.btn-check:active+html .btn-gray-900:focus,html .btn-gray-900:active:focus,html .btn-gray-900.active:focus,.show>html .btn-gray-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-gray-900:focus,html[data-netbox-color-mode=dark] .btn-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-gray-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-gray-900:focus,html[data-netbox-color-mode=light] .btn-gray-900:active:focus,html[data-netbox-color-mode=light] .btn-gray-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #42464980}html .btn-gray-900:disabled,html .btn-gray-900.disabled,html[data-netbox-color-mode=dark] .btn-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-gray-900.disabled,html[data-netbox-color-mode=light] .btn-gray-900:disabled,html[data-netbox-color-mode=light] .btn-gray-900.disabled{color:#fff;background-color:#212529;border-color:#212529}}@media print{html .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100{color:#000;background-color:#f8d7da;border-color:#f8d7da}html .btn-red-100:hover,html[data-netbox-color-mode=dark] .btn-red-100:hover,html[data-netbox-color-mode=light] .btn-red-100:hover{color:#000;background-color:#f9dde0;border-color:#f9dbde}.btn-check:focus+html .btn-red-100,html .btn-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100:focus{color:#000;background-color:#f9dde0;border-color:#f9dbde;box-shadow:0 0 0 .25rem #d3b7b980}.btn-check:checked+html .btn-red-100,.btn-check:active+html .btn-red-100,html .btn-red-100:active,html .btn-red-100.active,.show>html .btn-red-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100,html[data-netbox-color-mode=dark] .btn-red-100:active,html[data-netbox-color-mode=dark] .btn-red-100.active,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-100,html[data-netbox-color-mode=light] .btn-red-100:active,html[data-netbox-color-mode=light] .btn-red-100.active,.show>html[data-netbox-color-mode=light] .btn-red-100.dropdown-toggle{color:#000;background-color:#f9dfe1;border-color:#f9dbde}.btn-check:checked+html .btn-red-100:focus,.btn-check:active+html .btn-red-100:focus,html .btn-red-100:active:focus,html .btn-red-100.active:focus,.show>html .btn-red-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-100:focus,html[data-netbox-color-mode=dark] .btn-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-100:focus,html[data-netbox-color-mode=light] .btn-red-100:active:focus,html[data-netbox-color-mode=light] .btn-red-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d3b7b980}html .btn-red-100:disabled,html .btn-red-100.disabled,html[data-netbox-color-mode=dark] .btn-red-100:disabled,html[data-netbox-color-mode=dark] .btn-red-100.disabled,html[data-netbox-color-mode=light] .btn-red-100:disabled,html[data-netbox-color-mode=light] .btn-red-100.disabled{color:#000;background-color:#f8d7da;border-color:#f8d7da}}@media print{html .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}html .btn-red-200:hover,html[data-netbox-color-mode=dark] .btn-red-200:hover,html[data-netbox-color-mode=light] .btn-red-200:hover{color:#000;background-color:#f3bac0;border-color:#f2b6bc}.btn-check:focus+html .btn-red-200,html .btn-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200:focus{color:#000;background-color:#f3bac0;border-color:#f2b6bc;box-shadow:0 0 0 .25rem #cd949a80}.btn-check:checked+html .btn-red-200,.btn-check:active+html .btn-red-200,html .btn-red-200:active,html .btn-red-200.active,.show>html .btn-red-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200,html[data-netbox-color-mode=dark] .btn-red-200:active,html[data-netbox-color-mode=dark] .btn-red-200.active,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-200,html[data-netbox-color-mode=light] .btn-red-200:active,html[data-netbox-color-mode=light] .btn-red-200.active,.show>html[data-netbox-color-mode=light] .btn-red-200.dropdown-toggle{color:#000;background-color:#f4bec4;border-color:#f2b6bc}.btn-check:checked+html .btn-red-200:focus,.btn-check:active+html .btn-red-200:focus,html .btn-red-200:active:focus,html .btn-red-200.active:focus,.show>html .btn-red-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-200:focus,html[data-netbox-color-mode=dark] .btn-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-200:focus,html[data-netbox-color-mode=light] .btn-red-200:active:focus,html[data-netbox-color-mode=light] .btn-red-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cd949a80}html .btn-red-200:disabled,html .btn-red-200.disabled,html[data-netbox-color-mode=dark] .btn-red-200:disabled,html[data-netbox-color-mode=dark] .btn-red-200.disabled,html[data-netbox-color-mode=light] .btn-red-200:disabled,html[data-netbox-color-mode=light] .btn-red-200.disabled{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}}@media print{html .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300{color:#000;background-color:#ea868f;border-color:#ea868f}html .btn-red-300:hover,html[data-netbox-color-mode=dark] .btn-red-300:hover,html[data-netbox-color-mode=light] .btn-red-300:hover{color:#000;background-color:#ed98a0;border-color:#ec929a}.btn-check:focus+html .btn-red-300,html .btn-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300:focus{color:#000;background-color:#ed98a0;border-color:#ec929a;box-shadow:0 0 0 .25rem #c7727a80}.btn-check:checked+html .btn-red-300,.btn-check:active+html .btn-red-300,html .btn-red-300:active,html .btn-red-300.active,.show>html .btn-red-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300,html[data-netbox-color-mode=dark] .btn-red-300:active,html[data-netbox-color-mode=dark] .btn-red-300.active,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-300,html[data-netbox-color-mode=light] .btn-red-300:active,html[data-netbox-color-mode=light] .btn-red-300.active,.show>html[data-netbox-color-mode=light] .btn-red-300.dropdown-toggle{color:#000;background-color:#ee9ea5;border-color:#ec929a}.btn-check:checked+html .btn-red-300:focus,.btn-check:active+html .btn-red-300:focus,html .btn-red-300:active:focus,html .btn-red-300.active:focus,.show>html .btn-red-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-300:focus,html[data-netbox-color-mode=dark] .btn-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-300:focus,html[data-netbox-color-mode=light] .btn-red-300:active:focus,html[data-netbox-color-mode=light] .btn-red-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c7727a80}html .btn-red-300:disabled,html .btn-red-300.disabled,html[data-netbox-color-mode=dark] .btn-red-300:disabled,html[data-netbox-color-mode=dark] .btn-red-300.disabled,html[data-netbox-color-mode=light] .btn-red-300:disabled,html[data-netbox-color-mode=light] .btn-red-300.disabled{color:#000;background-color:#ea868f;border-color:#ea868f}}@media print{html .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400{color:#000;background-color:#e35d6a;border-color:#e35d6a}html .btn-red-400:hover,html[data-netbox-color-mode=dark] .btn-red-400:hover,html[data-netbox-color-mode=light] .btn-red-400:hover{color:#000;background-color:#e77580;border-color:#e66d79}.btn-check:focus+html .btn-red-400,html .btn-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400:focus{color:#000;background-color:#e77580;border-color:#e66d79;box-shadow:0 0 0 .25rem #c14f5a80}.btn-check:checked+html .btn-red-400,.btn-check:active+html .btn-red-400,html .btn-red-400:active,html .btn-red-400.active,.show>html .btn-red-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400,html[data-netbox-color-mode=dark] .btn-red-400:active,html[data-netbox-color-mode=dark] .btn-red-400.active,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-400,html[data-netbox-color-mode=light] .btn-red-400:active,html[data-netbox-color-mode=light] .btn-red-400.active,.show>html[data-netbox-color-mode=light] .btn-red-400.dropdown-toggle{color:#000;background-color:#e97d88;border-color:#e66d79}.btn-check:checked+html .btn-red-400:focus,.btn-check:active+html .btn-red-400:focus,html .btn-red-400:active:focus,html .btn-red-400.active:focus,.show>html .btn-red-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-400:focus,html[data-netbox-color-mode=dark] .btn-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-400:focus,html[data-netbox-color-mode=light] .btn-red-400:active:focus,html[data-netbox-color-mode=light] .btn-red-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c14f5a80}html .btn-red-400:disabled,html .btn-red-400.disabled,html[data-netbox-color-mode=dark] .btn-red-400:disabled,html[data-netbox-color-mode=dark] .btn-red-400.disabled,html[data-netbox-color-mode=light] .btn-red-400:disabled,html[data-netbox-color-mode=light] .btn-red-400.disabled{color:#000;background-color:#e35d6a;border-color:#e35d6a}}@media print{html .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500{color:#fff;background-color:#dc3545;border-color:#dc3545}html .btn-red-500:hover,html[data-netbox-color-mode=dark] .btn-red-500:hover,html[data-netbox-color-mode=light] .btn-red-500:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+html .btn-red-500,html .btn-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem #e1536180}.btn-check:checked+html .btn-red-500,.btn-check:active+html .btn-red-500,html .btn-red-500:active,html .btn-red-500.active,.show>html .btn-red-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500,html[data-netbox-color-mode=dark] .btn-red-500:active,html[data-netbox-color-mode=dark] .btn-red-500.active,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-500,html[data-netbox-color-mode=light] .btn-red-500:active,html[data-netbox-color-mode=light] .btn-red-500.active,.show>html[data-netbox-color-mode=light] .btn-red-500.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+html .btn-red-500:focus,.btn-check:active+html .btn-red-500:focus,html .btn-red-500:active:focus,html .btn-red-500.active:focus,.show>html .btn-red-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-500:focus,html[data-netbox-color-mode=dark] .btn-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-500:focus,html[data-netbox-color-mode=light] .btn-red-500:active:focus,html[data-netbox-color-mode=light] .btn-red-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #e1536180}html .btn-red-500:disabled,html .btn-red-500.disabled,html[data-netbox-color-mode=dark] .btn-red-500:disabled,html[data-netbox-color-mode=dark] .btn-red-500.disabled,html[data-netbox-color-mode=light] .btn-red-500:disabled,html[data-netbox-color-mode=light] .btn-red-500.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}}@media print{html .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600{color:#fff;background-color:#b02a37;border-color:#b02a37}html .btn-red-600:hover,html[data-netbox-color-mode=dark] .btn-red-600:hover,html[data-netbox-color-mode=light] .btn-red-600:hover{color:#fff;background-color:#96242f;border-color:#8d222c}.btn-check:focus+html .btn-red-600,html .btn-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600:focus{color:#fff;background-color:#96242f;border-color:#8d222c;box-shadow:0 0 0 .25rem #bc4a5580}.btn-check:checked+html .btn-red-600,.btn-check:active+html .btn-red-600,html .btn-red-600:active,html .btn-red-600.active,.show>html .btn-red-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600,html[data-netbox-color-mode=dark] .btn-red-600:active,html[data-netbox-color-mode=dark] .btn-red-600.active,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-600,html[data-netbox-color-mode=light] .btn-red-600:active,html[data-netbox-color-mode=light] .btn-red-600.active,.show>html[data-netbox-color-mode=light] .btn-red-600.dropdown-toggle{color:#fff;background-color:#8d222c;border-color:#842029}.btn-check:checked+html .btn-red-600:focus,.btn-check:active+html .btn-red-600:focus,html .btn-red-600:active:focus,html .btn-red-600.active:focus,.show>html .btn-red-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-600:focus,html[data-netbox-color-mode=dark] .btn-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-600:focus,html[data-netbox-color-mode=light] .btn-red-600:active:focus,html[data-netbox-color-mode=light] .btn-red-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bc4a5580}html .btn-red-600:disabled,html .btn-red-600.disabled,html[data-netbox-color-mode=dark] .btn-red-600:disabled,html[data-netbox-color-mode=dark] .btn-red-600.disabled,html[data-netbox-color-mode=light] .btn-red-600:disabled,html[data-netbox-color-mode=light] .btn-red-600.disabled{color:#fff;background-color:#b02a37;border-color:#b02a37}}@media print{html .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700{color:#fff;background-color:#842029;border-color:#842029}html .btn-red-700:hover,html[data-netbox-color-mode=dark] .btn-red-700:hover,html[data-netbox-color-mode=light] .btn-red-700:hover{color:#fff;background-color:#701b23;border-color:#6a1a21}.btn-check:focus+html .btn-red-700,html .btn-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700:focus{color:#fff;background-color:#701b23;border-color:#6a1a21;box-shadow:0 0 0 .25rem #96414980}.btn-check:checked+html .btn-red-700,.btn-check:active+html .btn-red-700,html .btn-red-700:active,html .btn-red-700.active,.show>html .btn-red-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700,html[data-netbox-color-mode=dark] .btn-red-700:active,html[data-netbox-color-mode=dark] .btn-red-700.active,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-700,html[data-netbox-color-mode=light] .btn-red-700:active,html[data-netbox-color-mode=light] .btn-red-700.active,.show>html[data-netbox-color-mode=light] .btn-red-700.dropdown-toggle{color:#fff;background-color:#6a1a21;border-color:#63181f}.btn-check:checked+html .btn-red-700:focus,.btn-check:active+html .btn-red-700:focus,html .btn-red-700:active:focus,html .btn-red-700.active:focus,.show>html .btn-red-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-700:focus,html[data-netbox-color-mode=dark] .btn-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-700:focus,html[data-netbox-color-mode=light] .btn-red-700:active:focus,html[data-netbox-color-mode=light] .btn-red-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #96414980}html .btn-red-700:disabled,html .btn-red-700.disabled,html[data-netbox-color-mode=dark] .btn-red-700:disabled,html[data-netbox-color-mode=dark] .btn-red-700.disabled,html[data-netbox-color-mode=light] .btn-red-700:disabled,html[data-netbox-color-mode=light] .btn-red-700.disabled{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800{color:#fff;background-color:#58151c;border-color:#58151c}html .btn-red-800:hover,html[data-netbox-color-mode=dark] .btn-red-800:hover,html[data-netbox-color-mode=light] .btn-red-800:hover{color:#fff;background-color:#4b1218;border-color:#461116}.btn-check:focus+html .btn-red-800,html .btn-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800:focus{color:#fff;background-color:#4b1218;border-color:#461116;box-shadow:0 0 0 .25rem #71383e80}.btn-check:checked+html .btn-red-800,.btn-check:active+html .btn-red-800,html .btn-red-800:active,html .btn-red-800.active,.show>html .btn-red-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800,html[data-netbox-color-mode=dark] .btn-red-800:active,html[data-netbox-color-mode=dark] .btn-red-800.active,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-800,html[data-netbox-color-mode=light] .btn-red-800:active,html[data-netbox-color-mode=light] .btn-red-800.active,.show>html[data-netbox-color-mode=light] .btn-red-800.dropdown-toggle{color:#fff;background-color:#461116;border-color:#421015}.btn-check:checked+html .btn-red-800:focus,.btn-check:active+html .btn-red-800:focus,html .btn-red-800:active:focus,html .btn-red-800.active:focus,.show>html .btn-red-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-800:focus,html[data-netbox-color-mode=dark] .btn-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-800:focus,html[data-netbox-color-mode=light] .btn-red-800:active:focus,html[data-netbox-color-mode=light] .btn-red-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #71383e80}html .btn-red-800:disabled,html .btn-red-800.disabled,html[data-netbox-color-mode=dark] .btn-red-800:disabled,html[data-netbox-color-mode=dark] .btn-red-800.disabled,html[data-netbox-color-mode=light] .btn-red-800:disabled,html[data-netbox-color-mode=light] .btn-red-800.disabled{color:#fff;background-color:#58151c;border-color:#58151c}}@media print{html .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}html .btn-red-900:hover,html[data-netbox-color-mode=dark] .btn-red-900:hover,html[data-netbox-color-mode=light] .btn-red-900:hover{color:#fff;background-color:#25090c;border-color:#23090b}.btn-check:focus+html .btn-red-900,html .btn-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900:focus{color:#fff;background-color:#25090c;border-color:#23090b;box-shadow:0 0 0 .25rem #4c303280}.btn-check:checked+html .btn-red-900,.btn-check:active+html .btn-red-900,html .btn-red-900:active,html .btn-red-900.active,.show>html .btn-red-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900,html[data-netbox-color-mode=dark] .btn-red-900:active,html[data-netbox-color-mode=dark] .btn-red-900.active,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-900,html[data-netbox-color-mode=light] .btn-red-900:active,html[data-netbox-color-mode=light] .btn-red-900.active,.show>html[data-netbox-color-mode=light] .btn-red-900.dropdown-toggle{color:#fff;background-color:#23090b;border-color:#21080b}.btn-check:checked+html .btn-red-900:focus,.btn-check:active+html .btn-red-900:focus,html .btn-red-900:active:focus,html .btn-red-900.active:focus,.show>html .btn-red-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-red-900:focus,html[data-netbox-color-mode=dark] .btn-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-red-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-red-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-red-900:focus,html[data-netbox-color-mode=light] .btn-red-900:active:focus,html[data-netbox-color-mode=light] .btn-red-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-red-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c303280}html .btn-red-900:disabled,html .btn-red-900.disabled,html[data-netbox-color-mode=dark] .btn-red-900:disabled,html[data-netbox-color-mode=dark] .btn-red-900.disabled,html[data-netbox-color-mode=light] .btn-red-900:disabled,html[data-netbox-color-mode=light] .btn-red-900.disabled{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}}@media print{html .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100{color:#000;background-color:#fff3cd;border-color:#fff3cd}html .btn-yellow-100:hover,html[data-netbox-color-mode=dark] .btn-yellow-100:hover,html[data-netbox-color-mode=light] .btn-yellow-100:hover{color:#000;background-color:#fff5d5;border-color:#fff4d2}.btn-check:focus+html .btn-yellow-100,html .btn-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100:focus{color:#000;background-color:#fff5d5;border-color:#fff4d2;box-shadow:0 0 0 .25rem #d9cfae80}.btn-check:checked+html .btn-yellow-100,.btn-check:active+html .btn-yellow-100,html .btn-yellow-100:active,html .btn-yellow-100.active,.show>html .btn-yellow-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100,html[data-netbox-color-mode=dark] .btn-yellow-100:active,html[data-netbox-color-mode=dark] .btn-yellow-100.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-100,html[data-netbox-color-mode=light] .btn-yellow-100:active,html[data-netbox-color-mode=light] .btn-yellow-100.active,.show>html[data-netbox-color-mode=light] .btn-yellow-100.dropdown-toggle{color:#000;background-color:#fff5d7;border-color:#fff4d2}.btn-check:checked+html .btn-yellow-100:focus,.btn-check:active+html .btn-yellow-100:focus,html .btn-yellow-100:active:focus,html .btn-yellow-100.active:focus,.show>html .btn-yellow-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-100:focus,html[data-netbox-color-mode=light] .btn-yellow-100:active:focus,html[data-netbox-color-mode=light] .btn-yellow-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9cfae80}html .btn-yellow-100:disabled,html .btn-yellow-100.disabled,html[data-netbox-color-mode=dark] .btn-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-yellow-100.disabled,html[data-netbox-color-mode=light] .btn-yellow-100:disabled,html[data-netbox-color-mode=light] .btn-yellow-100.disabled{color:#000;background-color:#fff3cd;border-color:#fff3cd}}@media print{html .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200{color:#000;background-color:#ffe69c;border-color:#ffe69c}html .btn-yellow-200:hover,html[data-netbox-color-mode=dark] .btn-yellow-200:hover,html[data-netbox-color-mode=light] .btn-yellow-200:hover{color:#000;background-color:#ffeaab;border-color:#ffe9a6}.btn-check:focus+html .btn-yellow-200,html .btn-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200:focus{color:#000;background-color:#ffeaab;border-color:#ffe9a6;box-shadow:0 0 0 .25rem #d9c48580}.btn-check:checked+html .btn-yellow-200,.btn-check:active+html .btn-yellow-200,html .btn-yellow-200:active,html .btn-yellow-200.active,.show>html .btn-yellow-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200,html[data-netbox-color-mode=dark] .btn-yellow-200:active,html[data-netbox-color-mode=dark] .btn-yellow-200.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-200,html[data-netbox-color-mode=light] .btn-yellow-200:active,html[data-netbox-color-mode=light] .btn-yellow-200.active,.show>html[data-netbox-color-mode=light] .btn-yellow-200.dropdown-toggle{color:#000;background-color:#ffebb0;border-color:#ffe9a6}.btn-check:checked+html .btn-yellow-200:focus,.btn-check:active+html .btn-yellow-200:focus,html .btn-yellow-200:active:focus,html .btn-yellow-200.active:focus,.show>html .btn-yellow-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-200:focus,html[data-netbox-color-mode=light] .btn-yellow-200:active:focus,html[data-netbox-color-mode=light] .btn-yellow-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9c48580}html .btn-yellow-200:disabled,html .btn-yellow-200.disabled,html[data-netbox-color-mode=dark] .btn-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-yellow-200.disabled,html[data-netbox-color-mode=light] .btn-yellow-200:disabled,html[data-netbox-color-mode=light] .btn-yellow-200.disabled{color:#000;background-color:#ffe69c;border-color:#ffe69c}}@media print{html .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300{color:#000;background-color:#ffda6a;border-color:#ffda6a}html .btn-yellow-300:hover,html[data-netbox-color-mode=dark] .btn-yellow-300:hover,html[data-netbox-color-mode=light] .btn-yellow-300:hover{color:#000;background-color:#ffe080;border-color:#ffde79}.btn-check:focus+html .btn-yellow-300,html .btn-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300:focus{color:#000;background-color:#ffe080;border-color:#ffde79;box-shadow:0 0 0 .25rem #d9b95a80}.btn-check:checked+html .btn-yellow-300,.btn-check:active+html .btn-yellow-300,html .btn-yellow-300:active,html .btn-yellow-300.active,.show>html .btn-yellow-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300,html[data-netbox-color-mode=dark] .btn-yellow-300:active,html[data-netbox-color-mode=dark] .btn-yellow-300.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-300,html[data-netbox-color-mode=light] .btn-yellow-300:active,html[data-netbox-color-mode=light] .btn-yellow-300.active,.show>html[data-netbox-color-mode=light] .btn-yellow-300.dropdown-toggle{color:#000;background-color:#ffe188;border-color:#ffde79}.btn-check:checked+html .btn-yellow-300:focus,.btn-check:active+html .btn-yellow-300:focus,html .btn-yellow-300:active:focus,html .btn-yellow-300.active:focus,.show>html .btn-yellow-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-300:focus,html[data-netbox-color-mode=light] .btn-yellow-300:active:focus,html[data-netbox-color-mode=light] .btn-yellow-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9b95a80}html .btn-yellow-300:disabled,html .btn-yellow-300.disabled,html[data-netbox-color-mode=dark] .btn-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-yellow-300.disabled,html[data-netbox-color-mode=light] .btn-yellow-300:disabled,html[data-netbox-color-mode=light] .btn-yellow-300.disabled{color:#000;background-color:#ffda6a;border-color:#ffda6a}}@media print{html .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400{color:#000;background-color:#ffcd39;border-color:#ffcd39}html .btn-yellow-400:hover,html[data-netbox-color-mode=dark] .btn-yellow-400:hover,html[data-netbox-color-mode=light] .btn-yellow-400:hover{color:#000;background-color:#ffd557;border-color:#ffd24d}.btn-check:focus+html .btn-yellow-400,html .btn-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400:focus{color:#000;background-color:#ffd557;border-color:#ffd24d;box-shadow:0 0 0 .25rem #d9ae3080}.btn-check:checked+html .btn-yellow-400,.btn-check:active+html .btn-yellow-400,html .btn-yellow-400:active,html .btn-yellow-400.active,.show>html .btn-yellow-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400,html[data-netbox-color-mode=dark] .btn-yellow-400:active,html[data-netbox-color-mode=dark] .btn-yellow-400.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-400,html[data-netbox-color-mode=light] .btn-yellow-400:active,html[data-netbox-color-mode=light] .btn-yellow-400.active,.show>html[data-netbox-color-mode=light] .btn-yellow-400.dropdown-toggle{color:#000;background-color:#ffd761;border-color:#ffd24d}.btn-check:checked+html .btn-yellow-400:focus,.btn-check:active+html .btn-yellow-400:focus,html .btn-yellow-400:active:focus,html .btn-yellow-400.active:focus,.show>html .btn-yellow-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-400:focus,html[data-netbox-color-mode=light] .btn-yellow-400:active:focus,html[data-netbox-color-mode=light] .btn-yellow-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9ae3080}html .btn-yellow-400:disabled,html .btn-yellow-400.disabled,html[data-netbox-color-mode=dark] .btn-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-yellow-400.disabled,html[data-netbox-color-mode=light] .btn-yellow-400:disabled,html[data-netbox-color-mode=light] .btn-yellow-400.disabled{color:#000;background-color:#ffcd39;border-color:#ffcd39}}@media print{html .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500{color:#000;background-color:#ffc107;border-color:#ffc107}html .btn-yellow-500:hover,html[data-netbox-color-mode=dark] .btn-yellow-500:hover,html[data-netbox-color-mode=light] .btn-yellow-500:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+html .btn-yellow-500,html .btn-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem #d9a40680}.btn-check:checked+html .btn-yellow-500,.btn-check:active+html .btn-yellow-500,html .btn-yellow-500:active,html .btn-yellow-500.active,.show>html .btn-yellow-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500,html[data-netbox-color-mode=dark] .btn-yellow-500:active,html[data-netbox-color-mode=dark] .btn-yellow-500.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-500,html[data-netbox-color-mode=light] .btn-yellow-500:active,html[data-netbox-color-mode=light] .btn-yellow-500.active,.show>html[data-netbox-color-mode=light] .btn-yellow-500.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+html .btn-yellow-500:focus,.btn-check:active+html .btn-yellow-500:focus,html .btn-yellow-500:active:focus,html .btn-yellow-500.active:focus,.show>html .btn-yellow-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-500:focus,html[data-netbox-color-mode=light] .btn-yellow-500:active:focus,html[data-netbox-color-mode=light] .btn-yellow-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d9a40680}html .btn-yellow-500:disabled,html .btn-yellow-500.disabled,html[data-netbox-color-mode=dark] .btn-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-yellow-500.disabled,html[data-netbox-color-mode=light] .btn-yellow-500:disabled,html[data-netbox-color-mode=light] .btn-yellow-500.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}}@media print{html .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600{color:#000;background-color:#cc9a06;border-color:#cc9a06}html .btn-yellow-600:hover,html[data-netbox-color-mode=dark] .btn-yellow-600:hover,html[data-netbox-color-mode=light] .btn-yellow-600:hover{color:#000;background-color:#d4a92b;border-color:#d1a41f}.btn-check:focus+html .btn-yellow-600,html .btn-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600:focus{color:#000;background-color:#d4a92b;border-color:#d1a41f;box-shadow:0 0 0 .25rem #ad830580}.btn-check:checked+html .btn-yellow-600,.btn-check:active+html .btn-yellow-600,html .btn-yellow-600:active,html .btn-yellow-600.active,.show>html .btn-yellow-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600,html[data-netbox-color-mode=dark] .btn-yellow-600:active,html[data-netbox-color-mode=dark] .btn-yellow-600.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-600,html[data-netbox-color-mode=light] .btn-yellow-600:active,html[data-netbox-color-mode=light] .btn-yellow-600.active,.show>html[data-netbox-color-mode=light] .btn-yellow-600.dropdown-toggle{color:#000;background-color:#d6ae38;border-color:#d1a41f}.btn-check:checked+html .btn-yellow-600:focus,.btn-check:active+html .btn-yellow-600:focus,html .btn-yellow-600:active:focus,html .btn-yellow-600.active:focus,.show>html .btn-yellow-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-600:focus,html[data-netbox-color-mode=light] .btn-yellow-600:active:focus,html[data-netbox-color-mode=light] .btn-yellow-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #ad830580}html .btn-yellow-600:disabled,html .btn-yellow-600.disabled,html[data-netbox-color-mode=dark] .btn-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-yellow-600.disabled,html[data-netbox-color-mode=light] .btn-yellow-600:disabled,html[data-netbox-color-mode=light] .btn-yellow-600.disabled{color:#000;background-color:#cc9a06;border-color:#cc9a06}}@media print{html .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700{color:#000;background-color:#997404;border-color:#997404}html .btn-yellow-700:hover,html[data-netbox-color-mode=dark] .btn-yellow-700:hover,html[data-netbox-color-mode=light] .btn-yellow-700:hover{color:#000;background-color:#a8892a;border-color:#a3821d}.btn-check:focus+html .btn-yellow-700,html .btn-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700:focus{color:#000;background-color:#a8892a;border-color:#a3821d;box-shadow:0 0 0 .25rem #82630380}.btn-check:checked+html .btn-yellow-700,.btn-check:active+html .btn-yellow-700,html .btn-yellow-700:active,html .btn-yellow-700.active,.show>html .btn-yellow-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700,html[data-netbox-color-mode=dark] .btn-yellow-700:active,html[data-netbox-color-mode=dark] .btn-yellow-700.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-700,html[data-netbox-color-mode=light] .btn-yellow-700:active,html[data-netbox-color-mode=light] .btn-yellow-700.active,.show>html[data-netbox-color-mode=light] .btn-yellow-700.dropdown-toggle{color:#000;background-color:#ad9036;border-color:#a3821d}.btn-check:checked+html .btn-yellow-700:focus,.btn-check:active+html .btn-yellow-700:focus,html .btn-yellow-700:active:focus,html .btn-yellow-700.active:focus,.show>html .btn-yellow-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-700:focus,html[data-netbox-color-mode=light] .btn-yellow-700:active:focus,html[data-netbox-color-mode=light] .btn-yellow-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #82630380}html .btn-yellow-700:disabled,html .btn-yellow-700.disabled,html[data-netbox-color-mode=dark] .btn-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-yellow-700.disabled,html[data-netbox-color-mode=light] .btn-yellow-700:disabled,html[data-netbox-color-mode=light] .btn-yellow-700.disabled{color:#000;background-color:#997404;border-color:#997404}}@media print{html .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800{color:#fff;background-color:#664d03;border-color:#664d03}html .btn-yellow-800:hover,html[data-netbox-color-mode=dark] .btn-yellow-800:hover,html[data-netbox-color-mode=light] .btn-yellow-800:hover{color:#fff;background-color:#574103;border-color:#523e02}.btn-check:focus+html .btn-yellow-800,html .btn-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800:focus{color:#fff;background-color:#574103;border-color:#523e02;box-shadow:0 0 0 .25rem #7d682980}.btn-check:checked+html .btn-yellow-800,.btn-check:active+html .btn-yellow-800,html .btn-yellow-800:active,html .btn-yellow-800.active,.show>html .btn-yellow-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800,html[data-netbox-color-mode=dark] .btn-yellow-800:active,html[data-netbox-color-mode=dark] .btn-yellow-800.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-800,html[data-netbox-color-mode=light] .btn-yellow-800:active,html[data-netbox-color-mode=light] .btn-yellow-800.active,.show>html[data-netbox-color-mode=light] .btn-yellow-800.dropdown-toggle{color:#fff;background-color:#523e02;border-color:#4d3a02}.btn-check:checked+html .btn-yellow-800:focus,.btn-check:active+html .btn-yellow-800:focus,html .btn-yellow-800:active:focus,html .btn-yellow-800.active:focus,.show>html .btn-yellow-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-800:focus,html[data-netbox-color-mode=light] .btn-yellow-800:active:focus,html[data-netbox-color-mode=light] .btn-yellow-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d682980}html .btn-yellow-800:disabled,html .btn-yellow-800.disabled,html[data-netbox-color-mode=dark] .btn-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-yellow-800.disabled,html[data-netbox-color-mode=light] .btn-yellow-800:disabled,html[data-netbox-color-mode=light] .btn-yellow-800.disabled{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900{color:#fff;background-color:#332701;border-color:#332701}html .btn-yellow-900:hover,html[data-netbox-color-mode=dark] .btn-yellow-900:hover,html[data-netbox-color-mode=light] .btn-yellow-900:hover{color:#fff;background-color:#2b2101;border-color:#291f01}.btn-check:focus+html .btn-yellow-900,html .btn-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900:focus{color:#fff;background-color:#2b2101;border-color:#291f01;box-shadow:0 0 0 .25rem #52472780}.btn-check:checked+html .btn-yellow-900,.btn-check:active+html .btn-yellow-900,html .btn-yellow-900:active,html .btn-yellow-900.active,.show>html .btn-yellow-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900,html[data-netbox-color-mode=dark] .btn-yellow-900:active,html[data-netbox-color-mode=dark] .btn-yellow-900.active,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-900,html[data-netbox-color-mode=light] .btn-yellow-900:active,html[data-netbox-color-mode=light] .btn-yellow-900.active,.show>html[data-netbox-color-mode=light] .btn-yellow-900.dropdown-toggle{color:#fff;background-color:#291f01;border-color:#261d01}.btn-check:checked+html .btn-yellow-900:focus,.btn-check:active+html .btn-yellow-900:focus,html .btn-yellow-900:active:focus,html .btn-yellow-900.active:focus,.show>html .btn-yellow-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-yellow-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-yellow-900:focus,html[data-netbox-color-mode=light] .btn-yellow-900:active:focus,html[data-netbox-color-mode=light] .btn-yellow-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-yellow-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #52472780}html .btn-yellow-900:disabled,html .btn-yellow-900.disabled,html[data-netbox-color-mode=dark] .btn-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-yellow-900.disabled,html[data-netbox-color-mode=light] .btn-yellow-900:disabled,html[data-netbox-color-mode=light] .btn-yellow-900.disabled{color:#fff;background-color:#332701;border-color:#332701}}@media print{html .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}html .btn-green-100:hover,html[data-netbox-color-mode=dark] .btn-green-100:hover,html[data-netbox-color-mode=light] .btn-green-100:hover{color:#000;background-color:#d8ebe2;border-color:#d6e9e0}.btn-check:focus+html .btn-green-100,html .btn-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100:focus{color:#000;background-color:#d8ebe2;border-color:#d6e9e0;box-shadow:0 0 0 .25rem #b2c4bc80}.btn-check:checked+html .btn-green-100,.btn-check:active+html .btn-green-100,html .btn-green-100:active,html .btn-green-100.active,.show>html .btn-green-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100,html[data-netbox-color-mode=dark] .btn-green-100:active,html[data-netbox-color-mode=dark] .btn-green-100.active,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-100,html[data-netbox-color-mode=light] .btn-green-100:active,html[data-netbox-color-mode=light] .btn-green-100.active,.show>html[data-netbox-color-mode=light] .btn-green-100.dropdown-toggle{color:#000;background-color:#daece4;border-color:#d6e9e0}.btn-check:checked+html .btn-green-100:focus,.btn-check:active+html .btn-green-100:focus,html .btn-green-100:active:focus,html .btn-green-100.active:focus,.show>html .btn-green-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-100:focus,html[data-netbox-color-mode=dark] .btn-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-100:focus,html[data-netbox-color-mode=light] .btn-green-100:active:focus,html[data-netbox-color-mode=light] .btn-green-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b2c4bc80}html .btn-green-100:disabled,html .btn-green-100.disabled,html[data-netbox-color-mode=dark] .btn-green-100:disabled,html[data-netbox-color-mode=dark] .btn-green-100.disabled,html[data-netbox-color-mode=light] .btn-green-100:disabled,html[data-netbox-color-mode=light] .btn-green-100.disabled{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}}@media print{html .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}html .btn-green-200:hover,html[data-netbox-color-mode=dark] .btn-green-200:hover,html[data-netbox-color-mode=light] .btn-green-200:hover{color:#000;background-color:#b1d6c5;border-color:#acd4c2}.btn-check:focus+html .btn-green-200,html .btn-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200:focus{color:#000;background-color:#b1d6c5;border-color:#acd4c2;box-shadow:0 0 0 .25rem #8bb09f80}.btn-check:checked+html .btn-green-200,.btn-check:active+html .btn-green-200,html .btn-green-200:active,html .btn-green-200.active,.show>html .btn-green-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200,html[data-netbox-color-mode=dark] .btn-green-200:active,html[data-netbox-color-mode=dark] .btn-green-200.active,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-200,html[data-netbox-color-mode=light] .btn-green-200:active,html[data-netbox-color-mode=light] .btn-green-200.active,.show>html[data-netbox-color-mode=light] .btn-green-200.dropdown-toggle{color:#000;background-color:#b5d9c9;border-color:#acd4c2}.btn-check:checked+html .btn-green-200:focus,.btn-check:active+html .btn-green-200:focus,html .btn-green-200:active:focus,html .btn-green-200.active:focus,.show>html .btn-green-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-200:focus,html[data-netbox-color-mode=dark] .btn-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-200:focus,html[data-netbox-color-mode=light] .btn-green-200:active:focus,html[data-netbox-color-mode=light] .btn-green-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8bb09f80}html .btn-green-200:disabled,html .btn-green-200.disabled,html[data-netbox-color-mode=dark] .btn-green-200:disabled,html[data-netbox-color-mode=dark] .btn-green-200.disabled,html[data-netbox-color-mode=light] .btn-green-200:disabled,html[data-netbox-color-mode=light] .btn-green-200.disabled{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}}@media print{html .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300{color:#000;background-color:#75b798;border-color:#75b798}html .btn-green-300:hover,html[data-netbox-color-mode=dark] .btn-green-300:hover,html[data-netbox-color-mode=light] .btn-green-300:hover{color:#000;background-color:#8ac2a7;border-color:#83bea2}.btn-check:focus+html .btn-green-300,html .btn-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300:focus{color:#000;background-color:#8ac2a7;border-color:#83bea2;box-shadow:0 0 0 .25rem #639c8180}.btn-check:checked+html .btn-green-300,.btn-check:active+html .btn-green-300,html .btn-green-300:active,html .btn-green-300.active,.show>html .btn-green-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300,html[data-netbox-color-mode=dark] .btn-green-300:active,html[data-netbox-color-mode=dark] .btn-green-300.active,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-300,html[data-netbox-color-mode=light] .btn-green-300:active,html[data-netbox-color-mode=light] .btn-green-300.active,.show>html[data-netbox-color-mode=light] .btn-green-300.dropdown-toggle{color:#000;background-color:#91c5ad;border-color:#83bea2}.btn-check:checked+html .btn-green-300:focus,.btn-check:active+html .btn-green-300:focus,html .btn-green-300:active:focus,html .btn-green-300.active:focus,.show>html .btn-green-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-300:focus,html[data-netbox-color-mode=dark] .btn-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-300:focus,html[data-netbox-color-mode=light] .btn-green-300:active:focus,html[data-netbox-color-mode=light] .btn-green-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #639c8180}html .btn-green-300:disabled,html .btn-green-300.disabled,html[data-netbox-color-mode=dark] .btn-green-300:disabled,html[data-netbox-color-mode=dark] .btn-green-300.disabled,html[data-netbox-color-mode=light] .btn-green-300:disabled,html[data-netbox-color-mode=light] .btn-green-300.disabled{color:#000;background-color:#75b798;border-color:#75b798}}@media print{html .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400{color:#000;background-color:#479f76;border-color:#479f76}html .btn-green-400:hover,html[data-netbox-color-mode=dark] .btn-green-400:hover,html[data-netbox-color-mode=light] .btn-green-400:hover{color:#000;background-color:#63ad8b;border-color:#59a984}.btn-check:focus+html .btn-green-400,html .btn-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400:focus{color:#000;background-color:#63ad8b;border-color:#59a984;box-shadow:0 0 0 .25rem #3c876480}.btn-check:checked+html .btn-green-400,.btn-check:active+html .btn-green-400,html .btn-green-400:active,html .btn-green-400.active,.show>html .btn-green-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400,html[data-netbox-color-mode=dark] .btn-green-400:active,html[data-netbox-color-mode=dark] .btn-green-400.active,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-400,html[data-netbox-color-mode=light] .btn-green-400:active,html[data-netbox-color-mode=light] .btn-green-400.active,.show>html[data-netbox-color-mode=light] .btn-green-400.dropdown-toggle{color:#000;background-color:#6cb291;border-color:#59a984}.btn-check:checked+html .btn-green-400:focus,.btn-check:active+html .btn-green-400:focus,html .btn-green-400:active:focus,html .btn-green-400.active:focus,.show>html .btn-green-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-400:focus,html[data-netbox-color-mode=dark] .btn-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-400:focus,html[data-netbox-color-mode=light] .btn-green-400:active:focus,html[data-netbox-color-mode=light] .btn-green-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c876480}html .btn-green-400:disabled,html .btn-green-400.disabled,html[data-netbox-color-mode=dark] .btn-green-400:disabled,html[data-netbox-color-mode=dark] .btn-green-400.disabled,html[data-netbox-color-mode=light] .btn-green-400:disabled,html[data-netbox-color-mode=light] .btn-green-400.disabled{color:#000;background-color:#479f76;border-color:#479f76}}@media print{html .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500{color:#fff;background-color:#198754;border-color:#198754}html .btn-green-500:hover,html[data-netbox-color-mode=dark] .btn-green-500:hover,html[data-netbox-color-mode=light] .btn-green-500:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+html .btn-green-500,html .btn-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem #3c996e80}.btn-check:checked+html .btn-green-500,.btn-check:active+html .btn-green-500,html .btn-green-500:active,html .btn-green-500.active,.show>html .btn-green-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500,html[data-netbox-color-mode=dark] .btn-green-500:active,html[data-netbox-color-mode=dark] .btn-green-500.active,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-500,html[data-netbox-color-mode=light] .btn-green-500:active,html[data-netbox-color-mode=light] .btn-green-500.active,.show>html[data-netbox-color-mode=light] .btn-green-500.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+html .btn-green-500:focus,.btn-check:active+html .btn-green-500:focus,html .btn-green-500:active:focus,html .btn-green-500.active:focus,.show>html .btn-green-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-500:focus,html[data-netbox-color-mode=dark] .btn-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-500:focus,html[data-netbox-color-mode=light] .btn-green-500:active:focus,html[data-netbox-color-mode=light] .btn-green-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3c996e80}html .btn-green-500:disabled,html .btn-green-500.disabled,html[data-netbox-color-mode=dark] .btn-green-500:disabled,html[data-netbox-color-mode=dark] .btn-green-500.disabled,html[data-netbox-color-mode=light] .btn-green-500:disabled,html[data-netbox-color-mode=light] .btn-green-500.disabled{color:#fff;background-color:#198754;border-color:#198754}}@media print{html .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600{color:#fff;background-color:#146c43;border-color:#146c43}html .btn-green-600:hover,html[data-netbox-color-mode=dark] .btn-green-600:hover,html[data-netbox-color-mode=light] .btn-green-600:hover{color:#fff;background-color:#115c39;border-color:#105636}.btn-check:focus+html .btn-green-600,html .btn-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600:focus{color:#fff;background-color:#115c39;border-color:#105636;box-shadow:0 0 0 .25rem #37825f80}.btn-check:checked+html .btn-green-600,.btn-check:active+html .btn-green-600,html .btn-green-600:active,html .btn-green-600.active,.show>html .btn-green-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600,html[data-netbox-color-mode=dark] .btn-green-600:active,html[data-netbox-color-mode=dark] .btn-green-600.active,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-600,html[data-netbox-color-mode=light] .btn-green-600:active,html[data-netbox-color-mode=light] .btn-green-600.active,.show>html[data-netbox-color-mode=light] .btn-green-600.dropdown-toggle{color:#fff;background-color:#105636;border-color:#0f5132}.btn-check:checked+html .btn-green-600:focus,.btn-check:active+html .btn-green-600:focus,html .btn-green-600:active:focus,html .btn-green-600.active:focus,.show>html .btn-green-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-600:focus,html[data-netbox-color-mode=dark] .btn-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-600:focus,html[data-netbox-color-mode=light] .btn-green-600:active:focus,html[data-netbox-color-mode=light] .btn-green-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37825f80}html .btn-green-600:disabled,html .btn-green-600.disabled,html[data-netbox-color-mode=dark] .btn-green-600:disabled,html[data-netbox-color-mode=dark] .btn-green-600.disabled,html[data-netbox-color-mode=light] .btn-green-600:disabled,html[data-netbox-color-mode=light] .btn-green-600.disabled{color:#fff;background-color:#146c43;border-color:#146c43}}@media print{html .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700{color:#fff;background-color:#0f5132;border-color:#0f5132}html .btn-green-700:hover,html[data-netbox-color-mode=dark] .btn-green-700:hover,html[data-netbox-color-mode=light] .btn-green-700:hover{color:#fff;background-color:#0d452b;border-color:#0c4128}.btn-check:focus+html .btn-green-700,html .btn-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700:focus{color:#fff;background-color:#0d452b;border-color:#0c4128;box-shadow:0 0 0 .25rem #336b5180}.btn-check:checked+html .btn-green-700,.btn-check:active+html .btn-green-700,html .btn-green-700:active,html .btn-green-700.active,.show>html .btn-green-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700,html[data-netbox-color-mode=dark] .btn-green-700:active,html[data-netbox-color-mode=dark] .btn-green-700.active,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-700,html[data-netbox-color-mode=light] .btn-green-700:active,html[data-netbox-color-mode=light] .btn-green-700.active,.show>html[data-netbox-color-mode=light] .btn-green-700.dropdown-toggle{color:#fff;background-color:#0c4128;border-color:#0b3d26}.btn-check:checked+html .btn-green-700:focus,.btn-check:active+html .btn-green-700:focus,html .btn-green-700:active:focus,html .btn-green-700.active:focus,.show>html .btn-green-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-700:focus,html[data-netbox-color-mode=dark] .btn-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-700:focus,html[data-netbox-color-mode=light] .btn-green-700:active:focus,html[data-netbox-color-mode=light] .btn-green-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #336b5180}html .btn-green-700:disabled,html .btn-green-700.disabled,html[data-netbox-color-mode=dark] .btn-green-700:disabled,html[data-netbox-color-mode=dark] .btn-green-700.disabled,html[data-netbox-color-mode=light] .btn-green-700:disabled,html[data-netbox-color-mode=light] .btn-green-700.disabled{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800{color:#fff;background-color:#0a3622;border-color:#0a3622}html .btn-green-800:hover,html[data-netbox-color-mode=dark] .btn-green-800:hover,html[data-netbox-color-mode=light] .btn-green-800:hover{color:#fff;background-color:#092e1d;border-color:#082b1b}.btn-check:focus+html .btn-green-800,html .btn-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800:focus{color:#fff;background-color:#092e1d;border-color:#082b1b;box-shadow:0 0 0 .25rem #2f544380}.btn-check:checked+html .btn-green-800,.btn-check:active+html .btn-green-800,html .btn-green-800:active,html .btn-green-800.active,.show>html .btn-green-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800,html[data-netbox-color-mode=dark] .btn-green-800:active,html[data-netbox-color-mode=dark] .btn-green-800.active,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-800,html[data-netbox-color-mode=light] .btn-green-800:active,html[data-netbox-color-mode=light] .btn-green-800.active,.show>html[data-netbox-color-mode=light] .btn-green-800.dropdown-toggle{color:#fff;background-color:#082b1b;border-color:#08291a}.btn-check:checked+html .btn-green-800:focus,.btn-check:active+html .btn-green-800:focus,html .btn-green-800:active:focus,html .btn-green-800.active:focus,.show>html .btn-green-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-800:focus,html[data-netbox-color-mode=dark] .btn-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-800:focus,html[data-netbox-color-mode=light] .btn-green-800:active:focus,html[data-netbox-color-mode=light] .btn-green-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f544380}html .btn-green-800:disabled,html .btn-green-800.disabled,html[data-netbox-color-mode=dark] .btn-green-800:disabled,html[data-netbox-color-mode=dark] .btn-green-800.disabled,html[data-netbox-color-mode=light] .btn-green-800:disabled,html[data-netbox-color-mode=light] .btn-green-800.disabled{color:#fff;background-color:#0a3622;border-color:#0a3622}}@media print{html .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900{color:#fff;background-color:#051b11;border-color:#051b11}html .btn-green-900:hover,html[data-netbox-color-mode=dark] .btn-green-900:hover,html[data-netbox-color-mode=light] .btn-green-900:hover{color:#fff;background-color:#04170e;border-color:#04160e}.btn-check:focus+html .btn-green-900,html .btn-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900:focus{color:#fff;background-color:#04170e;border-color:#04160e;box-shadow:0 0 0 .25rem #2b3d3580}.btn-check:checked+html .btn-green-900,.btn-check:active+html .btn-green-900,html .btn-green-900:active,html .btn-green-900.active,.show>html .btn-green-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900,html[data-netbox-color-mode=dark] .btn-green-900:active,html[data-netbox-color-mode=dark] .btn-green-900.active,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-900,html[data-netbox-color-mode=light] .btn-green-900:active,html[data-netbox-color-mode=light] .btn-green-900.active,.show>html[data-netbox-color-mode=light] .btn-green-900.dropdown-toggle{color:#fff;background-color:#04160e;border-color:#04140d}.btn-check:checked+html .btn-green-900:focus,.btn-check:active+html .btn-green-900:focus,html .btn-green-900:active:focus,html .btn-green-900.active:focus,.show>html .btn-green-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-green-900:focus,html[data-netbox-color-mode=dark] .btn-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-green-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-green-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-green-900:focus,html[data-netbox-color-mode=light] .btn-green-900:active:focus,html[data-netbox-color-mode=light] .btn-green-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-green-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b3d3580}html .btn-green-900:disabled,html .btn-green-900.disabled,html[data-netbox-color-mode=dark] .btn-green-900:disabled,html[data-netbox-color-mode=dark] .btn-green-900.disabled,html[data-netbox-color-mode=light] .btn-green-900:disabled,html[data-netbox-color-mode=light] .btn-green-900.disabled{color:#fff;background-color:#051b11;border-color:#051b11}}@media print{html .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}html .btn-blue-100:hover,html[data-netbox-color-mode=dark] .btn-blue-100:hover,html[data-netbox-color-mode=light] .btn-blue-100:hover{color:#000;background-color:#d6e6ff;border-color:#d4e5ff}.btn-check:focus+html .btn-blue-100,html .btn-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100:focus{color:#000;background-color:#d6e6ff;border-color:#d4e5ff;box-shadow:0 0 0 .25rem #b0c0d980}.btn-check:checked+html .btn-blue-100,.btn-check:active+html .btn-blue-100,html .btn-blue-100:active,html .btn-blue-100.active,.show>html .btn-blue-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100,html[data-netbox-color-mode=dark] .btn-blue-100:active,html[data-netbox-color-mode=dark] .btn-blue-100.active,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-100,html[data-netbox-color-mode=light] .btn-blue-100:active,html[data-netbox-color-mode=light] .btn-blue-100.active,.show>html[data-netbox-color-mode=light] .btn-blue-100.dropdown-toggle{color:#000;background-color:#d9e8ff;border-color:#d4e5ff}.btn-check:checked+html .btn-blue-100:focus,.btn-check:active+html .btn-blue-100:focus,html .btn-blue-100:active:focus,html .btn-blue-100.active:focus,.show>html .btn-blue-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-100:focus,html[data-netbox-color-mode=dark] .btn-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-100:focus,html[data-netbox-color-mode=light] .btn-blue-100:active:focus,html[data-netbox-color-mode=light] .btn-blue-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0c0d980}html .btn-blue-100:disabled,html .btn-blue-100.disabled,html[data-netbox-color-mode=dark] .btn-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-blue-100.disabled,html[data-netbox-color-mode=light] .btn-blue-100:disabled,html[data-netbox-color-mode=light] .btn-blue-100.disabled{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}}@media print{html .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}html .btn-blue-200:hover,html[data-netbox-color-mode=dark] .btn-blue-200:hover,html[data-netbox-color-mode=light] .btn-blue-200:hover{color:#000;background-color:#adcefe;border-color:#a8cbfe}.btn-check:focus+html .btn-blue-200,html .btn-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200:focus{color:#000;background-color:#adcefe;border-color:#a8cbfe;box-shadow:0 0 0 .25rem #86a7d880}.btn-check:checked+html .btn-blue-200,.btn-check:active+html .btn-blue-200,html .btn-blue-200:active,html .btn-blue-200.active,.show>html .btn-blue-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200,html[data-netbox-color-mode=dark] .btn-blue-200:active,html[data-netbox-color-mode=dark] .btn-blue-200.active,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-200,html[data-netbox-color-mode=light] .btn-blue-200:active,html[data-netbox-color-mode=light] .btn-blue-200.active,.show>html[data-netbox-color-mode=light] .btn-blue-200.dropdown-toggle{color:#000;background-color:#b1d1fe;border-color:#a8cbfe}.btn-check:checked+html .btn-blue-200:focus,.btn-check:active+html .btn-blue-200:focus,html .btn-blue-200:active:focus,html .btn-blue-200.active:focus,.show>html .btn-blue-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-200:focus,html[data-netbox-color-mode=dark] .btn-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-200:focus,html[data-netbox-color-mode=light] .btn-blue-200:active:focus,html[data-netbox-color-mode=light] .btn-blue-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86a7d880}html .btn-blue-200:disabled,html .btn-blue-200.disabled,html[data-netbox-color-mode=dark] .btn-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-blue-200.disabled,html[data-netbox-color-mode=light] .btn-blue-200:disabled,html[data-netbox-color-mode=light] .btn-blue-200.disabled{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}}@media print{html .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}html .btn-blue-300:hover,html[data-netbox-color-mode=dark] .btn-blue-300:hover,html[data-netbox-color-mode=light] .btn-blue-300:hover{color:#000;background-color:#84b5fe;border-color:#7db1fe}.btn-check:focus+html .btn-blue-300,html .btn-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300:focus{color:#000;background-color:#84b5fe;border-color:#7db1fe;box-shadow:0 0 0 .25rem #5e8fd880}.btn-check:checked+html .btn-blue-300,.btn-check:active+html .btn-blue-300,html .btn-blue-300:active,html .btn-blue-300.active,.show>html .btn-blue-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300,html[data-netbox-color-mode=dark] .btn-blue-300:active,html[data-netbox-color-mode=dark] .btn-blue-300.active,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-300,html[data-netbox-color-mode=light] .btn-blue-300:active,html[data-netbox-color-mode=light] .btn-blue-300.active,.show>html[data-netbox-color-mode=light] .btn-blue-300.dropdown-toggle{color:#000;background-color:#8bb9fe;border-color:#7db1fe}.btn-check:checked+html .btn-blue-300:focus,.btn-check:active+html .btn-blue-300:focus,html .btn-blue-300:active:focus,html .btn-blue-300.active:focus,.show>html .btn-blue-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-300:focus,html[data-netbox-color-mode=dark] .btn-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-300:focus,html[data-netbox-color-mode=light] .btn-blue-300:active:focus,html[data-netbox-color-mode=light] .btn-blue-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5e8fd880}html .btn-blue-300:disabled,html .btn-blue-300.disabled,html[data-netbox-color-mode=dark] .btn-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-blue-300.disabled,html[data-netbox-color-mode=light] .btn-blue-300:disabled,html[data-netbox-color-mode=light] .btn-blue-300.disabled{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}}@media print{html .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}html .btn-blue-400:hover,html[data-netbox-color-mode=dark] .btn-blue-400:hover,html[data-netbox-color-mode=light] .btn-blue-400:hover{color:#000;background-color:#5a9cfd;border-color:#5097fd}.btn-check:focus+html .btn-blue-400,html .btn-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400:focus{color:#000;background-color:#5a9cfd;border-color:#5097fd;box-shadow:0 0 0 .25rem #3476d780}.btn-check:checked+html .btn-blue-400,.btn-check:active+html .btn-blue-400,html .btn-blue-400:active,html .btn-blue-400.active,.show>html .btn-blue-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400,html[data-netbox-color-mode=dark] .btn-blue-400:active,html[data-netbox-color-mode=dark] .btn-blue-400.active,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-400,html[data-netbox-color-mode=light] .btn-blue-400:active,html[data-netbox-color-mode=light] .btn-blue-400.active,.show>html[data-netbox-color-mode=light] .btn-blue-400.dropdown-toggle{color:#000;background-color:#64a2fd;border-color:#5097fd}.btn-check:checked+html .btn-blue-400:focus,.btn-check:active+html .btn-blue-400:focus,html .btn-blue-400:active:focus,html .btn-blue-400.active:focus,.show>html .btn-blue-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-400:focus,html[data-netbox-color-mode=dark] .btn-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-400:focus,html[data-netbox-color-mode=light] .btn-blue-400:active:focus,html[data-netbox-color-mode=light] .btn-blue-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3476d780}html .btn-blue-400:disabled,html .btn-blue-400.disabled,html[data-netbox-color-mode=dark] .btn-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-blue-400.disabled,html[data-netbox-color-mode=light] .btn-blue-400:disabled,html[data-netbox-color-mode=light] .btn-blue-400.disabled{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}}@media print{html .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500{color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .btn-blue-500:hover,html[data-netbox-color-mode=dark] .btn-blue-500:hover,html[data-netbox-color-mode=light] .btn-blue-500:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+html .btn-blue-500,html .btn-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem #3184fd80}.btn-check:checked+html .btn-blue-500,.btn-check:active+html .btn-blue-500,html .btn-blue-500:active,html .btn-blue-500.active,.show>html .btn-blue-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500,html[data-netbox-color-mode=dark] .btn-blue-500:active,html[data-netbox-color-mode=dark] .btn-blue-500.active,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-500,html[data-netbox-color-mode=light] .btn-blue-500:active,html[data-netbox-color-mode=light] .btn-blue-500.active,.show>html[data-netbox-color-mode=light] .btn-blue-500.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+html .btn-blue-500:focus,.btn-check:active+html .btn-blue-500:focus,html .btn-blue-500:active:focus,html .btn-blue-500.active:focus,.show>html .btn-blue-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-500:focus,html[data-netbox-color-mode=dark] .btn-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-500:focus,html[data-netbox-color-mode=light] .btn-blue-500:active:focus,html[data-netbox-color-mode=light] .btn-blue-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #3184fd80}html .btn-blue-500:disabled,html .btn-blue-500.disabled,html[data-netbox-color-mode=dark] .btn-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-blue-500.disabled,html[data-netbox-color-mode=light] .btn-blue-500:disabled,html[data-netbox-color-mode=light] .btn-blue-500.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}}@media print{html .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600{color:#fff;background-color:#0a58ca;border-color:#0a58ca}html .btn-blue-600:hover,html[data-netbox-color-mode=dark] .btn-blue-600:hover,html[data-netbox-color-mode=light] .btn-blue-600:hover{color:#fff;background-color:#094bac;border-color:#0846a2}.btn-check:focus+html .btn-blue-600,html .btn-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600:focus{color:#fff;background-color:#094bac;border-color:#0846a2;box-shadow:0 0 0 .25rem #2f71d280}.btn-check:checked+html .btn-blue-600,.btn-check:active+html .btn-blue-600,html .btn-blue-600:active,html .btn-blue-600.active,.show>html .btn-blue-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600,html[data-netbox-color-mode=dark] .btn-blue-600:active,html[data-netbox-color-mode=dark] .btn-blue-600.active,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-600,html[data-netbox-color-mode=light] .btn-blue-600:active,html[data-netbox-color-mode=light] .btn-blue-600.active,.show>html[data-netbox-color-mode=light] .btn-blue-600.dropdown-toggle{color:#fff;background-color:#0846a2;border-color:#084298}.btn-check:checked+html .btn-blue-600:focus,.btn-check:active+html .btn-blue-600:focus,html .btn-blue-600:active:focus,html .btn-blue-600.active:focus,.show>html .btn-blue-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-600:focus,html[data-netbox-color-mode=dark] .btn-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-600:focus,html[data-netbox-color-mode=light] .btn-blue-600:active:focus,html[data-netbox-color-mode=light] .btn-blue-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2f71d280}html .btn-blue-600:disabled,html .btn-blue-600.disabled,html[data-netbox-color-mode=dark] .btn-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-blue-600.disabled,html[data-netbox-color-mode=light] .btn-blue-600:disabled,html[data-netbox-color-mode=light] .btn-blue-600.disabled{color:#fff;background-color:#0a58ca;border-color:#0a58ca}}@media print{html .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700{color:#fff;background-color:#084298;border-color:#084298}html .btn-blue-700:hover,html[data-netbox-color-mode=dark] .btn-blue-700:hover,html[data-netbox-color-mode=light] .btn-blue-700:hover{color:#fff;background-color:#073881;border-color:#06357a}.btn-check:focus+html .btn-blue-700,html .btn-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700:focus{color:#fff;background-color:#073881;border-color:#06357a;box-shadow:0 0 0 .25rem #2d5ea780}.btn-check:checked+html .btn-blue-700,.btn-check:active+html .btn-blue-700,html .btn-blue-700:active,html .btn-blue-700.active,.show>html .btn-blue-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700,html[data-netbox-color-mode=dark] .btn-blue-700:active,html[data-netbox-color-mode=dark] .btn-blue-700.active,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-700,html[data-netbox-color-mode=light] .btn-blue-700:active,html[data-netbox-color-mode=light] .btn-blue-700.active,.show>html[data-netbox-color-mode=light] .btn-blue-700.dropdown-toggle{color:#fff;background-color:#06357a;border-color:#063272}.btn-check:checked+html .btn-blue-700:focus,.btn-check:active+html .btn-blue-700:focus,html .btn-blue-700:active:focus,html .btn-blue-700.active:focus,.show>html .btn-blue-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-700:focus,html[data-netbox-color-mode=dark] .btn-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-700:focus,html[data-netbox-color-mode=light] .btn-blue-700:active:focus,html[data-netbox-color-mode=light] .btn-blue-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d5ea780}html .btn-blue-700:disabled,html .btn-blue-700.disabled,html[data-netbox-color-mode=dark] .btn-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-blue-700.disabled,html[data-netbox-color-mode=light] .btn-blue-700:disabled,html[data-netbox-color-mode=light] .btn-blue-700.disabled{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800{color:#fff;background-color:#052c65;border-color:#052c65}html .btn-blue-800:hover,html[data-netbox-color-mode=dark] .btn-blue-800:hover,html[data-netbox-color-mode=light] .btn-blue-800:hover{color:#fff;background-color:#042556;border-color:#042351}.btn-check:focus+html .btn-blue-800,html .btn-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800:focus{color:#fff;background-color:#042556;border-color:#042351;box-shadow:0 0 0 .25rem #2b4c7c80}.btn-check:checked+html .btn-blue-800,.btn-check:active+html .btn-blue-800,html .btn-blue-800:active,html .btn-blue-800.active,.show>html .btn-blue-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800,html[data-netbox-color-mode=dark] .btn-blue-800:active,html[data-netbox-color-mode=dark] .btn-blue-800.active,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-800,html[data-netbox-color-mode=light] .btn-blue-800:active,html[data-netbox-color-mode=light] .btn-blue-800.active,.show>html[data-netbox-color-mode=light] .btn-blue-800.dropdown-toggle{color:#fff;background-color:#042351;border-color:#04214c}.btn-check:checked+html .btn-blue-800:focus,.btn-check:active+html .btn-blue-800:focus,html .btn-blue-800:active:focus,html .btn-blue-800.active:focus,.show>html .btn-blue-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-800:focus,html[data-netbox-color-mode=dark] .btn-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-800:focus,html[data-netbox-color-mode=light] .btn-blue-800:active:focus,html[data-netbox-color-mode=light] .btn-blue-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b4c7c80}html .btn-blue-800:disabled,html .btn-blue-800.disabled,html[data-netbox-color-mode=dark] .btn-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-blue-800.disabled,html[data-netbox-color-mode=light] .btn-blue-800:disabled,html[data-netbox-color-mode=light] .btn-blue-800.disabled{color:#fff;background-color:#052c65;border-color:#052c65}}@media print{html .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900{color:#fff;background-color:#031633;border-color:#031633}html .btn-blue-900:hover,html[data-netbox-color-mode=dark] .btn-blue-900:hover,html[data-netbox-color-mode=light] .btn-blue-900:hover{color:#fff;background-color:#03132b;border-color:#021229}.btn-check:focus+html .btn-blue-900,html .btn-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900:focus{color:#fff;background-color:#03132b;border-color:#021229;box-shadow:0 0 0 .25rem #29395280}.btn-check:checked+html .btn-blue-900,.btn-check:active+html .btn-blue-900,html .btn-blue-900:active,html .btn-blue-900.active,.show>html .btn-blue-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900,html[data-netbox-color-mode=dark] .btn-blue-900:active,html[data-netbox-color-mode=dark] .btn-blue-900.active,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-900,html[data-netbox-color-mode=light] .btn-blue-900:active,html[data-netbox-color-mode=light] .btn-blue-900.active,.show>html[data-netbox-color-mode=light] .btn-blue-900.dropdown-toggle{color:#fff;background-color:#021229;border-color:#021126}.btn-check:checked+html .btn-blue-900:focus,.btn-check:active+html .btn-blue-900:focus,html .btn-blue-900:active:focus,html .btn-blue-900.active:focus,.show>html .btn-blue-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-blue-900:focus,html[data-netbox-color-mode=dark] .btn-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-blue-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-blue-900:focus,html[data-netbox-color-mode=light] .btn-blue-900:active:focus,html[data-netbox-color-mode=light] .btn-blue-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-blue-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29395280}html .btn-blue-900:disabled,html .btn-blue-900.disabled,html[data-netbox-color-mode=dark] .btn-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-blue-900.disabled,html[data-netbox-color-mode=light] .btn-blue-900:disabled,html[data-netbox-color-mode=light] .btn-blue-900.disabled{color:#fff;background-color:#031633;border-color:#031633}}@media print{html .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100{color:#000;background-color:#cff4fc;border-color:#cff4fc}html .btn-cyan-100:hover,html[data-netbox-color-mode=dark] .btn-cyan-100:hover,html[data-netbox-color-mode=light] .btn-cyan-100:hover{color:#000;background-color:#d6f6fc;border-color:#d4f5fc}.btn-check:focus+html .btn-cyan-100,html .btn-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100:focus{color:#000;background-color:#d6f6fc;border-color:#d4f5fc;box-shadow:0 0 0 .25rem #b0cfd680}.btn-check:checked+html .btn-cyan-100,.btn-check:active+html .btn-cyan-100,html .btn-cyan-100:active,html .btn-cyan-100.active,.show>html .btn-cyan-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100,html[data-netbox-color-mode=dark] .btn-cyan-100:active,html[data-netbox-color-mode=dark] .btn-cyan-100.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-100,html[data-netbox-color-mode=light] .btn-cyan-100:active,html[data-netbox-color-mode=light] .btn-cyan-100.active,.show>html[data-netbox-color-mode=light] .btn-cyan-100.dropdown-toggle{color:#000;background-color:#d9f6fd;border-color:#d4f5fc}.btn-check:checked+html .btn-cyan-100:focus,.btn-check:active+html .btn-cyan-100:focus,html .btn-cyan-100:active:focus,html .btn-cyan-100.active:focus,.show>html .btn-cyan-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-100:focus,html[data-netbox-color-mode=light] .btn-cyan-100:active:focus,html[data-netbox-color-mode=light] .btn-cyan-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b0cfd680}html .btn-cyan-100:disabled,html .btn-cyan-100.disabled,html[data-netbox-color-mode=dark] .btn-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-cyan-100.disabled,html[data-netbox-color-mode=light] .btn-cyan-100:disabled,html[data-netbox-color-mode=light] .btn-cyan-100.disabled{color:#000;background-color:#cff4fc;border-color:#cff4fc}}@media print{html .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}html .btn-cyan-200:hover,html[data-netbox-color-mode=dark] .btn-cyan-200:hover,html[data-netbox-color-mode=light] .btn-cyan-200:hover{color:#000;background-color:#adedfa;border-color:#a8ecfa}.btn-check:focus+html .btn-cyan-200,html .btn-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200:focus{color:#000;background-color:#adedfa;border-color:#a8ecfa;box-shadow:0 0 0 .25rem #86c7d480}.btn-check:checked+html .btn-cyan-200,.btn-check:active+html .btn-cyan-200,html .btn-cyan-200:active,html .btn-cyan-200.active,.show>html .btn-cyan-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200,html[data-netbox-color-mode=dark] .btn-cyan-200:active,html[data-netbox-color-mode=dark] .btn-cyan-200.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-200,html[data-netbox-color-mode=light] .btn-cyan-200:active,html[data-netbox-color-mode=light] .btn-cyan-200.active,.show>html[data-netbox-color-mode=light] .btn-cyan-200.dropdown-toggle{color:#000;background-color:#b1eefa;border-color:#a8ecfa}.btn-check:checked+html .btn-cyan-200:focus,.btn-check:active+html .btn-cyan-200:focus,html .btn-cyan-200:active:focus,html .btn-cyan-200.active:focus,.show>html .btn-cyan-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-200:focus,html[data-netbox-color-mode=light] .btn-cyan-200:active:focus,html[data-netbox-color-mode=light] .btn-cyan-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #86c7d480}html .btn-cyan-200:disabled,html .btn-cyan-200.disabled,html[data-netbox-color-mode=dark] .btn-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-cyan-200.disabled,html[data-netbox-color-mode=light] .btn-cyan-200:disabled,html[data-netbox-color-mode=light] .btn-cyan-200.disabled{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}}@media print{html .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300{color:#000;background-color:#6edff6;border-color:#6edff6}html .btn-cyan-300:hover,html[data-netbox-color-mode=dark] .btn-cyan-300:hover,html[data-netbox-color-mode=light] .btn-cyan-300:hover{color:#000;background-color:#84e4f7;border-color:#7de2f7}.btn-check:focus+html .btn-cyan-300,html .btn-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300:focus{color:#000;background-color:#84e4f7;border-color:#7de2f7;box-shadow:0 0 0 .25rem #5ebed180}.btn-check:checked+html .btn-cyan-300,.btn-check:active+html .btn-cyan-300,html .btn-cyan-300:active,html .btn-cyan-300.active,.show>html .btn-cyan-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300,html[data-netbox-color-mode=dark] .btn-cyan-300:active,html[data-netbox-color-mode=dark] .btn-cyan-300.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-300,html[data-netbox-color-mode=light] .btn-cyan-300:active,html[data-netbox-color-mode=light] .btn-cyan-300.active,.show>html[data-netbox-color-mode=light] .btn-cyan-300.dropdown-toggle{color:#000;background-color:#8be5f8;border-color:#7de2f7}.btn-check:checked+html .btn-cyan-300:focus,.btn-check:active+html .btn-cyan-300:focus,html .btn-cyan-300:active:focus,html .btn-cyan-300.active:focus,.show>html .btn-cyan-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-300:focus,html[data-netbox-color-mode=light] .btn-cyan-300:active:focus,html[data-netbox-color-mode=light] .btn-cyan-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5ebed180}html .btn-cyan-300:disabled,html .btn-cyan-300.disabled,html[data-netbox-color-mode=dark] .btn-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-cyan-300.disabled,html[data-netbox-color-mode=light] .btn-cyan-300:disabled,html[data-netbox-color-mode=light] .btn-cyan-300.disabled{color:#000;background-color:#6edff6;border-color:#6edff6}}@media print{html .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}html .btn-cyan-400:hover,html[data-netbox-color-mode=dark] .btn-cyan-400:hover,html[data-netbox-color-mode=light] .btn-cyan-400:hover{color:#000;background-color:#5adbf5;border-color:#50d9f4}.btn-check:focus+html .btn-cyan-400,html .btn-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400:focus{color:#000;background-color:#5adbf5;border-color:#50d9f4;box-shadow:0 0 0 .25rem #34b5cf80}.btn-check:checked+html .btn-cyan-400,.btn-check:active+html .btn-cyan-400,html .btn-cyan-400:active,html .btn-cyan-400.active,.show>html .btn-cyan-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400,html[data-netbox-color-mode=dark] .btn-cyan-400:active,html[data-netbox-color-mode=dark] .btn-cyan-400.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-400,html[data-netbox-color-mode=light] .btn-cyan-400:active,html[data-netbox-color-mode=light] .btn-cyan-400.active,.show>html[data-netbox-color-mode=light] .btn-cyan-400.dropdown-toggle{color:#000;background-color:#64ddf5;border-color:#50d9f4}.btn-check:checked+html .btn-cyan-400:focus,.btn-check:active+html .btn-cyan-400:focus,html .btn-cyan-400:active:focus,html .btn-cyan-400.active:focus,.show>html .btn-cyan-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-400:focus,html[data-netbox-color-mode=light] .btn-cyan-400:active:focus,html[data-netbox-color-mode=light] .btn-cyan-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #34b5cf80}html .btn-cyan-400:disabled,html .btn-cyan-400.disabled,html[data-netbox-color-mode=dark] .btn-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-cyan-400.disabled,html[data-netbox-color-mode=light] .btn-cyan-400:disabled,html[data-netbox-color-mode=light] .btn-cyan-400.disabled{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}}@media print{html .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}html .btn-cyan-500:hover,html[data-netbox-color-mode=dark] .btn-cyan-500:hover,html[data-netbox-color-mode=light] .btn-cyan-500:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+html .btn-cyan-500,html .btn-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem #0baccc80}.btn-check:checked+html .btn-cyan-500,.btn-check:active+html .btn-cyan-500,html .btn-cyan-500:active,html .btn-cyan-500.active,.show>html .btn-cyan-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500,html[data-netbox-color-mode=dark] .btn-cyan-500:active,html[data-netbox-color-mode=dark] .btn-cyan-500.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-500,html[data-netbox-color-mode=light] .btn-cyan-500:active,html[data-netbox-color-mode=light] .btn-cyan-500.active,.show>html[data-netbox-color-mode=light] .btn-cyan-500.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+html .btn-cyan-500:focus,.btn-check:active+html .btn-cyan-500:focus,html .btn-cyan-500:active:focus,html .btn-cyan-500.active:focus,.show>html .btn-cyan-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-500:focus,html[data-netbox-color-mode=light] .btn-cyan-500:active:focus,html[data-netbox-color-mode=light] .btn-cyan-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #0baccc80}html .btn-cyan-500:disabled,html .btn-cyan-500.disabled,html[data-netbox-color-mode=dark] .btn-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-cyan-500.disabled,html[data-netbox-color-mode=light] .btn-cyan-500:disabled,html[data-netbox-color-mode=light] .btn-cyan-500.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}}@media print{html .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}html .btn-cyan-600:hover,html[data-netbox-color-mode=dark] .btn-cyan-600:hover,html[data-netbox-color-mode=light] .btn-cyan-600:hover{color:#000;background-color:#2fb0c9;border-color:#23abc6}.btn-check:focus+html .btn-cyan-600,html .btn-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600:focus{color:#000;background-color:#2fb0c9;border-color:#23abc6;box-shadow:0 0 0 .25rem #098aa380}.btn-check:checked+html .btn-cyan-600,.btn-check:active+html .btn-cyan-600,html .btn-cyan-600:active,html .btn-cyan-600.active,.show>html .btn-cyan-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600,html[data-netbox-color-mode=dark] .btn-cyan-600:active,html[data-netbox-color-mode=dark] .btn-cyan-600.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-600,html[data-netbox-color-mode=light] .btn-cyan-600:active,html[data-netbox-color-mode=light] .btn-cyan-600.active,.show>html[data-netbox-color-mode=light] .btn-cyan-600.dropdown-toggle{color:#000;background-color:#3bb5cd;border-color:#23abc6}.btn-check:checked+html .btn-cyan-600:focus,.btn-check:active+html .btn-cyan-600:focus,html .btn-cyan-600:active:focus,html .btn-cyan-600.active:focus,.show>html .btn-cyan-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-600:focus,html[data-netbox-color-mode=light] .btn-cyan-600:active:focus,html[data-netbox-color-mode=light] .btn-cyan-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #098aa380}html .btn-cyan-600:disabled,html .btn-cyan-600.disabled,html[data-netbox-color-mode=dark] .btn-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-cyan-600.disabled,html[data-netbox-color-mode=light] .btn-cyan-600:disabled,html[data-netbox-color-mode=light] .btn-cyan-600.disabled{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}}@media print{html .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700{color:#fff;background-color:#087990;border-color:#087990}html .btn-cyan-700:hover,html[data-netbox-color-mode=dark] .btn-cyan-700:hover,html[data-netbox-color-mode=light] .btn-cyan-700:hover{color:#fff;background-color:#07677a;border-color:#066173}.btn-check:focus+html .btn-cyan-700,html .btn-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700:focus{color:#fff;background-color:#07677a;border-color:#066173;box-shadow:0 0 0 .25rem #2d8da180}.btn-check:checked+html .btn-cyan-700,.btn-check:active+html .btn-cyan-700,html .btn-cyan-700:active,html .btn-cyan-700.active,.show>html .btn-cyan-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700,html[data-netbox-color-mode=dark] .btn-cyan-700:active,html[data-netbox-color-mode=dark] .btn-cyan-700.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-700,html[data-netbox-color-mode=light] .btn-cyan-700:active,html[data-netbox-color-mode=light] .btn-cyan-700.active,.show>html[data-netbox-color-mode=light] .btn-cyan-700.dropdown-toggle{color:#fff;background-color:#066173;border-color:#065b6c}.btn-check:checked+html .btn-cyan-700:focus,.btn-check:active+html .btn-cyan-700:focus,html .btn-cyan-700:active:focus,html .btn-cyan-700.active:focus,.show>html .btn-cyan-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-700:focus,html[data-netbox-color-mode=light] .btn-cyan-700:active:focus,html[data-netbox-color-mode=light] .btn-cyan-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2d8da180}html .btn-cyan-700:disabled,html .btn-cyan-700.disabled,html[data-netbox-color-mode=dark] .btn-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-cyan-700.disabled,html[data-netbox-color-mode=light] .btn-cyan-700:disabled,html[data-netbox-color-mode=light] .btn-cyan-700.disabled{color:#fff;background-color:#087990;border-color:#087990}}@media print{html .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800{color:#fff;background-color:#055160;border-color:#055160}html .btn-cyan-800:hover,html[data-netbox-color-mode=dark] .btn-cyan-800:hover,html[data-netbox-color-mode=light] .btn-cyan-800:hover{color:#fff;background-color:#044552;border-color:#04414d}.btn-check:focus+html .btn-cyan-800,html .btn-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800:focus{color:#fff;background-color:#044552;border-color:#04414d;box-shadow:0 0 0 .25rem #2b6b7880}.btn-check:checked+html .btn-cyan-800,.btn-check:active+html .btn-cyan-800,html .btn-cyan-800:active,html .btn-cyan-800.active,.show>html .btn-cyan-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800,html[data-netbox-color-mode=dark] .btn-cyan-800:active,html[data-netbox-color-mode=dark] .btn-cyan-800.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-800,html[data-netbox-color-mode=light] .btn-cyan-800:active,html[data-netbox-color-mode=light] .btn-cyan-800.active,.show>html[data-netbox-color-mode=light] .btn-cyan-800.dropdown-toggle{color:#fff;background-color:#04414d;border-color:#043d48}.btn-check:checked+html .btn-cyan-800:focus,.btn-check:active+html .btn-cyan-800:focus,html .btn-cyan-800:active:focus,html .btn-cyan-800.active:focus,.show>html .btn-cyan-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-800:focus,html[data-netbox-color-mode=light] .btn-cyan-800:active:focus,html[data-netbox-color-mode=light] .btn-cyan-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #2b6b7880}html .btn-cyan-800:disabled,html .btn-cyan-800.disabled,html[data-netbox-color-mode=dark] .btn-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-cyan-800.disabled,html[data-netbox-color-mode=light] .btn-cyan-800:disabled,html[data-netbox-color-mode=light] .btn-cyan-800.disabled{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900{color:#fff;background-color:#032830;border-color:#032830}html .btn-cyan-900:hover,html[data-netbox-color-mode=dark] .btn-cyan-900:hover,html[data-netbox-color-mode=light] .btn-cyan-900:hover{color:#fff;background-color:#032229;border-color:#022026}.btn-check:focus+html .btn-cyan-900,html .btn-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900:focus{color:#fff;background-color:#032229;border-color:#022026;box-shadow:0 0 0 .25rem #29484f80}.btn-check:checked+html .btn-cyan-900,.btn-check:active+html .btn-cyan-900,html .btn-cyan-900:active,html .btn-cyan-900.active,.show>html .btn-cyan-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900,html[data-netbox-color-mode=dark] .btn-cyan-900:active,html[data-netbox-color-mode=dark] .btn-cyan-900.active,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-900,html[data-netbox-color-mode=light] .btn-cyan-900:active,html[data-netbox-color-mode=light] .btn-cyan-900.active,.show>html[data-netbox-color-mode=light] .btn-cyan-900.dropdown-toggle{color:#fff;background-color:#022026;border-color:#021e24}.btn-check:checked+html .btn-cyan-900:focus,.btn-check:active+html .btn-cyan-900:focus,html .btn-cyan-900:active:focus,html .btn-cyan-900.active:focus,.show>html .btn-cyan-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-cyan-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-cyan-900:focus,html[data-netbox-color-mode=light] .btn-cyan-900:active:focus,html[data-netbox-color-mode=light] .btn-cyan-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-cyan-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #29484f80}html .btn-cyan-900:disabled,html .btn-cyan-900.disabled,html[data-netbox-color-mode=dark] .btn-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-cyan-900.disabled,html[data-netbox-color-mode=light] .btn-cyan-900:disabled,html[data-netbox-color-mode=light] .btn-cyan-900.disabled{color:#fff;background-color:#032830;border-color:#032830}}@media print{html .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100{color:#000;background-color:#e0cffc;border-color:#e0cffc}html .btn-indigo-100:hover,html[data-netbox-color-mode=dark] .btn-indigo-100:hover,html[data-netbox-color-mode=light] .btn-indigo-100:hover{color:#000;background-color:#e5d6fc;border-color:#e3d4fc}.btn-check:focus+html .btn-indigo-100,html .btn-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100:focus{color:#000;background-color:#e5d6fc;border-color:#e3d4fc;box-shadow:0 0 0 .25rem #beb0d680}.btn-check:checked+html .btn-indigo-100,.btn-check:active+html .btn-indigo-100,html .btn-indigo-100:active,html .btn-indigo-100.active,.show>html .btn-indigo-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100,html[data-netbox-color-mode=dark] .btn-indigo-100:active,html[data-netbox-color-mode=dark] .btn-indigo-100.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-100,html[data-netbox-color-mode=light] .btn-indigo-100:active,html[data-netbox-color-mode=light] .btn-indigo-100.active,.show>html[data-netbox-color-mode=light] .btn-indigo-100.dropdown-toggle{color:#000;background-color:#e6d9fd;border-color:#e3d4fc}.btn-check:checked+html .btn-indigo-100:focus,.btn-check:active+html .btn-indigo-100:focus,html .btn-indigo-100:active:focus,html .btn-indigo-100.active:focus,.show>html .btn-indigo-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-100:focus,html[data-netbox-color-mode=light] .btn-indigo-100:active:focus,html[data-netbox-color-mode=light] .btn-indigo-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #beb0d680}html .btn-indigo-100:disabled,html .btn-indigo-100.disabled,html[data-netbox-color-mode=dark] .btn-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-indigo-100.disabled,html[data-netbox-color-mode=light] .btn-indigo-100:disabled,html[data-netbox-color-mode=light] .btn-indigo-100.disabled{color:#000;background-color:#e0cffc;border-color:#e0cffc}}@media print{html .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200{color:#000;background-color:#c29ffa;border-color:#c29ffa}html .btn-indigo-200:hover,html[data-netbox-color-mode=dark] .btn-indigo-200:hover,html[data-netbox-color-mode=light] .btn-indigo-200:hover{color:#000;background-color:#cbadfb;border-color:#c8a9fb}.btn-check:focus+html .btn-indigo-200,html .btn-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200:focus{color:#000;background-color:#cbadfb;border-color:#c8a9fb;box-shadow:0 0 0 .25rem #a587d580}.btn-check:checked+html .btn-indigo-200,.btn-check:active+html .btn-indigo-200,html .btn-indigo-200:active,html .btn-indigo-200.active,.show>html .btn-indigo-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200,html[data-netbox-color-mode=dark] .btn-indigo-200:active,html[data-netbox-color-mode=dark] .btn-indigo-200.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-200,html[data-netbox-color-mode=light] .btn-indigo-200:active,html[data-netbox-color-mode=light] .btn-indigo-200.active,.show>html[data-netbox-color-mode=light] .btn-indigo-200.dropdown-toggle{color:#000;background-color:#ceb2fb;border-color:#c8a9fb}.btn-check:checked+html .btn-indigo-200:focus,.btn-check:active+html .btn-indigo-200:focus,html .btn-indigo-200:active:focus,html .btn-indigo-200.active:focus,.show>html .btn-indigo-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-200:focus,html[data-netbox-color-mode=light] .btn-indigo-200:active:focus,html[data-netbox-color-mode=light] .btn-indigo-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a587d580}html .btn-indigo-200:disabled,html .btn-indigo-200.disabled,html[data-netbox-color-mode=dark] .btn-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-indigo-200.disabled,html[data-netbox-color-mode=light] .btn-indigo-200:disabled,html[data-netbox-color-mode=light] .btn-indigo-200.disabled{color:#000;background-color:#c29ffa;border-color:#c29ffa}}@media print{html .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300{color:#000;background-color:#a370f7;border-color:#a370f7}html .btn-indigo-300:hover,html[data-netbox-color-mode=dark] .btn-indigo-300:hover,html[data-netbox-color-mode=light] .btn-indigo-300:hover{color:#000;background-color:#b185f8;border-color:#ac7ef8}.btn-check:focus+html .btn-indigo-300,html .btn-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300:focus{color:#000;background-color:#b185f8;border-color:#ac7ef8;box-shadow:0 0 0 .25rem #8b5fd280}.btn-check:checked+html .btn-indigo-300,.btn-check:active+html .btn-indigo-300,html .btn-indigo-300:active,html .btn-indigo-300.active,.show>html .btn-indigo-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300,html[data-netbox-color-mode=dark] .btn-indigo-300:active,html[data-netbox-color-mode=dark] .btn-indigo-300.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-300,html[data-netbox-color-mode=light] .btn-indigo-300:active,html[data-netbox-color-mode=light] .btn-indigo-300.active,.show>html[data-netbox-color-mode=light] .btn-indigo-300.dropdown-toggle{color:#000;background-color:#b58df9;border-color:#ac7ef8}.btn-check:checked+html .btn-indigo-300:focus,.btn-check:active+html .btn-indigo-300:focus,html .btn-indigo-300:active:focus,html .btn-indigo-300.active:focus,.show>html .btn-indigo-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-300:focus,html[data-netbox-color-mode=light] .btn-indigo-300:active:focus,html[data-netbox-color-mode=light] .btn-indigo-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #8b5fd280}html .btn-indigo-300:disabled,html .btn-indigo-300.disabled,html[data-netbox-color-mode=dark] .btn-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-indigo-300.disabled,html[data-netbox-color-mode=light] .btn-indigo-300:disabled,html[data-netbox-color-mode=light] .btn-indigo-300.disabled{color:#000;background-color:#a370f7;border-color:#a370f7}}@media print{html .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400{color:#fff;background-color:#8540f5;border-color:#8540f5}html .btn-indigo-400:hover,html[data-netbox-color-mode=dark] .btn-indigo-400:hover,html[data-netbox-color-mode=light] .btn-indigo-400:hover{color:#fff;background-color:#7136d0;border-color:#6a33c4}.btn-check:focus+html .btn-indigo-400,html .btn-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400:focus{color:#fff;background-color:#7136d0;border-color:#6a33c4;box-shadow:0 0 0 .25rem #975df780}.btn-check:checked+html .btn-indigo-400,.btn-check:active+html .btn-indigo-400,html .btn-indigo-400:active,html .btn-indigo-400.active,.show>html .btn-indigo-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400,html[data-netbox-color-mode=dark] .btn-indigo-400:active,html[data-netbox-color-mode=dark] .btn-indigo-400.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-400,html[data-netbox-color-mode=light] .btn-indigo-400:active,html[data-netbox-color-mode=light] .btn-indigo-400.active,.show>html[data-netbox-color-mode=light] .btn-indigo-400.dropdown-toggle{color:#fff;background-color:#6a33c4;border-color:#6430b8}.btn-check:checked+html .btn-indigo-400:focus,.btn-check:active+html .btn-indigo-400:focus,html .btn-indigo-400:active:focus,html .btn-indigo-400.active:focus,.show>html .btn-indigo-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-400:focus,html[data-netbox-color-mode=light] .btn-indigo-400:active:focus,html[data-netbox-color-mode=light] .btn-indigo-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #975df780}html .btn-indigo-400:disabled,html .btn-indigo-400.disabled,html[data-netbox-color-mode=dark] .btn-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-indigo-400.disabled,html[data-netbox-color-mode=light] .btn-indigo-400:disabled,html[data-netbox-color-mode=light] .btn-indigo-400.disabled{color:#fff;background-color:#8540f5;border-color:#8540f5}}@media print{html .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500{color:#fff;background-color:#6610f2;border-color:#6610f2}html .btn-indigo-500:hover,html[data-netbox-color-mode=dark] .btn-indigo-500:hover,html[data-netbox-color-mode=light] .btn-indigo-500:hover{color:#fff;background-color:#570ece;border-color:#520dc2}.btn-check:focus+html .btn-indigo-500,html .btn-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500:focus{color:#fff;background-color:#570ece;border-color:#520dc2;box-shadow:0 0 0 .25rem #7d34f480}.btn-check:checked+html .btn-indigo-500,.btn-check:active+html .btn-indigo-500,html .btn-indigo-500:active,html .btn-indigo-500.active,.show>html .btn-indigo-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500,html[data-netbox-color-mode=dark] .btn-indigo-500:active,html[data-netbox-color-mode=dark] .btn-indigo-500.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-500,html[data-netbox-color-mode=light] .btn-indigo-500:active,html[data-netbox-color-mode=light] .btn-indigo-500.active,.show>html[data-netbox-color-mode=light] .btn-indigo-500.dropdown-toggle{color:#fff;background-color:#520dc2;border-color:#4d0cb6}.btn-check:checked+html .btn-indigo-500:focus,.btn-check:active+html .btn-indigo-500:focus,html .btn-indigo-500:active:focus,html .btn-indigo-500.active:focus,.show>html .btn-indigo-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-500:focus,html[data-netbox-color-mode=light] .btn-indigo-500:active:focus,html[data-netbox-color-mode=light] .btn-indigo-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7d34f480}html .btn-indigo-500:disabled,html .btn-indigo-500.disabled,html[data-netbox-color-mode=dark] .btn-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-indigo-500.disabled,html[data-netbox-color-mode=light] .btn-indigo-500:disabled,html[data-netbox-color-mode=light] .btn-indigo-500.disabled{color:#fff;background-color:#6610f2;border-color:#6610f2}}@media print{html .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600{color:#fff;background-color:#520dc2;border-color:#520dc2}html .btn-indigo-600:hover,html[data-netbox-color-mode=dark] .btn-indigo-600:hover,html[data-netbox-color-mode=light] .btn-indigo-600:hover{color:#fff;background-color:#460ba5;border-color:#420a9b}.btn-check:focus+html .btn-indigo-600,html .btn-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600:focus{color:#fff;background-color:#460ba5;border-color:#420a9b;box-shadow:0 0 0 .25rem #6c31cb80}.btn-check:checked+html .btn-indigo-600,.btn-check:active+html .btn-indigo-600,html .btn-indigo-600:active,html .btn-indigo-600.active,.show>html .btn-indigo-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600,html[data-netbox-color-mode=dark] .btn-indigo-600:active,html[data-netbox-color-mode=dark] .btn-indigo-600.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-600,html[data-netbox-color-mode=light] .btn-indigo-600:active,html[data-netbox-color-mode=light] .btn-indigo-600.active,.show>html[data-netbox-color-mode=light] .btn-indigo-600.dropdown-toggle{color:#fff;background-color:#420a9b;border-color:#3e0a92}.btn-check:checked+html .btn-indigo-600:focus,.btn-check:active+html .btn-indigo-600:focus,html .btn-indigo-600:active:focus,html .btn-indigo-600.active:focus,.show>html .btn-indigo-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-600:focus,html[data-netbox-color-mode=light] .btn-indigo-600:active:focus,html[data-netbox-color-mode=light] .btn-indigo-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6c31cb80}html .btn-indigo-600:disabled,html .btn-indigo-600.disabled,html[data-netbox-color-mode=dark] .btn-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-indigo-600.disabled,html[data-netbox-color-mode=light] .btn-indigo-600:disabled,html[data-netbox-color-mode=light] .btn-indigo-600.disabled{color:#fff;background-color:#520dc2;border-color:#520dc2}}@media print{html .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700{color:#fff;background-color:#3d0a91;border-color:#3d0a91}html .btn-indigo-700:hover,html[data-netbox-color-mode=dark] .btn-indigo-700:hover,html[data-netbox-color-mode=light] .btn-indigo-700:hover{color:#fff;background-color:#34097b;border-color:#310874}.btn-check:focus+html .btn-indigo-700,html .btn-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700:focus{color:#fff;background-color:#34097b;border-color:#310874;box-shadow:0 0 0 .25rem #5a2fa280}.btn-check:checked+html .btn-indigo-700,.btn-check:active+html .btn-indigo-700,html .btn-indigo-700:active,html .btn-indigo-700.active,.show>html .btn-indigo-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700,html[data-netbox-color-mode=dark] .btn-indigo-700:active,html[data-netbox-color-mode=dark] .btn-indigo-700.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-700,html[data-netbox-color-mode=light] .btn-indigo-700:active,html[data-netbox-color-mode=light] .btn-indigo-700.active,.show>html[data-netbox-color-mode=light] .btn-indigo-700.dropdown-toggle{color:#fff;background-color:#310874;border-color:#2e086d}.btn-check:checked+html .btn-indigo-700:focus,.btn-check:active+html .btn-indigo-700:focus,html .btn-indigo-700:active:focus,html .btn-indigo-700.active:focus,.show>html .btn-indigo-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-700:focus,html[data-netbox-color-mode=light] .btn-indigo-700:active:focus,html[data-netbox-color-mode=light] .btn-indigo-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5a2fa280}html .btn-indigo-700:disabled,html .btn-indigo-700.disabled,html[data-netbox-color-mode=dark] .btn-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-indigo-700.disabled,html[data-netbox-color-mode=light] .btn-indigo-700:disabled,html[data-netbox-color-mode=light] .btn-indigo-700.disabled{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800{color:#fff;background-color:#290661;border-color:#290661}html .btn-indigo-800:hover,html[data-netbox-color-mode=dark] .btn-indigo-800:hover,html[data-netbox-color-mode=light] .btn-indigo-800:hover{color:#fff;background-color:#230552;border-color:#21054e}.btn-check:focus+html .btn-indigo-800,html .btn-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800:focus{color:#fff;background-color:#230552;border-color:#21054e;box-shadow:0 0 0 .25rem #492b7980}.btn-check:checked+html .btn-indigo-800,.btn-check:active+html .btn-indigo-800,html .btn-indigo-800:active,html .btn-indigo-800.active,.show>html .btn-indigo-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800,html[data-netbox-color-mode=dark] .btn-indigo-800:active,html[data-netbox-color-mode=dark] .btn-indigo-800.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-800,html[data-netbox-color-mode=light] .btn-indigo-800:active,html[data-netbox-color-mode=light] .btn-indigo-800.active,.show>html[data-netbox-color-mode=light] .btn-indigo-800.dropdown-toggle{color:#fff;background-color:#21054e;border-color:#1f0549}.btn-check:checked+html .btn-indigo-800:focus,.btn-check:active+html .btn-indigo-800:focus,html .btn-indigo-800:active:focus,html .btn-indigo-800.active:focus,.show>html .btn-indigo-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-800:focus,html[data-netbox-color-mode=light] .btn-indigo-800:active:focus,html[data-netbox-color-mode=light] .btn-indigo-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #492b7980}html .btn-indigo-800:disabled,html .btn-indigo-800.disabled,html[data-netbox-color-mode=dark] .btn-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-indigo-800.disabled,html[data-netbox-color-mode=light] .btn-indigo-800:disabled,html[data-netbox-color-mode=light] .btn-indigo-800.disabled{color:#fff;background-color:#290661;border-color:#290661}}@media print{html .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900{color:#fff;background-color:#140330;border-color:#140330}html .btn-indigo-900:hover,html[data-netbox-color-mode=dark] .btn-indigo-900:hover,html[data-netbox-color-mode=light] .btn-indigo-900:hover{color:#fff;background-color:#110329;border-color:#100226}.btn-check:focus+html .btn-indigo-900,html .btn-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900:focus{color:#fff;background-color:#110329;border-color:#100226;box-shadow:0 0 0 .25rem #37294f80}.btn-check:checked+html .btn-indigo-900,.btn-check:active+html .btn-indigo-900,html .btn-indigo-900:active,html .btn-indigo-900.active,.show>html .btn-indigo-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900,html[data-netbox-color-mode=dark] .btn-indigo-900:active,html[data-netbox-color-mode=dark] .btn-indigo-900.active,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-900,html[data-netbox-color-mode=light] .btn-indigo-900:active,html[data-netbox-color-mode=light] .btn-indigo-900.active,.show>html[data-netbox-color-mode=light] .btn-indigo-900.dropdown-toggle{color:#fff;background-color:#100226;border-color:#0f0224}.btn-check:checked+html .btn-indigo-900:focus,.btn-check:active+html .btn-indigo-900:focus,html .btn-indigo-900:active:focus,html .btn-indigo-900.active:focus,.show>html .btn-indigo-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-indigo-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-indigo-900:focus,html[data-netbox-color-mode=light] .btn-indigo-900:active:focus,html[data-netbox-color-mode=light] .btn-indigo-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-indigo-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #37294f80}html .btn-indigo-900:disabled,html .btn-indigo-900.disabled,html[data-netbox-color-mode=dark] .btn-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-indigo-900.disabled,html[data-netbox-color-mode=light] .btn-indigo-900:disabled,html[data-netbox-color-mode=light] .btn-indigo-900.disabled{color:#fff;background-color:#140330;border-color:#140330}}@media print{html .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}html .btn-purple-100:hover,html[data-netbox-color-mode=dark] .btn-purple-100:hover,html[data-netbox-color-mode=light] .btn-purple-100:hover{color:#000;background-color:#e6dff5;border-color:#e5ddf4}.btn-check:focus+html .btn-purple-100,html .btn-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100:focus{color:#000;background-color:#e6dff5;border-color:#e5ddf4;box-shadow:0 0 0 .25rem #c0b8cf80}.btn-check:checked+html .btn-purple-100,.btn-check:active+html .btn-purple-100,html .btn-purple-100:active,html .btn-purple-100.active,.show>html .btn-purple-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100,html[data-netbox-color-mode=dark] .btn-purple-100:active,html[data-netbox-color-mode=dark] .btn-purple-100.active,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-100,html[data-netbox-color-mode=light] .btn-purple-100:active,html[data-netbox-color-mode=light] .btn-purple-100.active,.show>html[data-netbox-color-mode=light] .btn-purple-100.dropdown-toggle{color:#000;background-color:#e8e1f5;border-color:#e5ddf4}.btn-check:checked+html .btn-purple-100:focus,.btn-check:active+html .btn-purple-100:focus,html .btn-purple-100:active:focus,html .btn-purple-100.active:focus,.show>html .btn-purple-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-100:focus,html[data-netbox-color-mode=dark] .btn-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-100:focus,html[data-netbox-color-mode=light] .btn-purple-100:active:focus,html[data-netbox-color-mode=light] .btn-purple-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c0b8cf80}html .btn-purple-100:disabled,html .btn-purple-100.disabled,html[data-netbox-color-mode=dark] .btn-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-purple-100.disabled,html[data-netbox-color-mode=light] .btn-purple-100:disabled,html[data-netbox-color-mode=light] .btn-purple-100.disabled{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}}@media print{html .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}html .btn-purple-200:hover,html[data-netbox-color-mode=dark] .btn-purple-200:hover,html[data-netbox-color-mode=light] .btn-purple-200:hover{color:#000;background-color:#cebeea;border-color:#cbbbe9}.btn-check:focus+html .btn-purple-200,html .btn-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200:focus{color:#000;background-color:#cebeea;border-color:#cbbbe9;box-shadow:0 0 0 .25rem #a798c480}.btn-check:checked+html .btn-purple-200,.btn-check:active+html .btn-purple-200,html .btn-purple-200:active,html .btn-purple-200.active,.show>html .btn-purple-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200,html[data-netbox-color-mode=dark] .btn-purple-200:active,html[data-netbox-color-mode=dark] .btn-purple-200.active,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-200,html[data-netbox-color-mode=light] .btn-purple-200:active,html[data-netbox-color-mode=light] .btn-purple-200.active,.show>html[data-netbox-color-mode=light] .btn-purple-200.dropdown-toggle{color:#000;background-color:#d1c2eb;border-color:#cbbbe9}.btn-check:checked+html .btn-purple-200:focus,.btn-check:active+html .btn-purple-200:focus,html .btn-purple-200:active:focus,html .btn-purple-200.active:focus,.show>html .btn-purple-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-200:focus,html[data-netbox-color-mode=dark] .btn-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-200:focus,html[data-netbox-color-mode=light] .btn-purple-200:active:focus,html[data-netbox-color-mode=light] .btn-purple-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #a798c480}html .btn-purple-200:disabled,html .btn-purple-200.disabled,html[data-netbox-color-mode=dark] .btn-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-purple-200.disabled,html[data-netbox-color-mode=light] .btn-purple-200:disabled,html[data-netbox-color-mode=light] .btn-purple-200.disabled{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}}@media print{html .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300{color:#000;background-color:#a98eda;border-color:#a98eda}html .btn-purple-300:hover,html[data-netbox-color-mode=dark] .btn-purple-300:hover,html[data-netbox-color-mode=light] .btn-purple-300:hover{color:#000;background-color:#b69fe0;border-color:#b299de}.btn-check:focus+html .btn-purple-300,html .btn-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300:focus{color:#000;background-color:#b69fe0;border-color:#b299de;box-shadow:0 0 0 .25rem #9079b980}.btn-check:checked+html .btn-purple-300,.btn-check:active+html .btn-purple-300,html .btn-purple-300:active,html .btn-purple-300.active,.show>html .btn-purple-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300,html[data-netbox-color-mode=dark] .btn-purple-300:active,html[data-netbox-color-mode=dark] .btn-purple-300.active,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-300,html[data-netbox-color-mode=light] .btn-purple-300:active,html[data-netbox-color-mode=light] .btn-purple-300.active,.show>html[data-netbox-color-mode=light] .btn-purple-300.dropdown-toggle{color:#000;background-color:#baa5e1;border-color:#b299de}.btn-check:checked+html .btn-purple-300:focus,.btn-check:active+html .btn-purple-300:focus,html .btn-purple-300:active:focus,html .btn-purple-300.active:focus,.show>html .btn-purple-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-300:focus,html[data-netbox-color-mode=dark] .btn-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-300:focus,html[data-netbox-color-mode=light] .btn-purple-300:active:focus,html[data-netbox-color-mode=light] .btn-purple-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #9079b980}html .btn-purple-300:disabled,html .btn-purple-300.disabled,html[data-netbox-color-mode=dark] .btn-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-purple-300.disabled,html[data-netbox-color-mode=light] .btn-purple-300:disabled,html[data-netbox-color-mode=light] .btn-purple-300.disabled{color:#000;background-color:#a98eda;border-color:#a98eda}}@media print{html .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400{color:#000;background-color:#8c68cd;border-color:#8c68cd}html .btn-purple-400:hover,html[data-netbox-color-mode=dark] .btn-purple-400:hover,html[data-netbox-color-mode=light] .btn-purple-400:hover{color:#000;background-color:#9d7fd5;border-color:#9877d2}.btn-check:focus+html .btn-purple-400,html .btn-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400:focus{color:#000;background-color:#9d7fd5;border-color:#9877d2;box-shadow:0 0 0 .25rem #7758ae80}.btn-check:checked+html .btn-purple-400,.btn-check:active+html .btn-purple-400,html .btn-purple-400:active,html .btn-purple-400.active,.show>html .btn-purple-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400,html[data-netbox-color-mode=dark] .btn-purple-400:active,html[data-netbox-color-mode=dark] .btn-purple-400.active,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-400,html[data-netbox-color-mode=light] .btn-purple-400:active,html[data-netbox-color-mode=light] .btn-purple-400.active,.show>html[data-netbox-color-mode=light] .btn-purple-400.dropdown-toggle{color:#000;background-color:#a386d7;border-color:#9877d2}.btn-check:checked+html .btn-purple-400:focus,.btn-check:active+html .btn-purple-400:focus,html .btn-purple-400:active:focus,html .btn-purple-400.active:focus,.show>html .btn-purple-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-400:focus,html[data-netbox-color-mode=dark] .btn-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-400:focus,html[data-netbox-color-mode=light] .btn-purple-400:active:focus,html[data-netbox-color-mode=light] .btn-purple-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7758ae80}html .btn-purple-400:disabled,html .btn-purple-400.disabled,html[data-netbox-color-mode=dark] .btn-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-purple-400.disabled,html[data-netbox-color-mode=light] .btn-purple-400:disabled,html[data-netbox-color-mode=light] .btn-purple-400.disabled{color:#000;background-color:#8c68cd;border-color:#8c68cd}}@media print{html .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500{color:#fff;background-color:#6f42c1;border-color:#6f42c1}html .btn-purple-500:hover,html[data-netbox-color-mode=dark] .btn-purple-500:hover,html[data-netbox-color-mode=light] .btn-purple-500:hover{color:#fff;background-color:#5e38a4;border-color:#59359a}.btn-check:focus+html .btn-purple-500,html .btn-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500:focus{color:#fff;background-color:#5e38a4;border-color:#59359a;box-shadow:0 0 0 .25rem #855eca80}.btn-check:checked+html .btn-purple-500,.btn-check:active+html .btn-purple-500,html .btn-purple-500:active,html .btn-purple-500.active,.show>html .btn-purple-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500,html[data-netbox-color-mode=dark] .btn-purple-500:active,html[data-netbox-color-mode=dark] .btn-purple-500.active,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-500,html[data-netbox-color-mode=light] .btn-purple-500:active,html[data-netbox-color-mode=light] .btn-purple-500.active,.show>html[data-netbox-color-mode=light] .btn-purple-500.dropdown-toggle{color:#fff;background-color:#59359a;border-color:#533291}.btn-check:checked+html .btn-purple-500:focus,.btn-check:active+html .btn-purple-500:focus,html .btn-purple-500:active:focus,html .btn-purple-500.active:focus,.show>html .btn-purple-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-500:focus,html[data-netbox-color-mode=dark] .btn-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-500:focus,html[data-netbox-color-mode=light] .btn-purple-500:active:focus,html[data-netbox-color-mode=light] .btn-purple-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #855eca80}html .btn-purple-500:disabled,html .btn-purple-500.disabled,html[data-netbox-color-mode=dark] .btn-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-purple-500.disabled,html[data-netbox-color-mode=light] .btn-purple-500:disabled,html[data-netbox-color-mode=light] .btn-purple-500.disabled{color:#fff;background-color:#6f42c1;border-color:#6f42c1}}@media print{html .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600{color:#fff;background-color:#59359a;border-color:#59359a}html .btn-purple-600:hover,html[data-netbox-color-mode=dark] .btn-purple-600:hover,html[data-netbox-color-mode=light] .btn-purple-600:hover{color:#fff;background-color:#4c2d83;border-color:#472a7b}.btn-check:focus+html .btn-purple-600,html .btn-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600:focus{color:#fff;background-color:#4c2d83;border-color:#472a7b;box-shadow:0 0 0 .25rem #7253a980}.btn-check:checked+html .btn-purple-600,.btn-check:active+html .btn-purple-600,html .btn-purple-600:active,html .btn-purple-600.active,.show>html .btn-purple-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600,html[data-netbox-color-mode=dark] .btn-purple-600:active,html[data-netbox-color-mode=dark] .btn-purple-600.active,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-600,html[data-netbox-color-mode=light] .btn-purple-600:active,html[data-netbox-color-mode=light] .btn-purple-600.active,.show>html[data-netbox-color-mode=light] .btn-purple-600.dropdown-toggle{color:#fff;background-color:#472a7b;border-color:#432874}.btn-check:checked+html .btn-purple-600:focus,.btn-check:active+html .btn-purple-600:focus,html .btn-purple-600:active:focus,html .btn-purple-600.active:focus,.show>html .btn-purple-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-600:focus,html[data-netbox-color-mode=dark] .btn-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-600:focus,html[data-netbox-color-mode=light] .btn-purple-600:active:focus,html[data-netbox-color-mode=light] .btn-purple-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #7253a980}html .btn-purple-600:disabled,html .btn-purple-600.disabled,html[data-netbox-color-mode=dark] .btn-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-purple-600.disabled,html[data-netbox-color-mode=light] .btn-purple-600:disabled,html[data-netbox-color-mode=light] .btn-purple-600.disabled{color:#fff;background-color:#59359a;border-color:#59359a}}@media print{html .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700{color:#fff;background-color:#432874;border-color:#432874}html .btn-purple-700:hover,html[data-netbox-color-mode=dark] .btn-purple-700:hover,html[data-netbox-color-mode=light] .btn-purple-700:hover{color:#fff;background-color:#392263;border-color:#36205d}.btn-check:focus+html .btn-purple-700,html .btn-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700:focus{color:#fff;background-color:#392263;border-color:#36205d;box-shadow:0 0 0 .25rem #5f488980}.btn-check:checked+html .btn-purple-700,.btn-check:active+html .btn-purple-700,html .btn-purple-700:active,html .btn-purple-700.active,.show>html .btn-purple-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700,html[data-netbox-color-mode=dark] .btn-purple-700:active,html[data-netbox-color-mode=dark] .btn-purple-700.active,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-700,html[data-netbox-color-mode=light] .btn-purple-700:active,html[data-netbox-color-mode=light] .btn-purple-700.active,.show>html[data-netbox-color-mode=light] .btn-purple-700.dropdown-toggle{color:#fff;background-color:#36205d;border-color:#321e57}.btn-check:checked+html .btn-purple-700:focus,.btn-check:active+html .btn-purple-700:focus,html .btn-purple-700:active:focus,html .btn-purple-700.active:focus,.show>html .btn-purple-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-700:focus,html[data-netbox-color-mode=dark] .btn-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-700:focus,html[data-netbox-color-mode=light] .btn-purple-700:active:focus,html[data-netbox-color-mode=light] .btn-purple-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #5f488980}html .btn-purple-700:disabled,html .btn-purple-700.disabled,html[data-netbox-color-mode=dark] .btn-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-purple-700.disabled,html[data-netbox-color-mode=light] .btn-purple-700:disabled,html[data-netbox-color-mode=light] .btn-purple-700.disabled{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}html .btn-purple-800:hover,html[data-netbox-color-mode=dark] .btn-purple-800:hover,html[data-netbox-color-mode=light] .btn-purple-800:hover{color:#fff;background-color:#251641;border-color:#23153e}.btn-check:focus+html .btn-purple-800,html .btn-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800:focus{color:#fff;background-color:#251641;border-color:#23153e;box-shadow:0 0 0 .25rem #4c3c6880}.btn-check:checked+html .btn-purple-800,.btn-check:active+html .btn-purple-800,html .btn-purple-800:active,html .btn-purple-800.active,.show>html .btn-purple-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800,html[data-netbox-color-mode=dark] .btn-purple-800:active,html[data-netbox-color-mode=dark] .btn-purple-800.active,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-800,html[data-netbox-color-mode=light] .btn-purple-800:active,html[data-netbox-color-mode=light] .btn-purple-800.active,.show>html[data-netbox-color-mode=light] .btn-purple-800.dropdown-toggle{color:#fff;background-color:#23153e;border-color:#21143a}.btn-check:checked+html .btn-purple-800:focus,.btn-check:active+html .btn-purple-800:focus,html .btn-purple-800:active:focus,html .btn-purple-800.active:focus,.show>html .btn-purple-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-800:focus,html[data-netbox-color-mode=dark] .btn-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-800:focus,html[data-netbox-color-mode=light] .btn-purple-800:active:focus,html[data-netbox-color-mode=light] .btn-purple-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4c3c6880}html .btn-purple-800:disabled,html .btn-purple-800.disabled,html[data-netbox-color-mode=dark] .btn-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-purple-800.disabled,html[data-netbox-color-mode=light] .btn-purple-800:disabled,html[data-netbox-color-mode=light] .btn-purple-800.disabled{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}}@media print{html .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900{color:#fff;background-color:#160d27;border-color:#160d27}html .btn-purple-900:hover,html[data-netbox-color-mode=dark] .btn-purple-900:hover,html[data-netbox-color-mode=light] .btn-purple-900:hover{color:#fff;background-color:#130b21;border-color:#120a1f}.btn-check:focus+html .btn-purple-900,html .btn-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900:focus{color:#fff;background-color:#130b21;border-color:#120a1f;box-shadow:0 0 0 .25rem #39314780}.btn-check:checked+html .btn-purple-900,.btn-check:active+html .btn-purple-900,html .btn-purple-900:active,html .btn-purple-900.active,.show>html .btn-purple-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900,html[data-netbox-color-mode=dark] .btn-purple-900:active,html[data-netbox-color-mode=dark] .btn-purple-900.active,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-900,html[data-netbox-color-mode=light] .btn-purple-900:active,html[data-netbox-color-mode=light] .btn-purple-900.active,.show>html[data-netbox-color-mode=light] .btn-purple-900.dropdown-toggle{color:#fff;background-color:#120a1f;border-color:#110a1d}.btn-check:checked+html .btn-purple-900:focus,.btn-check:active+html .btn-purple-900:focus,html .btn-purple-900:active:focus,html .btn-purple-900.active:focus,.show>html .btn-purple-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-purple-900:focus,html[data-netbox-color-mode=dark] .btn-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-purple-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-purple-900:focus,html[data-netbox-color-mode=light] .btn-purple-900:active:focus,html[data-netbox-color-mode=light] .btn-purple-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-purple-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #39314780}html .btn-purple-900:disabled,html .btn-purple-900.disabled,html[data-netbox-color-mode=dark] .btn-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-purple-900.disabled,html[data-netbox-color-mode=light] .btn-purple-900:disabled,html[data-netbox-color-mode=light] .btn-purple-900.disabled{color:#fff;background-color:#160d27;border-color:#160d27}}@media print{html .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}html .btn-pink-100:hover,html[data-netbox-color-mode=dark] .btn-pink-100:hover,html[data-netbox-color-mode=light] .btn-pink-100:hover{color:#000;background-color:#f8dcea;border-color:#f8dae9}.btn-check:focus+html .btn-pink-100,html .btn-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100:focus{color:#000;background-color:#f8dcea;border-color:#f8dae9;box-shadow:0 0 0 .25rem #d2b6c480}.btn-check:checked+html .btn-pink-100,.btn-check:active+html .btn-pink-100,html .btn-pink-100:active,html .btn-pink-100.active,.show>html .btn-pink-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100,html[data-netbox-color-mode=dark] .btn-pink-100:active,html[data-netbox-color-mode=dark] .btn-pink-100.active,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-100,html[data-netbox-color-mode=light] .btn-pink-100:active,html[data-netbox-color-mode=light] .btn-pink-100.active,.show>html[data-netbox-color-mode=light] .btn-pink-100.dropdown-toggle{color:#000;background-color:#f9deeb;border-color:#f8dae9}.btn-check:checked+html .btn-pink-100:focus,.btn-check:active+html .btn-pink-100:focus,html .btn-pink-100:active:focus,html .btn-pink-100.active:focus,.show>html .btn-pink-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-100:focus,html[data-netbox-color-mode=dark] .btn-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-100.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-100:focus,html[data-netbox-color-mode=light] .btn-pink-100:active:focus,html[data-netbox-color-mode=light] .btn-pink-100.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-100.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #d2b6c480}html .btn-pink-100:disabled,html .btn-pink-100.disabled,html[data-netbox-color-mode=dark] .btn-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-pink-100.disabled,html[data-netbox-color-mode=light] .btn-pink-100:disabled,html[data-netbox-color-mode=light] .btn-pink-100.disabled{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}}@media print{html .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200{color:#000;background-color:#efadce;border-color:#efadce}html .btn-pink-200:hover,html[data-netbox-color-mode=dark] .btn-pink-200:hover,html[data-netbox-color-mode=light] .btn-pink-200:hover{color:#000;background-color:#f1b9d5;border-color:#f1b5d3}.btn-check:focus+html .btn-pink-200,html .btn-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200:focus{color:#000;background-color:#f1b9d5;border-color:#f1b5d3;box-shadow:0 0 0 .25rem #cb93af80}.btn-check:checked+html .btn-pink-200,.btn-check:active+html .btn-pink-200,html .btn-pink-200:active,html .btn-pink-200.active,.show>html .btn-pink-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200,html[data-netbox-color-mode=dark] .btn-pink-200:active,html[data-netbox-color-mode=dark] .btn-pink-200.active,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-200,html[data-netbox-color-mode=light] .btn-pink-200:active,html[data-netbox-color-mode=light] .btn-pink-200.active,.show>html[data-netbox-color-mode=light] .btn-pink-200.dropdown-toggle{color:#000;background-color:#f2bdd8;border-color:#f1b5d3}.btn-check:checked+html .btn-pink-200:focus,.btn-check:active+html .btn-pink-200:focus,html .btn-pink-200:active:focus,html .btn-pink-200.active:focus,.show>html .btn-pink-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-200:focus,html[data-netbox-color-mode=dark] .btn-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-200.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-200:focus,html[data-netbox-color-mode=light] .btn-pink-200:active:focus,html[data-netbox-color-mode=light] .btn-pink-200.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-200.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #cb93af80}html .btn-pink-200:disabled,html .btn-pink-200.disabled,html[data-netbox-color-mode=dark] .btn-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-pink-200.disabled,html[data-netbox-color-mode=light] .btn-pink-200:disabled,html[data-netbox-color-mode=light] .btn-pink-200.disabled{color:#000;background-color:#efadce;border-color:#efadce}}@media print{html .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300{color:#000;background-color:#e685b5;border-color:#e685b5}html .btn-pink-300:hover,html[data-netbox-color-mode=dark] .btn-pink-300:hover,html[data-netbox-color-mode=light] .btn-pink-300:hover{color:#000;background-color:#ea97c0;border-color:#e991bc}.btn-check:focus+html .btn-pink-300,html .btn-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300:focus{color:#000;background-color:#ea97c0;border-color:#e991bc;box-shadow:0 0 0 .25rem #c4719a80}.btn-check:checked+html .btn-pink-300,.btn-check:active+html .btn-pink-300,html .btn-pink-300:active,html .btn-pink-300.active,.show>html .btn-pink-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300,html[data-netbox-color-mode=dark] .btn-pink-300:active,html[data-netbox-color-mode=dark] .btn-pink-300.active,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-300,html[data-netbox-color-mode=light] .btn-pink-300:active,html[data-netbox-color-mode=light] .btn-pink-300.active,.show>html[data-netbox-color-mode=light] .btn-pink-300.dropdown-toggle{color:#000;background-color:#eb9dc4;border-color:#e991bc}.btn-check:checked+html .btn-pink-300:focus,.btn-check:active+html .btn-pink-300:focus,html .btn-pink-300:active:focus,html .btn-pink-300.active:focus,.show>html .btn-pink-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-300:focus,html[data-netbox-color-mode=dark] .btn-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-300.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-300:focus,html[data-netbox-color-mode=light] .btn-pink-300:active:focus,html[data-netbox-color-mode=light] .btn-pink-300.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-300.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c4719a80}html .btn-pink-300:disabled,html .btn-pink-300.disabled,html[data-netbox-color-mode=dark] .btn-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-pink-300.disabled,html[data-netbox-color-mode=light] .btn-pink-300:disabled,html[data-netbox-color-mode=light] .btn-pink-300.disabled{color:#000;background-color:#e685b5;border-color:#e685b5}}@media print{html .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400{color:#000;background-color:#de5c9d;border-color:#de5c9d}html .btn-pink-400:hover,html[data-netbox-color-mode=dark] .btn-pink-400:hover,html[data-netbox-color-mode=light] .btn-pink-400:hover{color:#000;background-color:#e374ac;border-color:#e16ca7}.btn-check:focus+html .btn-pink-400,html .btn-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400:focus{color:#000;background-color:#e374ac;border-color:#e16ca7;box-shadow:0 0 0 .25rem #bd4e8580}.btn-check:checked+html .btn-pink-400,.btn-check:active+html .btn-pink-400,html .btn-pink-400:active,html .btn-pink-400.active,.show>html .btn-pink-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400,html[data-netbox-color-mode=dark] .btn-pink-400:active,html[data-netbox-color-mode=dark] .btn-pink-400.active,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-400,html[data-netbox-color-mode=light] .btn-pink-400:active,html[data-netbox-color-mode=light] .btn-pink-400.active,.show>html[data-netbox-color-mode=light] .btn-pink-400.dropdown-toggle{color:#000;background-color:#e57db1;border-color:#e16ca7}.btn-check:checked+html .btn-pink-400:focus,.btn-check:active+html .btn-pink-400:focus,html .btn-pink-400:active:focus,html .btn-pink-400.active:focus,.show>html .btn-pink-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-400:focus,html[data-netbox-color-mode=dark] .btn-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-400.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-400:focus,html[data-netbox-color-mode=light] .btn-pink-400:active:focus,html[data-netbox-color-mode=light] .btn-pink-400.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-400.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #bd4e8580}html .btn-pink-400:disabled,html .btn-pink-400.disabled,html[data-netbox-color-mode=dark] .btn-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-pink-400.disabled,html[data-netbox-color-mode=light] .btn-pink-400:disabled,html[data-netbox-color-mode=light] .btn-pink-400.disabled{color:#000;background-color:#de5c9d;border-color:#de5c9d}}@media print{html .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500{color:#fff;background-color:#d63384;border-color:#d63384}html .btn-pink-500:hover,html[data-netbox-color-mode=dark] .btn-pink-500:hover,html[data-netbox-color-mode=light] .btn-pink-500:hover{color:#fff;background-color:#b62b70;border-color:#ab296a}.btn-check:focus+html .btn-pink-500,html .btn-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500:focus{color:#fff;background-color:#b62b70;border-color:#ab296a;box-shadow:0 0 0 .25rem #dc529680}.btn-check:checked+html .btn-pink-500,.btn-check:active+html .btn-pink-500,html .btn-pink-500:active,html .btn-pink-500.active,.show>html .btn-pink-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500,html[data-netbox-color-mode=dark] .btn-pink-500:active,html[data-netbox-color-mode=dark] .btn-pink-500.active,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-500,html[data-netbox-color-mode=light] .btn-pink-500:active,html[data-netbox-color-mode=light] .btn-pink-500.active,.show>html[data-netbox-color-mode=light] .btn-pink-500.dropdown-toggle{color:#fff;background-color:#ab296a;border-color:#a12663}.btn-check:checked+html .btn-pink-500:focus,.btn-check:active+html .btn-pink-500:focus,html .btn-pink-500:active:focus,html .btn-pink-500.active:focus,.show>html .btn-pink-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-500:focus,html[data-netbox-color-mode=dark] .btn-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-500.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-500:focus,html[data-netbox-color-mode=light] .btn-pink-500:active:focus,html[data-netbox-color-mode=light] .btn-pink-500.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-500.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #dc529680}html .btn-pink-500:disabled,html .btn-pink-500.disabled,html[data-netbox-color-mode=dark] .btn-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-pink-500.disabled,html[data-netbox-color-mode=light] .btn-pink-500:disabled,html[data-netbox-color-mode=light] .btn-pink-500.disabled{color:#fff;background-color:#d63384;border-color:#d63384}}@media print{html .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600{color:#fff;background-color:#ab296a;border-color:#ab296a}html .btn-pink-600:hover,html[data-netbox-color-mode=dark] .btn-pink-600:hover,html[data-netbox-color-mode=light] .btn-pink-600:hover{color:#fff;background-color:#91235a;border-color:#892155}.btn-check:focus+html .btn-pink-600,html .btn-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600:focus{color:#fff;background-color:#91235a;border-color:#892155;box-shadow:0 0 0 .25rem #b8498080}.btn-check:checked+html .btn-pink-600,.btn-check:active+html .btn-pink-600,html .btn-pink-600:active,html .btn-pink-600.active,.show>html .btn-pink-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600,html[data-netbox-color-mode=dark] .btn-pink-600:active,html[data-netbox-color-mode=dark] .btn-pink-600.active,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-600,html[data-netbox-color-mode=light] .btn-pink-600:active,html[data-netbox-color-mode=light] .btn-pink-600.active,.show>html[data-netbox-color-mode=light] .btn-pink-600.dropdown-toggle{color:#fff;background-color:#892155;border-color:#801f50}.btn-check:checked+html .btn-pink-600:focus,.btn-check:active+html .btn-pink-600:focus,html .btn-pink-600:active:focus,html .btn-pink-600.active:focus,.show>html .btn-pink-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-600:focus,html[data-netbox-color-mode=dark] .btn-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-600.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-600:focus,html[data-netbox-color-mode=light] .btn-pink-600:active:focus,html[data-netbox-color-mode=light] .btn-pink-600.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-600.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #b8498080}html .btn-pink-600:disabled,html .btn-pink-600.disabled,html[data-netbox-color-mode=dark] .btn-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-pink-600.disabled,html[data-netbox-color-mode=light] .btn-pink-600:disabled,html[data-netbox-color-mode=light] .btn-pink-600.disabled{color:#fff;background-color:#ab296a;border-color:#ab296a}}@media print{html .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700{color:#fff;background-color:#801f4f;border-color:#801f4f}html .btn-pink-700:hover,html[data-netbox-color-mode=dark] .btn-pink-700:hover,html[data-netbox-color-mode=light] .btn-pink-700:hover{color:#fff;background-color:#6d1a43;border-color:#66193f}.btn-check:focus+html .btn-pink-700,html .btn-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700:focus{color:#fff;background-color:#6d1a43;border-color:#66193f;box-shadow:0 0 0 .25rem #93416980}.btn-check:checked+html .btn-pink-700,.btn-check:active+html .btn-pink-700,html .btn-pink-700:active,html .btn-pink-700.active,.show>html .btn-pink-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700,html[data-netbox-color-mode=dark] .btn-pink-700:active,html[data-netbox-color-mode=dark] .btn-pink-700.active,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-700,html[data-netbox-color-mode=light] .btn-pink-700:active,html[data-netbox-color-mode=light] .btn-pink-700.active,.show>html[data-netbox-color-mode=light] .btn-pink-700.dropdown-toggle{color:#fff;background-color:#66193f;border-color:#60173b}.btn-check:checked+html .btn-pink-700:focus,.btn-check:active+html .btn-pink-700:focus,html .btn-pink-700:active:focus,html .btn-pink-700.active:focus,.show>html .btn-pink-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-700:focus,html[data-netbox-color-mode=dark] .btn-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-700.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-700:focus,html[data-netbox-color-mode=light] .btn-pink-700:active:focus,html[data-netbox-color-mode=light] .btn-pink-700.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-700.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #93416980}html .btn-pink-700:disabled,html .btn-pink-700.disabled,html[data-netbox-color-mode=dark] .btn-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-pink-700.disabled,html[data-netbox-color-mode=light] .btn-pink-700:disabled,html[data-netbox-color-mode=light] .btn-pink-700.disabled{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800{color:#fff;background-color:#561435;border-color:#561435}html .btn-pink-800:hover,html[data-netbox-color-mode=dark] .btn-pink-800:hover,html[data-netbox-color-mode=light] .btn-pink-800:hover{color:#fff;background-color:#49112d;border-color:#45102a}.btn-check:focus+html .btn-pink-800,html .btn-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800:focus{color:#fff;background-color:#49112d;border-color:#45102a;box-shadow:0 0 0 .25rem #6f375380}.btn-check:checked+html .btn-pink-800,.btn-check:active+html .btn-pink-800,html .btn-pink-800:active,html .btn-pink-800.active,.show>html .btn-pink-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800,html[data-netbox-color-mode=dark] .btn-pink-800:active,html[data-netbox-color-mode=dark] .btn-pink-800.active,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-800,html[data-netbox-color-mode=light] .btn-pink-800:active,html[data-netbox-color-mode=light] .btn-pink-800.active,.show>html[data-netbox-color-mode=light] .btn-pink-800.dropdown-toggle{color:#fff;background-color:#45102a;border-color:#410f28}.btn-check:checked+html .btn-pink-800:focus,.btn-check:active+html .btn-pink-800:focus,html .btn-pink-800:active:focus,html .btn-pink-800.active:focus,.show>html .btn-pink-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-800:focus,html[data-netbox-color-mode=dark] .btn-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-800.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-800:focus,html[data-netbox-color-mode=light] .btn-pink-800:active:focus,html[data-netbox-color-mode=light] .btn-pink-800.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-800.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #6f375380}html .btn-pink-800:disabled,html .btn-pink-800.disabled,html[data-netbox-color-mode=dark] .btn-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-pink-800.disabled,html[data-netbox-color-mode=light] .btn-pink-800:disabled,html[data-netbox-color-mode=light] .btn-pink-800.disabled{color:#fff;background-color:#561435;border-color:#561435}}@media print{html .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}html .btn-pink-900:hover,html[data-netbox-color-mode=dark] .btn-pink-900:hover,html[data-netbox-color-mode=light] .btn-pink-900:hover{color:#fff;background-color:#250916;border-color:#220815}.btn-check:focus+html .btn-pink-900,html .btn-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900:focus{color:#fff;background-color:#250916;border-color:#220815;box-shadow:0 0 0 .25rem #4b2f3c80}.btn-check:checked+html .btn-pink-900,.btn-check:active+html .btn-pink-900,html .btn-pink-900:active,html .btn-pink-900.active,.show>html .btn-pink-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900,html[data-netbox-color-mode=dark] .btn-pink-900:active,html[data-netbox-color-mode=dark] .btn-pink-900.active,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-900,html[data-netbox-color-mode=light] .btn-pink-900:active,html[data-netbox-color-mode=light] .btn-pink-900.active,.show>html[data-netbox-color-mode=light] .btn-pink-900.dropdown-toggle{color:#fff;background-color:#220815;border-color:#200814}.btn-check:checked+html .btn-pink-900:focus,.btn-check:active+html .btn-pink-900:focus,html .btn-pink-900:active:focus,html .btn-pink-900.active:focus,.show>html .btn-pink-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-pink-900:focus,html[data-netbox-color-mode=dark] .btn-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=dark] .btn-pink-900.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-pink-900:focus,html[data-netbox-color-mode=light] .btn-pink-900:active:focus,html[data-netbox-color-mode=light] .btn-pink-900.active:focus,.show>html[data-netbox-color-mode=light] .btn-pink-900.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #4b2f3c80}html .btn-pink-900:disabled,html .btn-pink-900.disabled,html[data-netbox-color-mode=dark] .btn-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-pink-900.disabled,html[data-netbox-color-mode=light] .btn-pink-900:disabled,html[data-netbox-color-mode=light] .btn-pink-900.disabled{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}}@media print{html .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary{color:#337ab7;border-color:#337ab7}html .btn-outline-primary:hover,html[data-netbox-color-mode=dark] .btn-outline-primary:hover,html[data-netbox-color-mode=light] .btn-outline-primary:hover{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:focus+html .btn-outline-primary,html .btn-outline-primary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary:focus{box-shadow:0 0 0 .25rem #337ab780}.btn-check:checked+html .btn-outline-primary,.btn-check:active+html .btn-outline-primary,html .btn-outline-primary:active,html .btn-outline-primary.active,html .btn-outline-primary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary,html[data-netbox-color-mode=dark] .btn-outline-primary:active,html[data-netbox-color-mode=dark] .btn-outline-primary.active,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-primary,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-primary,html[data-netbox-color-mode=light] .btn-outline-primary:active,html[data-netbox-color-mode=light] .btn-outline-primary.active,html[data-netbox-color-mode=light] .btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#337ab7;border-color:#337ab7}.btn-check:checked+html .btn-outline-primary:focus,.btn-check:active+html .btn-outline-primary:focus,html .btn-outline-primary:active:focus,html .btn-outline-primary.active:focus,html .btn-outline-primary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-primary:focus,html[data-netbox-color-mode=dark] .btn-outline-primary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-primary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-primary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-primary:focus,html[data-netbox-color-mode=light] .btn-outline-primary:active:focus,html[data-netbox-color-mode=light] .btn-outline-primary.active:focus,html[data-netbox-color-mode=light] .btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #337ab780}html .btn-outline-primary:disabled,html .btn-outline-primary.disabled,html[data-netbox-color-mode=dark] .btn-outline-primary:disabled,html[data-netbox-color-mode=dark] .btn-outline-primary.disabled,html[data-netbox-color-mode=light] .btn-outline-primary:disabled,html[data-netbox-color-mode=light] .btn-outline-primary.disabled{color:#337ab7;background-color:transparent}}@media print{html .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary{color:#6c757d;border-color:#6c757d}html .btn-outline-secondary:hover,html[data-netbox-color-mode=dark] .btn-outline-secondary:hover,html[data-netbox-color-mode=light] .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html .btn-outline-secondary,html .btn-outline-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html .btn-outline-secondary,.btn-check:active+html .btn-outline-secondary,html .btn-outline-secondary:active,html .btn-outline-secondary.active,html .btn-outline-secondary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary,html[data-netbox-color-mode=dark] .btn-outline-secondary:active,html[data-netbox-color-mode=dark] .btn-outline-secondary.active,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-secondary,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-secondary,html[data-netbox-color-mode=light] .btn-outline-secondary:active,html[data-netbox-color-mode=light] .btn-outline-secondary.active,html[data-netbox-color-mode=light] .btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html .btn-outline-secondary:focus,.btn-check:active+html .btn-outline-secondary:focus,html .btn-outline-secondary:active:focus,html .btn-outline-secondary.active:focus,html .btn-outline-secondary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-secondary:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=dark] .btn-outline-secondary.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-secondary:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-secondary:focus,html[data-netbox-color-mode=light] .btn-outline-secondary:active:focus,html[data-netbox-color-mode=light] .btn-outline-secondary.active:focus,html[data-netbox-color-mode=light] .btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html .btn-outline-secondary:disabled,html .btn-outline-secondary.disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary:disabled,html[data-netbox-color-mode=dark] .btn-outline-secondary.disabled,html[data-netbox-color-mode=light] .btn-outline-secondary:disabled,html[data-netbox-color-mode=light] .btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}}@media print{html .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success{color:#198754;border-color:#198754}html .btn-outline-success:hover,html[data-netbox-color-mode=dark] .btn-outline-success:hover,html[data-netbox-color-mode=light] .btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-success,html .btn-outline-success:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-success,.btn-check:active+html .btn-outline-success,html .btn-outline-success:active,html .btn-outline-success.active,html .btn-outline-success.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success,html[data-netbox-color-mode=dark] .btn-outline-success:active,html[data-netbox-color-mode=dark] .btn-outline-success.active,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-success,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-success,html[data-netbox-color-mode=light] .btn-outline-success:active,html[data-netbox-color-mode=light] .btn-outline-success.active,html[data-netbox-color-mode=light] .btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-success:focus,.btn-check:active+html .btn-outline-success:focus,html .btn-outline-success:active:focus,html .btn-outline-success.active:focus,html .btn-outline-success.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-success:focus,html[data-netbox-color-mode=dark] .btn-outline-success:active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.active:focus,html[data-netbox-color-mode=dark] .btn-outline-success.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-success:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-success:focus,html[data-netbox-color-mode=light] .btn-outline-success:active:focus,html[data-netbox-color-mode=light] .btn-outline-success.active:focus,html[data-netbox-color-mode=light] .btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-success:disabled,html .btn-outline-success.disabled,html[data-netbox-color-mode=dark] .btn-outline-success:disabled,html[data-netbox-color-mode=dark] .btn-outline-success.disabled,html[data-netbox-color-mode=light] .btn-outline-success:disabled,html[data-netbox-color-mode=light] .btn-outline-success.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-info:hover,html[data-netbox-color-mode=dark] .btn-outline-info:hover,html[data-netbox-color-mode=light] .btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-info,html .btn-outline-info:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-info,.btn-check:active+html .btn-outline-info,html .btn-outline-info:active,html .btn-outline-info.active,html .btn-outline-info.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info,html[data-netbox-color-mode=dark] .btn-outline-info:active,html[data-netbox-color-mode=dark] .btn-outline-info.active,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-info,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-info,html[data-netbox-color-mode=light] .btn-outline-info:active,html[data-netbox-color-mode=light] .btn-outline-info.active,html[data-netbox-color-mode=light] .btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-info:focus,.btn-check:active+html .btn-outline-info:focus,html .btn-outline-info:active:focus,html .btn-outline-info.active:focus,html .btn-outline-info.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-info:focus,html[data-netbox-color-mode=dark] .btn-outline-info:active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.active:focus,html[data-netbox-color-mode=dark] .btn-outline-info.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-info:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-info:focus,html[data-netbox-color-mode=light] .btn-outline-info:active:focus,html[data-netbox-color-mode=light] .btn-outline-info.active:focus,html[data-netbox-color-mode=light] .btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-info:disabled,html .btn-outline-info.disabled,html[data-netbox-color-mode=dark] .btn-outline-info:disabled,html[data-netbox-color-mode=dark] .btn-outline-info.disabled,html[data-netbox-color-mode=light] .btn-outline-info:disabled,html[data-netbox-color-mode=light] .btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning{color:#ffc107;border-color:#ffc107}html .btn-outline-warning:hover,html[data-netbox-color-mode=dark] .btn-outline-warning:hover,html[data-netbox-color-mode=light] .btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-warning,html .btn-outline-warning:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-warning,.btn-check:active+html .btn-outline-warning,html .btn-outline-warning:active,html .btn-outline-warning.active,html .btn-outline-warning.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning,html[data-netbox-color-mode=dark] .btn-outline-warning:active,html[data-netbox-color-mode=dark] .btn-outline-warning.active,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-warning,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-warning,html[data-netbox-color-mode=light] .btn-outline-warning:active,html[data-netbox-color-mode=light] .btn-outline-warning.active,html[data-netbox-color-mode=light] .btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-warning:focus,.btn-check:active+html .btn-outline-warning:focus,html .btn-outline-warning:active:focus,html .btn-outline-warning.active:focus,html .btn-outline-warning.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-warning:focus,html[data-netbox-color-mode=dark] .btn-outline-warning:active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.active:focus,html[data-netbox-color-mode=dark] .btn-outline-warning.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-warning:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-warning:focus,html[data-netbox-color-mode=light] .btn-outline-warning:active:focus,html[data-netbox-color-mode=light] .btn-outline-warning.active:focus,html[data-netbox-color-mode=light] .btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-warning:disabled,html .btn-outline-warning.disabled,html[data-netbox-color-mode=dark] .btn-outline-warning:disabled,html[data-netbox-color-mode=dark] .btn-outline-warning.disabled,html[data-netbox-color-mode=light] .btn-outline-warning:disabled,html[data-netbox-color-mode=light] .btn-outline-warning.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger{color:#dc3545;border-color:#dc3545}html .btn-outline-danger:hover,html[data-netbox-color-mode=dark] .btn-outline-danger:hover,html[data-netbox-color-mode=light] .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-danger,html .btn-outline-danger:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-danger,.btn-check:active+html .btn-outline-danger,html .btn-outline-danger:active,html .btn-outline-danger.active,html .btn-outline-danger.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger,html[data-netbox-color-mode=dark] .btn-outline-danger:active,html[data-netbox-color-mode=dark] .btn-outline-danger.active,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-danger,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-danger,html[data-netbox-color-mode=light] .btn-outline-danger:active,html[data-netbox-color-mode=light] .btn-outline-danger.active,html[data-netbox-color-mode=light] .btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-danger:focus,.btn-check:active+html .btn-outline-danger:focus,html .btn-outline-danger:active:focus,html .btn-outline-danger.active:focus,html .btn-outline-danger.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-danger:focus,html[data-netbox-color-mode=dark] .btn-outline-danger:active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.active:focus,html[data-netbox-color-mode=dark] .btn-outline-danger.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-danger:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-danger:focus,html[data-netbox-color-mode=light] .btn-outline-danger:active:focus,html[data-netbox-color-mode=light] .btn-outline-danger.active:focus,html[data-netbox-color-mode=light] .btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-danger:disabled,html .btn-outline-danger.disabled,html[data-netbox-color-mode=dark] .btn-outline-danger:disabled,html[data-netbox-color-mode=dark] .btn-outline-danger.disabled,html[data-netbox-color-mode=light] .btn-outline-danger:disabled,html[data-netbox-color-mode=light] .btn-outline-danger.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}html .btn-outline-light:hover,html[data-netbox-color-mode=dark] .btn-outline-light:hover,html[data-netbox-color-mode=light] .btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html .btn-outline-light,html .btn-outline-light:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html .btn-outline-light,.btn-check:active+html .btn-outline-light,html .btn-outline-light:active,html .btn-outline-light.active,html .btn-outline-light.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light,html[data-netbox-color-mode=dark] .btn-outline-light:active,html[data-netbox-color-mode=dark] .btn-outline-light.active,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-light,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-light,html[data-netbox-color-mode=light] .btn-outline-light:active,html[data-netbox-color-mode=light] .btn-outline-light.active,html[data-netbox-color-mode=light] .btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html .btn-outline-light:focus,.btn-check:active+html .btn-outline-light:focus,html .btn-outline-light:active:focus,html .btn-outline-light.active:focus,html .btn-outline-light.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-light:focus,html[data-netbox-color-mode=dark] .btn-outline-light:active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.active:focus,html[data-netbox-color-mode=dark] .btn-outline-light.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-light:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-light:focus,html[data-netbox-color-mode=light] .btn-outline-light:active:focus,html[data-netbox-color-mode=light] .btn-outline-light.active:focus,html[data-netbox-color-mode=light] .btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html .btn-outline-light:disabled,html .btn-outline-light.disabled,html[data-netbox-color-mode=dark] .btn-outline-light:disabled,html[data-netbox-color-mode=dark] .btn-outline-light.disabled,html[data-netbox-color-mode=light] .btn-outline-light:disabled,html[data-netbox-color-mode=light] .btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}}@media print{html .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark{color:#212529;border-color:#212529}html .btn-outline-dark:hover,html[data-netbox-color-mode=dark] .btn-outline-dark:hover,html[data-netbox-color-mode=light] .btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html .btn-outline-dark,html .btn-outline-dark:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html .btn-outline-dark,.btn-check:active+html .btn-outline-dark,html .btn-outline-dark:active,html .btn-outline-dark.active,html .btn-outline-dark.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark,html[data-netbox-color-mode=dark] .btn-outline-dark:active,html[data-netbox-color-mode=dark] .btn-outline-dark.active,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-dark,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-dark,html[data-netbox-color-mode=light] .btn-outline-dark:active,html[data-netbox-color-mode=light] .btn-outline-dark.active,html[data-netbox-color-mode=light] .btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html .btn-outline-dark:focus,.btn-check:active+html .btn-outline-dark:focus,html .btn-outline-dark:active:focus,html .btn-outline-dark.active:focus,html .btn-outline-dark.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-dark:focus,html[data-netbox-color-mode=dark] .btn-outline-dark:active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.active:focus,html[data-netbox-color-mode=dark] .btn-outline-dark.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-dark:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-dark:focus,html[data-netbox-color-mode=light] .btn-outline-dark:active:focus,html[data-netbox-color-mode=light] .btn-outline-dark.active:focus,html[data-netbox-color-mode=light] .btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html .btn-outline-dark:disabled,html .btn-outline-dark.disabled,html[data-netbox-color-mode=dark] .btn-outline-dark:disabled,html[data-netbox-color-mode=dark] .btn-outline-dark.disabled,html[data-netbox-color-mode=light] .btn-outline-dark:disabled,html[data-netbox-color-mode=light] .btn-outline-dark.disabled{color:#212529;background-color:transparent}}@media print{html .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red{color:#dc3545;border-color:#dc3545}html .btn-outline-red:hover,html[data-netbox-color-mode=dark] .btn-outline-red:hover,html[data-netbox-color-mode=light] .btn-outline-red:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-red,html .btn-outline-red:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-red,.btn-check:active+html .btn-outline-red,html .btn-outline-red:active,html .btn-outline-red.active,html .btn-outline-red.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red,html[data-netbox-color-mode=dark] .btn-outline-red:active,html[data-netbox-color-mode=dark] .btn-outline-red.active,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red,html[data-netbox-color-mode=light] .btn-outline-red:active,html[data-netbox-color-mode=light] .btn-outline-red.active,html[data-netbox-color-mode=light] .btn-outline-red.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-red:focus,.btn-check:active+html .btn-outline-red:focus,html .btn-outline-red:active:focus,html .btn-outline-red.active:focus,html .btn-outline-red.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red:focus,html[data-netbox-color-mode=dark] .btn-outline-red:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red:focus,html[data-netbox-color-mode=light] .btn-outline-red:active:focus,html[data-netbox-color-mode=light] .btn-outline-red.active:focus,html[data-netbox-color-mode=light] .btn-outline-red.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-red:disabled,html .btn-outline-red.disabled,html[data-netbox-color-mode=dark] .btn-outline-red:disabled,html[data-netbox-color-mode=dark] .btn-outline-red.disabled,html[data-netbox-color-mode=light] .btn-outline-red:disabled,html[data-netbox-color-mode=light] .btn-outline-red.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow{color:#ffc107;border-color:#ffc107}html .btn-outline-yellow:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow:hover,html[data-netbox-color-mode=light] .btn-outline-yellow:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-yellow,html .btn-outline-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-yellow,.btn-check:active+html .btn-outline-yellow,html .btn-outline-yellow:active,html .btn-outline-yellow.active,html .btn-outline-yellow.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow,html[data-netbox-color-mode=dark] .btn-outline-yellow:active,html[data-netbox-color-mode=dark] .btn-outline-yellow.active,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow,html[data-netbox-color-mode=light] .btn-outline-yellow:active,html[data-netbox-color-mode=light] .btn-outline-yellow.active,html[data-netbox-color-mode=light] .btn-outline-yellow.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-yellow:focus,.btn-check:active+html .btn-outline-yellow:focus,html .btn-outline-yellow:active:focus,html .btn-outline-yellow.active:focus,html .btn-outline-yellow.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow:focus,html[data-netbox-color-mode=light] .btn-outline-yellow:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-yellow:disabled,html .btn-outline-yellow.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green{color:#198754;border-color:#198754}html .btn-outline-green:hover,html[data-netbox-color-mode=dark] .btn-outline-green:hover,html[data-netbox-color-mode=light] .btn-outline-green:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-green,html .btn-outline-green:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-green,.btn-check:active+html .btn-outline-green,html .btn-outline-green:active,html .btn-outline-green.active,html .btn-outline-green.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green,html[data-netbox-color-mode=dark] .btn-outline-green:active,html[data-netbox-color-mode=dark] .btn-outline-green.active,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green,html[data-netbox-color-mode=light] .btn-outline-green:active,html[data-netbox-color-mode=light] .btn-outline-green.active,html[data-netbox-color-mode=light] .btn-outline-green.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-green:focus,.btn-check:active+html .btn-outline-green:focus,html .btn-outline-green:active:focus,html .btn-outline-green.active:focus,html .btn-outline-green.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green:focus,html[data-netbox-color-mode=dark] .btn-outline-green:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green:focus,html[data-netbox-color-mode=light] .btn-outline-green:active:focus,html[data-netbox-color-mode=light] .btn-outline-green.active:focus,html[data-netbox-color-mode=light] .btn-outline-green.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-green:disabled,html .btn-outline-green.disabled,html[data-netbox-color-mode=dark] .btn-outline-green:disabled,html[data-netbox-color-mode=dark] .btn-outline-green.disabled,html[data-netbox-color-mode=light] .btn-outline-green:disabled,html[data-netbox-color-mode=light] .btn-outline-green.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue{color:#0d6efd;border-color:#0d6efd}html .btn-outline-blue:hover,html[data-netbox-color-mode=dark] .btn-outline-blue:hover,html[data-netbox-color-mode=light] .btn-outline-blue:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html .btn-outline-blue,html .btn-outline-blue:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html .btn-outline-blue,.btn-check:active+html .btn-outline-blue,html .btn-outline-blue:active,html .btn-outline-blue.active,html .btn-outline-blue.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue,html[data-netbox-color-mode=dark] .btn-outline-blue:active,html[data-netbox-color-mode=dark] .btn-outline-blue.active,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue,html[data-netbox-color-mode=light] .btn-outline-blue:active,html[data-netbox-color-mode=light] .btn-outline-blue.active,html[data-netbox-color-mode=light] .btn-outline-blue.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html .btn-outline-blue:focus,.btn-check:active+html .btn-outline-blue:focus,html .btn-outline-blue:active:focus,html .btn-outline-blue.active:focus,html .btn-outline-blue.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue:focus,html[data-netbox-color-mode=dark] .btn-outline-blue:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue:focus,html[data-netbox-color-mode=light] .btn-outline-blue:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html .btn-outline-blue:disabled,html .btn-outline-blue.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue.disabled,html[data-netbox-color-mode=light] .btn-outline-blue:disabled,html[data-netbox-color-mode=light] .btn-outline-blue.disabled{color:#0d6efd;background-color:transparent}}@media print{html .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-cyan:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan:hover,html[data-netbox-color-mode=light] .btn-outline-cyan:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-cyan,html .btn-outline-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-cyan,.btn-check:active+html .btn-outline-cyan,html .btn-outline-cyan:active,html .btn-outline-cyan.active,html .btn-outline-cyan.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan,html[data-netbox-color-mode=dark] .btn-outline-cyan:active,html[data-netbox-color-mode=dark] .btn-outline-cyan.active,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan,html[data-netbox-color-mode=light] .btn-outline-cyan:active,html[data-netbox-color-mode=light] .btn-outline-cyan.active,html[data-netbox-color-mode=light] .btn-outline-cyan.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-cyan:focus,.btn-check:active+html .btn-outline-cyan:focus,html .btn-outline-cyan:active:focus,html .btn-outline-cyan.active:focus,html .btn-outline-cyan.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan:focus,html[data-netbox-color-mode=light] .btn-outline-cyan:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-cyan:disabled,html .btn-outline-cyan.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo{color:#6610f2;border-color:#6610f2}html .btn-outline-indigo:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo:hover,html[data-netbox-color-mode=light] .btn-outline-indigo:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html .btn-outline-indigo,html .btn-outline-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html .btn-outline-indigo,.btn-check:active+html .btn-outline-indigo,html .btn-outline-indigo:active,html .btn-outline-indigo.active,html .btn-outline-indigo.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo,html[data-netbox-color-mode=dark] .btn-outline-indigo:active,html[data-netbox-color-mode=dark] .btn-outline-indigo.active,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo,html[data-netbox-color-mode=light] .btn-outline-indigo:active,html[data-netbox-color-mode=light] .btn-outline-indigo.active,html[data-netbox-color-mode=light] .btn-outline-indigo.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html .btn-outline-indigo:focus,.btn-check:active+html .btn-outline-indigo:focus,html .btn-outline-indigo:active:focus,html .btn-outline-indigo.active:focus,html .btn-outline-indigo.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo:focus,html[data-netbox-color-mode=light] .btn-outline-indigo:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html .btn-outline-indigo:disabled,html .btn-outline-indigo.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo.disabled{color:#6610f2;background-color:transparent}}@media print{html .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple{color:#6f42c1;border-color:#6f42c1}html .btn-outline-purple:hover,html[data-netbox-color-mode=dark] .btn-outline-purple:hover,html[data-netbox-color-mode=light] .btn-outline-purple:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html .btn-outline-purple,html .btn-outline-purple:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html .btn-outline-purple,.btn-check:active+html .btn-outline-purple,html .btn-outline-purple:active,html .btn-outline-purple.active,html .btn-outline-purple.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple,html[data-netbox-color-mode=dark] .btn-outline-purple:active,html[data-netbox-color-mode=dark] .btn-outline-purple.active,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple,html[data-netbox-color-mode=light] .btn-outline-purple:active,html[data-netbox-color-mode=light] .btn-outline-purple.active,html[data-netbox-color-mode=light] .btn-outline-purple.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html .btn-outline-purple:focus,.btn-check:active+html .btn-outline-purple:focus,html .btn-outline-purple:active:focus,html .btn-outline-purple.active:focus,html .btn-outline-purple.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple:focus,html[data-netbox-color-mode=dark] .btn-outline-purple:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple:focus,html[data-netbox-color-mode=light] .btn-outline-purple:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html .btn-outline-purple:disabled,html .btn-outline-purple.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple.disabled,html[data-netbox-color-mode=light] .btn-outline-purple:disabled,html[data-netbox-color-mode=light] .btn-outline-purple.disabled{color:#6f42c1;background-color:transparent}}@media print{html .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink{color:#d63384;border-color:#d63384}html .btn-outline-pink:hover,html[data-netbox-color-mode=dark] .btn-outline-pink:hover,html[data-netbox-color-mode=light] .btn-outline-pink:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html .btn-outline-pink,html .btn-outline-pink:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html .btn-outline-pink,.btn-check:active+html .btn-outline-pink,html .btn-outline-pink:active,html .btn-outline-pink.active,html .btn-outline-pink.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink,html[data-netbox-color-mode=dark] .btn-outline-pink:active,html[data-netbox-color-mode=dark] .btn-outline-pink.active,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink,html[data-netbox-color-mode=light] .btn-outline-pink:active,html[data-netbox-color-mode=light] .btn-outline-pink.active,html[data-netbox-color-mode=light] .btn-outline-pink.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html .btn-outline-pink:focus,.btn-check:active+html .btn-outline-pink:focus,html .btn-outline-pink:active:focus,html .btn-outline-pink.active:focus,html .btn-outline-pink.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink:focus,html[data-netbox-color-mode=dark] .btn-outline-pink:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink:focus,html[data-netbox-color-mode=light] .btn-outline-pink:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html .btn-outline-pink:disabled,html .btn-outline-pink.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink.disabled,html[data-netbox-color-mode=light] .btn-outline-pink:disabled,html[data-netbox-color-mode=light] .btn-outline-pink.disabled{color:#d63384;background-color:transparent}}@media print{html .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker{color:#1b1f22;border-color:#1b1f22}html .btn-outline-darker:hover,html[data-netbox-color-mode=dark] .btn-outline-darker:hover,html[data-netbox-color-mode=light] .btn-outline-darker:hover{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:focus+html .btn-outline-darker,html .btn-outline-darker:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker:focus{box-shadow:0 0 0 .25rem #1b1f2280}.btn-check:checked+html .btn-outline-darker,.btn-check:active+html .btn-outline-darker,html .btn-outline-darker:active,html .btn-outline-darker.active,html .btn-outline-darker.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker,html[data-netbox-color-mode=dark] .btn-outline-darker:active,html[data-netbox-color-mode=dark] .btn-outline-darker.active,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darker,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darker,html[data-netbox-color-mode=light] .btn-outline-darker:active,html[data-netbox-color-mode=light] .btn-outline-darker.active,html[data-netbox-color-mode=light] .btn-outline-darker.dropdown-toggle.show{color:#fff;background-color:#1b1f22;border-color:#1b1f22}.btn-check:checked+html .btn-outline-darker:focus,.btn-check:active+html .btn-outline-darker:focus,html .btn-outline-darker:active:focus,html .btn-outline-darker.active:focus,html .btn-outline-darker.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darker:focus,html[data-netbox-color-mode=dark] .btn-outline-darker:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darker.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darker:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darker:focus,html[data-netbox-color-mode=light] .btn-outline-darker:active:focus,html[data-netbox-color-mode=light] .btn-outline-darker.active:focus,html[data-netbox-color-mode=light] .btn-outline-darker.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #1b1f2280}html .btn-outline-darker:disabled,html .btn-outline-darker.disabled,html[data-netbox-color-mode=dark] .btn-outline-darker:disabled,html[data-netbox-color-mode=dark] .btn-outline-darker.disabled,html[data-netbox-color-mode=light] .btn-outline-darker:disabled,html[data-netbox-color-mode=light] .btn-outline-darker.disabled{color:#1b1f22;background-color:transparent}}@media print{html .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest{color:#171b1d;border-color:#171b1d}html .btn-outline-darkest:hover,html[data-netbox-color-mode=dark] .btn-outline-darkest:hover,html[data-netbox-color-mode=light] .btn-outline-darkest:hover{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:focus+html .btn-outline-darkest,html .btn-outline-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest:focus{box-shadow:0 0 0 .25rem #171b1d80}.btn-check:checked+html .btn-outline-darkest,.btn-check:active+html .btn-outline-darkest,html .btn-outline-darkest:active,html .btn-outline-darkest.active,html .btn-outline-darkest.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest,html[data-netbox-color-mode=dark] .btn-outline-darkest:active,html[data-netbox-color-mode=dark] .btn-outline-darkest.active,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darkest,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darkest,html[data-netbox-color-mode=light] .btn-outline-darkest:active,html[data-netbox-color-mode=light] .btn-outline-darkest.active,html[data-netbox-color-mode=light] .btn-outline-darkest.dropdown-toggle.show{color:#fff;background-color:#171b1d;border-color:#171b1d}.btn-check:checked+html .btn-outline-darkest:focus,.btn-check:active+html .btn-outline-darkest:focus,html .btn-outline-darkest:active:focus,html .btn-outline-darkest.active:focus,html .btn-outline-darkest.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-darkest:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=dark] .btn-outline-darkest.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-darkest:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-darkest:focus,html[data-netbox-color-mode=light] .btn-outline-darkest:active:focus,html[data-netbox-color-mode=light] .btn-outline-darkest.active:focus,html[data-netbox-color-mode=light] .btn-outline-darkest.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #171b1d80}html .btn-outline-darkest:disabled,html .btn-outline-darkest.disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest:disabled,html[data-netbox-color-mode=dark] .btn-outline-darkest.disabled,html[data-netbox-color-mode=light] .btn-outline-darkest:disabled,html[data-netbox-color-mode=light] .btn-outline-darkest.disabled{color:#171b1d;background-color:transparent}}@media print{html .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray{color:#ced4da;border-color:#ced4da}html .btn-outline-gray:hover,html[data-netbox-color-mode=dark] .btn-outline-gray:hover,html[data-netbox-color-mode=light] .btn-outline-gray:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html .btn-outline-gray,html .btn-outline-gray:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html .btn-outline-gray,.btn-check:active+html .btn-outline-gray,html .btn-outline-gray:active,html .btn-outline-gray.active,html .btn-outline-gray.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray,html[data-netbox-color-mode=dark] .btn-outline-gray:active,html[data-netbox-color-mode=dark] .btn-outline-gray.active,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray,html[data-netbox-color-mode=light] .btn-outline-gray:active,html[data-netbox-color-mode=light] .btn-outline-gray.active,html[data-netbox-color-mode=light] .btn-outline-gray.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html .btn-outline-gray:focus,.btn-check:active+html .btn-outline-gray:focus,html .btn-outline-gray:active:focus,html .btn-outline-gray.active:focus,html .btn-outline-gray.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray:focus,html[data-netbox-color-mode=dark] .btn-outline-gray:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray:focus,html[data-netbox-color-mode=light] .btn-outline-gray:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html .btn-outline-gray:disabled,html .btn-outline-gray.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray.disabled,html[data-netbox-color-mode=light] .btn-outline-gray:disabled,html[data-netbox-color-mode=light] .btn-outline-gray.disabled{color:#ced4da;background-color:transparent}}@media print{html .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100{color:#f8f9fa;border-color:#f8f9fa}html .btn-outline-gray-100:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-100:hover,html[data-netbox-color-mode=light] .btn-outline-gray-100:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+html .btn-outline-gray-100,html .btn-outline-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100:focus{box-shadow:0 0 0 .25rem #f8f9fa80}.btn-check:checked+html .btn-outline-gray-100,.btn-check:active+html .btn-outline-gray-100,html .btn-outline-gray-100:active,html .btn-outline-gray-100.active,html .btn-outline-gray-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-100,html[data-netbox-color-mode=light] .btn-outline-gray-100:active,html[data-netbox-color-mode=light] .btn-outline-gray-100.active,html[data-netbox-color-mode=light] .btn-outline-gray-100.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+html .btn-outline-gray-100:focus,.btn-check:active+html .btn-outline-gray-100:focus,html .btn-outline-gray-100:active:focus,html .btn-outline-gray-100.active:focus,html .btn-outline-gray-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-100:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-100:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8f9fa80}html .btn-outline-gray-100:disabled,html .btn-outline-gray-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-100.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-100:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-100.disabled{color:#f8f9fa;background-color:transparent}}@media print{html .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200{color:#e9ecef;border-color:#e9ecef}html .btn-outline-gray-200:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-200:hover,html[data-netbox-color-mode=light] .btn-outline-gray-200:hover{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:focus+html .btn-outline-gray-200,html .btn-outline-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200:focus{box-shadow:0 0 0 .25rem #e9ecef80}.btn-check:checked+html .btn-outline-gray-200,.btn-check:active+html .btn-outline-gray-200,html .btn-outline-gray-200:active,html .btn-outline-gray-200.active,html .btn-outline-gray-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-200,html[data-netbox-color-mode=light] .btn-outline-gray-200:active,html[data-netbox-color-mode=light] .btn-outline-gray-200.active,html[data-netbox-color-mode=light] .btn-outline-gray-200.dropdown-toggle.show{color:#000;background-color:#e9ecef;border-color:#e9ecef}.btn-check:checked+html .btn-outline-gray-200:focus,.btn-check:active+html .btn-outline-gray-200:focus,html .btn-outline-gray-200:active:focus,html .btn-outline-gray-200.active:focus,html .btn-outline-gray-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-200:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-200:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e9ecef80}html .btn-outline-gray-200:disabled,html .btn-outline-gray-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-200.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-200:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-200.disabled{color:#e9ecef;background-color:transparent}}@media print{html .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300{color:#dee2e6;border-color:#dee2e6}html .btn-outline-gray-300:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-300:hover,html[data-netbox-color-mode=light] .btn-outline-gray-300:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+html .btn-outline-gray-300,html .btn-outline-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300:focus{box-shadow:0 0 0 .25rem #dee2e680}.btn-check:checked+html .btn-outline-gray-300,.btn-check:active+html .btn-outline-gray-300,html .btn-outline-gray-300:active,html .btn-outline-gray-300.active,html .btn-outline-gray-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-300,html[data-netbox-color-mode=light] .btn-outline-gray-300:active,html[data-netbox-color-mode=light] .btn-outline-gray-300.active,html[data-netbox-color-mode=light] .btn-outline-gray-300.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+html .btn-outline-gray-300:focus,.btn-check:active+html .btn-outline-gray-300:focus,html .btn-outline-gray-300:active:focus,html .btn-outline-gray-300.active:focus,html .btn-outline-gray-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-300:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-300:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dee2e680}html .btn-outline-gray-300:disabled,html .btn-outline-gray-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-300.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-300:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-300.disabled{color:#dee2e6;background-color:transparent}}@media print{html .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400{color:#ced4da;border-color:#ced4da}html .btn-outline-gray-400:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-400:hover,html[data-netbox-color-mode=light] .btn-outline-gray-400:hover{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:focus+html .btn-outline-gray-400,html .btn-outline-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400:focus{box-shadow:0 0 0 .25rem #ced4da80}.btn-check:checked+html .btn-outline-gray-400,.btn-check:active+html .btn-outline-gray-400,html .btn-outline-gray-400:active,html .btn-outline-gray-400.active,html .btn-outline-gray-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-400,html[data-netbox-color-mode=light] .btn-outline-gray-400:active,html[data-netbox-color-mode=light] .btn-outline-gray-400.active,html[data-netbox-color-mode=light] .btn-outline-gray-400.dropdown-toggle.show{color:#000;background-color:#ced4da;border-color:#ced4da}.btn-check:checked+html .btn-outline-gray-400:focus,.btn-check:active+html .btn-outline-gray-400:focus,html .btn-outline-gray-400:active:focus,html .btn-outline-gray-400.active:focus,html .btn-outline-gray-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-400:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-400:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ced4da80}html .btn-outline-gray-400:disabled,html .btn-outline-gray-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-400.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-400:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-400.disabled{color:#ced4da;background-color:transparent}}@media print{html .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500{color:#adb5bd;border-color:#adb5bd}html .btn-outline-gray-500:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-500:hover,html[data-netbox-color-mode=light] .btn-outline-gray-500:hover{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:focus+html .btn-outline-gray-500,html .btn-outline-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500:focus{box-shadow:0 0 0 .25rem #adb5bd80}.btn-check:checked+html .btn-outline-gray-500,.btn-check:active+html .btn-outline-gray-500,html .btn-outline-gray-500:active,html .btn-outline-gray-500.active,html .btn-outline-gray-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-500,html[data-netbox-color-mode=light] .btn-outline-gray-500:active,html[data-netbox-color-mode=light] .btn-outline-gray-500.active,html[data-netbox-color-mode=light] .btn-outline-gray-500.dropdown-toggle.show{color:#000;background-color:#adb5bd;border-color:#adb5bd}.btn-check:checked+html .btn-outline-gray-500:focus,.btn-check:active+html .btn-outline-gray-500:focus,html .btn-outline-gray-500:active:focus,html .btn-outline-gray-500.active:focus,html .btn-outline-gray-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-500:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-500:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #adb5bd80}html .btn-outline-gray-500:disabled,html .btn-outline-gray-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-500.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-500:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-500.disabled{color:#adb5bd;background-color:transparent}}@media print{html .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600{color:#6c757d;border-color:#6c757d}html .btn-outline-gray-600:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-600:hover,html[data-netbox-color-mode=light] .btn-outline-gray-600:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+html .btn-outline-gray-600,html .btn-outline-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-check:checked+html .btn-outline-gray-600,.btn-check:active+html .btn-outline-gray-600,html .btn-outline-gray-600:active,html .btn-outline-gray-600.active,html .btn-outline-gray-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-600,html[data-netbox-color-mode=light] .btn-outline-gray-600:active,html[data-netbox-color-mode=light] .btn-outline-gray-600.active,html[data-netbox-color-mode=light] .btn-outline-gray-600.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+html .btn-outline-gray-600:focus,.btn-check:active+html .btn-outline-gray-600:focus,html .btn-outline-gray-600:active:focus,html .btn-outline-gray-600.active:focus,html .btn-outline-gray-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-600:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-600:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6c757d80}html .btn-outline-gray-600:disabled,html .btn-outline-gray-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-600.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-600:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-600.disabled{color:#6c757d;background-color:transparent}}@media print{html .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700{color:#495057;border-color:#495057}html .btn-outline-gray-700:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-700:hover,html[data-netbox-color-mode=light] .btn-outline-gray-700:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+html .btn-outline-gray-700,html .btn-outline-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700:focus{box-shadow:0 0 0 .25rem #49505780}.btn-check:checked+html .btn-outline-gray-700,.btn-check:active+html .btn-outline-gray-700,html .btn-outline-gray-700:active,html .btn-outline-gray-700.active,html .btn-outline-gray-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-700,html[data-netbox-color-mode=light] .btn-outline-gray-700:active,html[data-netbox-color-mode=light] .btn-outline-gray-700.active,html[data-netbox-color-mode=light] .btn-outline-gray-700.dropdown-toggle.show{color:#fff;background-color:#495057;border-color:#495057}.btn-check:checked+html .btn-outline-gray-700:focus,.btn-check:active+html .btn-outline-gray-700:focus,html .btn-outline-gray-700:active:focus,html .btn-outline-gray-700.active:focus,html .btn-outline-gray-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-700:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-700:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #49505780}html .btn-outline-gray-700:disabled,html .btn-outline-gray-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-700.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-700:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-700.disabled{color:#495057;background-color:transparent}}@media print{html .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800{color:#343a40;border-color:#343a40}html .btn-outline-gray-800:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-800:hover,html[data-netbox-color-mode=light] .btn-outline-gray-800:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:focus+html .btn-outline-gray-800,html .btn-outline-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800:focus{box-shadow:0 0 0 .25rem #343a4080}.btn-check:checked+html .btn-outline-gray-800,.btn-check:active+html .btn-outline-gray-800,html .btn-outline-gray-800:active,html .btn-outline-gray-800.active,html .btn-outline-gray-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-800,html[data-netbox-color-mode=light] .btn-outline-gray-800:active,html[data-netbox-color-mode=light] .btn-outline-gray-800.active,html[data-netbox-color-mode=light] .btn-outline-gray-800.dropdown-toggle.show{color:#fff;background-color:#343a40;border-color:#343a40}.btn-check:checked+html .btn-outline-gray-800:focus,.btn-check:active+html .btn-outline-gray-800:focus,html .btn-outline-gray-800:active:focus,html .btn-outline-gray-800.active:focus,html .btn-outline-gray-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-800:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-800:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #343a4080}html .btn-outline-gray-800:disabled,html .btn-outline-gray-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-800.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-800:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-800.disabled{color:#343a40;background-color:transparent}}@media print{html .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900{color:#212529;border-color:#212529}html .btn-outline-gray-900:hover,html[data-netbox-color-mode=dark] .btn-outline-gray-900:hover,html[data-netbox-color-mode=light] .btn-outline-gray-900:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+html .btn-outline-gray-900,html .btn-outline-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900:focus{box-shadow:0 0 0 .25rem #21252980}.btn-check:checked+html .btn-outline-gray-900,.btn-check:active+html .btn-outline-gray-900,html .btn-outline-gray-900:active,html .btn-outline-gray-900.active,html .btn-outline-gray-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-900,html[data-netbox-color-mode=light] .btn-outline-gray-900:active,html[data-netbox-color-mode=light] .btn-outline-gray-900.active,html[data-netbox-color-mode=light] .btn-outline-gray-900.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+html .btn-outline-gray-900:focus,.btn-check:active+html .btn-outline-gray-900:focus,html .btn-outline-gray-900:active:focus,html .btn-outline-gray-900.active:focus,html .btn-outline-gray-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-gray-900:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-gray-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-gray-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-gray-900:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-gray-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #21252980}html .btn-outline-gray-900:disabled,html .btn-outline-gray-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-gray-900.disabled,html[data-netbox-color-mode=light] .btn-outline-gray-900:disabled,html[data-netbox-color-mode=light] .btn-outline-gray-900.disabled{color:#212529;background-color:transparent}}@media print{html .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100{color:#f8d7da;border-color:#f8d7da}html .btn-outline-red-100:hover,html[data-netbox-color-mode=dark] .btn-outline-red-100:hover,html[data-netbox-color-mode=light] .btn-outline-red-100:hover{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:focus+html .btn-outline-red-100,html .btn-outline-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100:focus{box-shadow:0 0 0 .25rem #f8d7da80}.btn-check:checked+html .btn-outline-red-100,.btn-check:active+html .btn-outline-red-100,html .btn-outline-red-100:active,html .btn-outline-red-100.active,html .btn-outline-red-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100,html[data-netbox-color-mode=dark] .btn-outline-red-100:active,html[data-netbox-color-mode=dark] .btn-outline-red-100.active,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-100,html[data-netbox-color-mode=light] .btn-outline-red-100:active,html[data-netbox-color-mode=light] .btn-outline-red-100.active,html[data-netbox-color-mode=light] .btn-outline-red-100.dropdown-toggle.show{color:#000;background-color:#f8d7da;border-color:#f8d7da}.btn-check:checked+html .btn-outline-red-100:focus,.btn-check:active+html .btn-outline-red-100:focus,html .btn-outline-red-100:active:focus,html .btn-outline-red-100.active:focus,html .btn-outline-red-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-100:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-100:focus,html[data-netbox-color-mode=light] .btn-outline-red-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f8d7da80}html .btn-outline-red-100:disabled,html .btn-outline-red-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-100.disabled,html[data-netbox-color-mode=light] .btn-outline-red-100:disabled,html[data-netbox-color-mode=light] .btn-outline-red-100.disabled{color:#f8d7da;background-color:transparent}}@media print{html .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200{color:#f1aeb5;border-color:#f1aeb5}html .btn-outline-red-200:hover,html[data-netbox-color-mode=dark] .btn-outline-red-200:hover,html[data-netbox-color-mode=light] .btn-outline-red-200:hover{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:focus+html .btn-outline-red-200,html .btn-outline-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200:focus{box-shadow:0 0 0 .25rem #f1aeb580}.btn-check:checked+html .btn-outline-red-200,.btn-check:active+html .btn-outline-red-200,html .btn-outline-red-200:active,html .btn-outline-red-200.active,html .btn-outline-red-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200,html[data-netbox-color-mode=dark] .btn-outline-red-200:active,html[data-netbox-color-mode=dark] .btn-outline-red-200.active,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-200,html[data-netbox-color-mode=light] .btn-outline-red-200:active,html[data-netbox-color-mode=light] .btn-outline-red-200.active,html[data-netbox-color-mode=light] .btn-outline-red-200.dropdown-toggle.show{color:#000;background-color:#f1aeb5;border-color:#f1aeb5}.btn-check:checked+html .btn-outline-red-200:focus,.btn-check:active+html .btn-outline-red-200:focus,html .btn-outline-red-200:active:focus,html .btn-outline-red-200.active:focus,html .btn-outline-red-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-200:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-200:focus,html[data-netbox-color-mode=light] .btn-outline-red-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f1aeb580}html .btn-outline-red-200:disabled,html .btn-outline-red-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-200.disabled,html[data-netbox-color-mode=light] .btn-outline-red-200:disabled,html[data-netbox-color-mode=light] .btn-outline-red-200.disabled{color:#f1aeb5;background-color:transparent}}@media print{html .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300{color:#ea868f;border-color:#ea868f}html .btn-outline-red-300:hover,html[data-netbox-color-mode=dark] .btn-outline-red-300:hover,html[data-netbox-color-mode=light] .btn-outline-red-300:hover{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:focus+html .btn-outline-red-300,html .btn-outline-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300:focus{box-shadow:0 0 0 .25rem #ea868f80}.btn-check:checked+html .btn-outline-red-300,.btn-check:active+html .btn-outline-red-300,html .btn-outline-red-300:active,html .btn-outline-red-300.active,html .btn-outline-red-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300,html[data-netbox-color-mode=dark] .btn-outline-red-300:active,html[data-netbox-color-mode=dark] .btn-outline-red-300.active,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-300,html[data-netbox-color-mode=light] .btn-outline-red-300:active,html[data-netbox-color-mode=light] .btn-outline-red-300.active,html[data-netbox-color-mode=light] .btn-outline-red-300.dropdown-toggle.show{color:#000;background-color:#ea868f;border-color:#ea868f}.btn-check:checked+html .btn-outline-red-300:focus,.btn-check:active+html .btn-outline-red-300:focus,html .btn-outline-red-300:active:focus,html .btn-outline-red-300.active:focus,html .btn-outline-red-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-300:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-300:focus,html[data-netbox-color-mode=light] .btn-outline-red-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ea868f80}html .btn-outline-red-300:disabled,html .btn-outline-red-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-300.disabled,html[data-netbox-color-mode=light] .btn-outline-red-300:disabled,html[data-netbox-color-mode=light] .btn-outline-red-300.disabled{color:#ea868f;background-color:transparent}}@media print{html .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400{color:#e35d6a;border-color:#e35d6a}html .btn-outline-red-400:hover,html[data-netbox-color-mode=dark] .btn-outline-red-400:hover,html[data-netbox-color-mode=light] .btn-outline-red-400:hover{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:focus+html .btn-outline-red-400,html .btn-outline-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400:focus{box-shadow:0 0 0 .25rem #e35d6a80}.btn-check:checked+html .btn-outline-red-400,.btn-check:active+html .btn-outline-red-400,html .btn-outline-red-400:active,html .btn-outline-red-400.active,html .btn-outline-red-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400,html[data-netbox-color-mode=dark] .btn-outline-red-400:active,html[data-netbox-color-mode=dark] .btn-outline-red-400.active,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-400,html[data-netbox-color-mode=light] .btn-outline-red-400:active,html[data-netbox-color-mode=light] .btn-outline-red-400.active,html[data-netbox-color-mode=light] .btn-outline-red-400.dropdown-toggle.show{color:#000;background-color:#e35d6a;border-color:#e35d6a}.btn-check:checked+html .btn-outline-red-400:focus,.btn-check:active+html .btn-outline-red-400:focus,html .btn-outline-red-400:active:focus,html .btn-outline-red-400.active:focus,html .btn-outline-red-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-400:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-400:focus,html[data-netbox-color-mode=light] .btn-outline-red-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e35d6a80}html .btn-outline-red-400:disabled,html .btn-outline-red-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-400.disabled,html[data-netbox-color-mode=light] .btn-outline-red-400:disabled,html[data-netbox-color-mode=light] .btn-outline-red-400.disabled{color:#e35d6a;background-color:transparent}}@media print{html .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500{color:#dc3545;border-color:#dc3545}html .btn-outline-red-500:hover,html[data-netbox-color-mode=dark] .btn-outline-red-500:hover,html[data-netbox-color-mode=light] .btn-outline-red-500:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+html .btn-outline-red-500,html .btn-outline-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500:focus{box-shadow:0 0 0 .25rem #dc354580}.btn-check:checked+html .btn-outline-red-500,.btn-check:active+html .btn-outline-red-500,html .btn-outline-red-500:active,html .btn-outline-red-500.active,html .btn-outline-red-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500,html[data-netbox-color-mode=dark] .btn-outline-red-500:active,html[data-netbox-color-mode=dark] .btn-outline-red-500.active,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-500,html[data-netbox-color-mode=light] .btn-outline-red-500:active,html[data-netbox-color-mode=light] .btn-outline-red-500.active,html[data-netbox-color-mode=light] .btn-outline-red-500.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+html .btn-outline-red-500:focus,.btn-check:active+html .btn-outline-red-500:focus,html .btn-outline-red-500:active:focus,html .btn-outline-red-500.active:focus,html .btn-outline-red-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-500:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-500:focus,html[data-netbox-color-mode=light] .btn-outline-red-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #dc354580}html .btn-outline-red-500:disabled,html .btn-outline-red-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-500.disabled,html[data-netbox-color-mode=light] .btn-outline-red-500:disabled,html[data-netbox-color-mode=light] .btn-outline-red-500.disabled{color:#dc3545;background-color:transparent}}@media print{html .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600{color:#b02a37;border-color:#b02a37}html .btn-outline-red-600:hover,html[data-netbox-color-mode=dark] .btn-outline-red-600:hover,html[data-netbox-color-mode=light] .btn-outline-red-600:hover{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:focus+html .btn-outline-red-600,html .btn-outline-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600:focus{box-shadow:0 0 0 .25rem #b02a3780}.btn-check:checked+html .btn-outline-red-600,.btn-check:active+html .btn-outline-red-600,html .btn-outline-red-600:active,html .btn-outline-red-600.active,html .btn-outline-red-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600,html[data-netbox-color-mode=dark] .btn-outline-red-600:active,html[data-netbox-color-mode=dark] .btn-outline-red-600.active,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-600,html[data-netbox-color-mode=light] .btn-outline-red-600:active,html[data-netbox-color-mode=light] .btn-outline-red-600.active,html[data-netbox-color-mode=light] .btn-outline-red-600.dropdown-toggle.show{color:#fff;background-color:#b02a37;border-color:#b02a37}.btn-check:checked+html .btn-outline-red-600:focus,.btn-check:active+html .btn-outline-red-600:focus,html .btn-outline-red-600:active:focus,html .btn-outline-red-600.active:focus,html .btn-outline-red-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-600:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-600:focus,html[data-netbox-color-mode=light] .btn-outline-red-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #b02a3780}html .btn-outline-red-600:disabled,html .btn-outline-red-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-600.disabled,html[data-netbox-color-mode=light] .btn-outline-red-600:disabled,html[data-netbox-color-mode=light] .btn-outline-red-600.disabled{color:#b02a37;background-color:transparent}}@media print{html .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700{color:#842029;border-color:#842029}html .btn-outline-red-700:hover,html[data-netbox-color-mode=dark] .btn-outline-red-700:hover,html[data-netbox-color-mode=light] .btn-outline-red-700:hover{color:#fff;background-color:#842029;border-color:#842029}.btn-check:focus+html .btn-outline-red-700,html .btn-outline-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700:focus{box-shadow:0 0 0 .25rem #84202980}.btn-check:checked+html .btn-outline-red-700,.btn-check:active+html .btn-outline-red-700,html .btn-outline-red-700:active,html .btn-outline-red-700.active,html .btn-outline-red-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700,html[data-netbox-color-mode=dark] .btn-outline-red-700:active,html[data-netbox-color-mode=dark] .btn-outline-red-700.active,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-700,html[data-netbox-color-mode=light] .btn-outline-red-700:active,html[data-netbox-color-mode=light] .btn-outline-red-700.active,html[data-netbox-color-mode=light] .btn-outline-red-700.dropdown-toggle.show{color:#fff;background-color:#842029;border-color:#842029}.btn-check:checked+html .btn-outline-red-700:focus,.btn-check:active+html .btn-outline-red-700:focus,html .btn-outline-red-700:active:focus,html .btn-outline-red-700.active:focus,html .btn-outline-red-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-700:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-700:focus,html[data-netbox-color-mode=light] .btn-outline-red-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #84202980}html .btn-outline-red-700:disabled,html .btn-outline-red-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-700.disabled,html[data-netbox-color-mode=light] .btn-outline-red-700:disabled,html[data-netbox-color-mode=light] .btn-outline-red-700.disabled{color:#842029;background-color:transparent}}@media print{html .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800{color:#58151c;border-color:#58151c}html .btn-outline-red-800:hover,html[data-netbox-color-mode=dark] .btn-outline-red-800:hover,html[data-netbox-color-mode=light] .btn-outline-red-800:hover{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:focus+html .btn-outline-red-800,html .btn-outline-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800:focus{box-shadow:0 0 0 .25rem #58151c80}.btn-check:checked+html .btn-outline-red-800,.btn-check:active+html .btn-outline-red-800,html .btn-outline-red-800:active,html .btn-outline-red-800.active,html .btn-outline-red-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800,html[data-netbox-color-mode=dark] .btn-outline-red-800:active,html[data-netbox-color-mode=dark] .btn-outline-red-800.active,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-800,html[data-netbox-color-mode=light] .btn-outline-red-800:active,html[data-netbox-color-mode=light] .btn-outline-red-800.active,html[data-netbox-color-mode=light] .btn-outline-red-800.dropdown-toggle.show{color:#fff;background-color:#58151c;border-color:#58151c}.btn-check:checked+html .btn-outline-red-800:focus,.btn-check:active+html .btn-outline-red-800:focus,html .btn-outline-red-800:active:focus,html .btn-outline-red-800.active:focus,html .btn-outline-red-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-800:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-800:focus,html[data-netbox-color-mode=light] .btn-outline-red-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #58151c80}html .btn-outline-red-800:disabled,html .btn-outline-red-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-800.disabled,html[data-netbox-color-mode=light] .btn-outline-red-800:disabled,html[data-netbox-color-mode=light] .btn-outline-red-800.disabled{color:#58151c;background-color:transparent}}@media print{html .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900{color:#2c0b0e;border-color:#2c0b0e}html .btn-outline-red-900:hover,html[data-netbox-color-mode=dark] .btn-outline-red-900:hover,html[data-netbox-color-mode=light] .btn-outline-red-900:hover{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:focus+html .btn-outline-red-900,html .btn-outline-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900:focus{box-shadow:0 0 0 .25rem #2c0b0e80}.btn-check:checked+html .btn-outline-red-900,.btn-check:active+html .btn-outline-red-900,html .btn-outline-red-900:active,html .btn-outline-red-900.active,html .btn-outline-red-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900,html[data-netbox-color-mode=dark] .btn-outline-red-900:active,html[data-netbox-color-mode=dark] .btn-outline-red-900.active,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-900,html[data-netbox-color-mode=light] .btn-outline-red-900:active,html[data-netbox-color-mode=light] .btn-outline-red-900.active,html[data-netbox-color-mode=light] .btn-outline-red-900.dropdown-toggle.show{color:#fff;background-color:#2c0b0e;border-color:#2c0b0e}.btn-check:checked+html .btn-outline-red-900:focus,.btn-check:active+html .btn-outline-red-900:focus,html .btn-outline-red-900:active:focus,html .btn-outline-red-900.active:focus,html .btn-outline-red-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-red-900:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-red-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-red-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-red-900:focus,html[data-netbox-color-mode=light] .btn-outline-red-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-red-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-red-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c0b0e80}html .btn-outline-red-900:disabled,html .btn-outline-red-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-red-900.disabled,html[data-netbox-color-mode=light] .btn-outline-red-900:disabled,html[data-netbox-color-mode=light] .btn-outline-red-900.disabled{color:#2c0b0e;background-color:transparent}}@media print{html .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100{color:#fff3cd;border-color:#fff3cd}html .btn-outline-yellow-100:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-100:hover{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:focus+html .btn-outline-yellow-100,html .btn-outline-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus{box-shadow:0 0 0 .25rem #fff3cd80}.btn-check:checked+html .btn-outline-yellow-100,.btn-check:active+html .btn-outline-yellow-100,html .btn-outline-yellow-100:active,html .btn-outline-yellow-100.active,html .btn-outline-yellow-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-100,html[data-netbox-color-mode=light] .btn-outline-yellow-100:active,html[data-netbox-color-mode=light] .btn-outline-yellow-100.active,html[data-netbox-color-mode=light] .btn-outline-yellow-100.dropdown-toggle.show{color:#000;background-color:#fff3cd;border-color:#fff3cd}.btn-check:checked+html .btn-outline-yellow-100:focus,.btn-check:active+html .btn-outline-yellow-100:focus,html .btn-outline-yellow-100:active:focus,html .btn-outline-yellow-100.active:focus,html .btn-outline-yellow-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-100:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #fff3cd80}html .btn-outline-yellow-100:disabled,html .btn-outline-yellow-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-100.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-100:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-100.disabled{color:#fff3cd;background-color:transparent}}@media print{html .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200{color:#ffe69c;border-color:#ffe69c}html .btn-outline-yellow-200:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-200:hover{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:focus+html .btn-outline-yellow-200,html .btn-outline-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus{box-shadow:0 0 0 .25rem #ffe69c80}.btn-check:checked+html .btn-outline-yellow-200,.btn-check:active+html .btn-outline-yellow-200,html .btn-outline-yellow-200:active,html .btn-outline-yellow-200.active,html .btn-outline-yellow-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-200,html[data-netbox-color-mode=light] .btn-outline-yellow-200:active,html[data-netbox-color-mode=light] .btn-outline-yellow-200.active,html[data-netbox-color-mode=light] .btn-outline-yellow-200.dropdown-toggle.show{color:#000;background-color:#ffe69c;border-color:#ffe69c}.btn-check:checked+html .btn-outline-yellow-200:focus,.btn-check:active+html .btn-outline-yellow-200:focus,html .btn-outline-yellow-200:active:focus,html .btn-outline-yellow-200.active:focus,html .btn-outline-yellow-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-200:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffe69c80}html .btn-outline-yellow-200:disabled,html .btn-outline-yellow-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-200.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-200:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-200.disabled{color:#ffe69c;background-color:transparent}}@media print{html .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300{color:#ffda6a;border-color:#ffda6a}html .btn-outline-yellow-300:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-300:hover{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:focus+html .btn-outline-yellow-300,html .btn-outline-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus{box-shadow:0 0 0 .25rem #ffda6a80}.btn-check:checked+html .btn-outline-yellow-300,.btn-check:active+html .btn-outline-yellow-300,html .btn-outline-yellow-300:active,html .btn-outline-yellow-300.active,html .btn-outline-yellow-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-300,html[data-netbox-color-mode=light] .btn-outline-yellow-300:active,html[data-netbox-color-mode=light] .btn-outline-yellow-300.active,html[data-netbox-color-mode=light] .btn-outline-yellow-300.dropdown-toggle.show{color:#000;background-color:#ffda6a;border-color:#ffda6a}.btn-check:checked+html .btn-outline-yellow-300:focus,.btn-check:active+html .btn-outline-yellow-300:focus,html .btn-outline-yellow-300:active:focus,html .btn-outline-yellow-300.active:focus,html .btn-outline-yellow-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-300:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffda6a80}html .btn-outline-yellow-300:disabled,html .btn-outline-yellow-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-300.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-300:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-300.disabled{color:#ffda6a;background-color:transparent}}@media print{html .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400{color:#ffcd39;border-color:#ffcd39}html .btn-outline-yellow-400:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-400:hover{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:focus+html .btn-outline-yellow-400,html .btn-outline-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus{box-shadow:0 0 0 .25rem #ffcd3980}.btn-check:checked+html .btn-outline-yellow-400,.btn-check:active+html .btn-outline-yellow-400,html .btn-outline-yellow-400:active,html .btn-outline-yellow-400.active,html .btn-outline-yellow-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-400,html[data-netbox-color-mode=light] .btn-outline-yellow-400:active,html[data-netbox-color-mode=light] .btn-outline-yellow-400.active,html[data-netbox-color-mode=light] .btn-outline-yellow-400.dropdown-toggle.show{color:#000;background-color:#ffcd39;border-color:#ffcd39}.btn-check:checked+html .btn-outline-yellow-400:focus,.btn-check:active+html .btn-outline-yellow-400:focus,html .btn-outline-yellow-400:active:focus,html .btn-outline-yellow-400.active:focus,html .btn-outline-yellow-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-400:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffcd3980}html .btn-outline-yellow-400:disabled,html .btn-outline-yellow-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-400.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-400:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-400.disabled{color:#ffcd39;background-color:transparent}}@media print{html .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500{color:#ffc107;border-color:#ffc107}html .btn-outline-yellow-500:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-500:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+html .btn-outline-yellow-500,html .btn-outline-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus{box-shadow:0 0 0 .25rem #ffc10780}.btn-check:checked+html .btn-outline-yellow-500,.btn-check:active+html .btn-outline-yellow-500,html .btn-outline-yellow-500:active,html .btn-outline-yellow-500.active,html .btn-outline-yellow-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-500,html[data-netbox-color-mode=light] .btn-outline-yellow-500:active,html[data-netbox-color-mode=light] .btn-outline-yellow-500.active,html[data-netbox-color-mode=light] .btn-outline-yellow-500.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+html .btn-outline-yellow-500:focus,.btn-check:active+html .btn-outline-yellow-500:focus,html .btn-outline-yellow-500:active:focus,html .btn-outline-yellow-500.active:focus,html .btn-outline-yellow-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-500:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ffc10780}html .btn-outline-yellow-500:disabled,html .btn-outline-yellow-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-500.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-500:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-500.disabled{color:#ffc107;background-color:transparent}}@media print{html .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600{color:#cc9a06;border-color:#cc9a06}html .btn-outline-yellow-600:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-600:hover{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:focus+html .btn-outline-yellow-600,html .btn-outline-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus{box-shadow:0 0 0 .25rem #cc9a0680}.btn-check:checked+html .btn-outline-yellow-600,.btn-check:active+html .btn-outline-yellow-600,html .btn-outline-yellow-600:active,html .btn-outline-yellow-600.active,html .btn-outline-yellow-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-600,html[data-netbox-color-mode=light] .btn-outline-yellow-600:active,html[data-netbox-color-mode=light] .btn-outline-yellow-600.active,html[data-netbox-color-mode=light] .btn-outline-yellow-600.dropdown-toggle.show{color:#000;background-color:#cc9a06;border-color:#cc9a06}.btn-check:checked+html .btn-outline-yellow-600:focus,.btn-check:active+html .btn-outline-yellow-600:focus,html .btn-outline-yellow-600:active:focus,html .btn-outline-yellow-600.active:focus,html .btn-outline-yellow-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-600:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cc9a0680}html .btn-outline-yellow-600:disabled,html .btn-outline-yellow-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-600.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-600:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-600.disabled{color:#cc9a06;background-color:transparent}}@media print{html .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700{color:#997404;border-color:#997404}html .btn-outline-yellow-700:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-700:hover{color:#000;background-color:#997404;border-color:#997404}.btn-check:focus+html .btn-outline-yellow-700,html .btn-outline-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus{box-shadow:0 0 0 .25rem #99740480}.btn-check:checked+html .btn-outline-yellow-700,.btn-check:active+html .btn-outline-yellow-700,html .btn-outline-yellow-700:active,html .btn-outline-yellow-700.active,html .btn-outline-yellow-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-700,html[data-netbox-color-mode=light] .btn-outline-yellow-700:active,html[data-netbox-color-mode=light] .btn-outline-yellow-700.active,html[data-netbox-color-mode=light] .btn-outline-yellow-700.dropdown-toggle.show{color:#000;background-color:#997404;border-color:#997404}.btn-check:checked+html .btn-outline-yellow-700:focus,.btn-check:active+html .btn-outline-yellow-700:focus,html .btn-outline-yellow-700:active:focus,html .btn-outline-yellow-700.active:focus,html .btn-outline-yellow-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-700:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #99740480}html .btn-outline-yellow-700:disabled,html .btn-outline-yellow-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-700.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-700:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-700.disabled{color:#997404;background-color:transparent}}@media print{html .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800{color:#664d03;border-color:#664d03}html .btn-outline-yellow-800:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-800:hover{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:focus+html .btn-outline-yellow-800,html .btn-outline-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus{box-shadow:0 0 0 .25rem #664d0380}.btn-check:checked+html .btn-outline-yellow-800,.btn-check:active+html .btn-outline-yellow-800,html .btn-outline-yellow-800:active,html .btn-outline-yellow-800.active,html .btn-outline-yellow-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-800,html[data-netbox-color-mode=light] .btn-outline-yellow-800:active,html[data-netbox-color-mode=light] .btn-outline-yellow-800.active,html[data-netbox-color-mode=light] .btn-outline-yellow-800.dropdown-toggle.show{color:#fff;background-color:#664d03;border-color:#664d03}.btn-check:checked+html .btn-outline-yellow-800:focus,.btn-check:active+html .btn-outline-yellow-800:focus,html .btn-outline-yellow-800:active:focus,html .btn-outline-yellow-800.active:focus,html .btn-outline-yellow-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-800:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #664d0380}html .btn-outline-yellow-800:disabled,html .btn-outline-yellow-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-800.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-800:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-800.disabled{color:#664d03;background-color:transparent}}@media print{html .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900{color:#332701;border-color:#332701}html .btn-outline-yellow-900:hover,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:hover,html[data-netbox-color-mode=light] .btn-outline-yellow-900:hover{color:#fff;background-color:#332701;border-color:#332701}.btn-check:focus+html .btn-outline-yellow-900,html .btn-outline-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus{box-shadow:0 0 0 .25rem #33270180}.btn-check:checked+html .btn-outline-yellow-900,.btn-check:active+html .btn-outline-yellow-900,html .btn-outline-yellow-900:active,html .btn-outline-yellow-900.active,html .btn-outline-yellow-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-900,html[data-netbox-color-mode=light] .btn-outline-yellow-900:active,html[data-netbox-color-mode=light] .btn-outline-yellow-900.active,html[data-netbox-color-mode=light] .btn-outline-yellow-900.dropdown-toggle.show{color:#fff;background-color:#332701;border-color:#332701}.btn-check:checked+html .btn-outline-yellow-900:focus,.btn-check:active+html .btn-outline-yellow-900:focus,html .btn-outline-yellow-900:active:focus,html .btn-outline-yellow-900.active:focus,html .btn-outline-yellow-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-yellow-900:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-yellow-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #33270180}html .btn-outline-yellow-900:disabled,html .btn-outline-yellow-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-yellow-900.disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-900:disabled,html[data-netbox-color-mode=light] .btn-outline-yellow-900.disabled{color:#332701;background-color:transparent}}@media print{html .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100{color:#d1e7dd;border-color:#d1e7dd}html .btn-outline-green-100:hover,html[data-netbox-color-mode=dark] .btn-outline-green-100:hover,html[data-netbox-color-mode=light] .btn-outline-green-100:hover{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:focus+html .btn-outline-green-100,html .btn-outline-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100:focus{box-shadow:0 0 0 .25rem #d1e7dd80}.btn-check:checked+html .btn-outline-green-100,.btn-check:active+html .btn-outline-green-100,html .btn-outline-green-100:active,html .btn-outline-green-100.active,html .btn-outline-green-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100,html[data-netbox-color-mode=dark] .btn-outline-green-100:active,html[data-netbox-color-mode=dark] .btn-outline-green-100.active,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-100,html[data-netbox-color-mode=light] .btn-outline-green-100:active,html[data-netbox-color-mode=light] .btn-outline-green-100.active,html[data-netbox-color-mode=light] .btn-outline-green-100.dropdown-toggle.show{color:#000;background-color:#d1e7dd;border-color:#d1e7dd}.btn-check:checked+html .btn-outline-green-100:focus,.btn-check:active+html .btn-outline-green-100:focus,html .btn-outline-green-100:active:focus,html .btn-outline-green-100.active:focus,html .btn-outline-green-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-100:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-100:focus,html[data-netbox-color-mode=light] .btn-outline-green-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d1e7dd80}html .btn-outline-green-100:disabled,html .btn-outline-green-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-100.disabled,html[data-netbox-color-mode=light] .btn-outline-green-100:disabled,html[data-netbox-color-mode=light] .btn-outline-green-100.disabled{color:#d1e7dd;background-color:transparent}}@media print{html .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200{color:#a3cfbb;border-color:#a3cfbb}html .btn-outline-green-200:hover,html[data-netbox-color-mode=dark] .btn-outline-green-200:hover,html[data-netbox-color-mode=light] .btn-outline-green-200:hover{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:focus+html .btn-outline-green-200,html .btn-outline-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200:focus{box-shadow:0 0 0 .25rem #a3cfbb80}.btn-check:checked+html .btn-outline-green-200,.btn-check:active+html .btn-outline-green-200,html .btn-outline-green-200:active,html .btn-outline-green-200.active,html .btn-outline-green-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200,html[data-netbox-color-mode=dark] .btn-outline-green-200:active,html[data-netbox-color-mode=dark] .btn-outline-green-200.active,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-200,html[data-netbox-color-mode=light] .btn-outline-green-200:active,html[data-netbox-color-mode=light] .btn-outline-green-200.active,html[data-netbox-color-mode=light] .btn-outline-green-200.dropdown-toggle.show{color:#000;background-color:#a3cfbb;border-color:#a3cfbb}.btn-check:checked+html .btn-outline-green-200:focus,.btn-check:active+html .btn-outline-green-200:focus,html .btn-outline-green-200:active:focus,html .btn-outline-green-200.active:focus,html .btn-outline-green-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-200:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-200:focus,html[data-netbox-color-mode=light] .btn-outline-green-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a3cfbb80}html .btn-outline-green-200:disabled,html .btn-outline-green-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-200.disabled,html[data-netbox-color-mode=light] .btn-outline-green-200:disabled,html[data-netbox-color-mode=light] .btn-outline-green-200.disabled{color:#a3cfbb;background-color:transparent}}@media print{html .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300{color:#75b798;border-color:#75b798}html .btn-outline-green-300:hover,html[data-netbox-color-mode=dark] .btn-outline-green-300:hover,html[data-netbox-color-mode=light] .btn-outline-green-300:hover{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:focus+html .btn-outline-green-300,html .btn-outline-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300:focus{box-shadow:0 0 0 .25rem #75b79880}.btn-check:checked+html .btn-outline-green-300,.btn-check:active+html .btn-outline-green-300,html .btn-outline-green-300:active,html .btn-outline-green-300.active,html .btn-outline-green-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300,html[data-netbox-color-mode=dark] .btn-outline-green-300:active,html[data-netbox-color-mode=dark] .btn-outline-green-300.active,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-300,html[data-netbox-color-mode=light] .btn-outline-green-300:active,html[data-netbox-color-mode=light] .btn-outline-green-300.active,html[data-netbox-color-mode=light] .btn-outline-green-300.dropdown-toggle.show{color:#000;background-color:#75b798;border-color:#75b798}.btn-check:checked+html .btn-outline-green-300:focus,.btn-check:active+html .btn-outline-green-300:focus,html .btn-outline-green-300:active:focus,html .btn-outline-green-300.active:focus,html .btn-outline-green-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-300:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-300:focus,html[data-netbox-color-mode=light] .btn-outline-green-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #75b79880}html .btn-outline-green-300:disabled,html .btn-outline-green-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-300.disabled,html[data-netbox-color-mode=light] .btn-outline-green-300:disabled,html[data-netbox-color-mode=light] .btn-outline-green-300.disabled{color:#75b798;background-color:transparent}}@media print{html .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400{color:#479f76;border-color:#479f76}html .btn-outline-green-400:hover,html[data-netbox-color-mode=dark] .btn-outline-green-400:hover,html[data-netbox-color-mode=light] .btn-outline-green-400:hover{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:focus+html .btn-outline-green-400,html .btn-outline-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400:focus{box-shadow:0 0 0 .25rem #479f7680}.btn-check:checked+html .btn-outline-green-400,.btn-check:active+html .btn-outline-green-400,html .btn-outline-green-400:active,html .btn-outline-green-400.active,html .btn-outline-green-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400,html[data-netbox-color-mode=dark] .btn-outline-green-400:active,html[data-netbox-color-mode=dark] .btn-outline-green-400.active,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-400,html[data-netbox-color-mode=light] .btn-outline-green-400:active,html[data-netbox-color-mode=light] .btn-outline-green-400.active,html[data-netbox-color-mode=light] .btn-outline-green-400.dropdown-toggle.show{color:#000;background-color:#479f76;border-color:#479f76}.btn-check:checked+html .btn-outline-green-400:focus,.btn-check:active+html .btn-outline-green-400:focus,html .btn-outline-green-400:active:focus,html .btn-outline-green-400.active:focus,html .btn-outline-green-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-400:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-400:focus,html[data-netbox-color-mode=light] .btn-outline-green-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #479f7680}html .btn-outline-green-400:disabled,html .btn-outline-green-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-400.disabled,html[data-netbox-color-mode=light] .btn-outline-green-400:disabled,html[data-netbox-color-mode=light] .btn-outline-green-400.disabled{color:#479f76;background-color:transparent}}@media print{html .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500{color:#198754;border-color:#198754}html .btn-outline-green-500:hover,html[data-netbox-color-mode=dark] .btn-outline-green-500:hover,html[data-netbox-color-mode=light] .btn-outline-green-500:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+html .btn-outline-green-500,html .btn-outline-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500:focus{box-shadow:0 0 0 .25rem #19875480}.btn-check:checked+html .btn-outline-green-500,.btn-check:active+html .btn-outline-green-500,html .btn-outline-green-500:active,html .btn-outline-green-500.active,html .btn-outline-green-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500,html[data-netbox-color-mode=dark] .btn-outline-green-500:active,html[data-netbox-color-mode=dark] .btn-outline-green-500.active,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-500,html[data-netbox-color-mode=light] .btn-outline-green-500:active,html[data-netbox-color-mode=light] .btn-outline-green-500.active,html[data-netbox-color-mode=light] .btn-outline-green-500.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+html .btn-outline-green-500:focus,.btn-check:active+html .btn-outline-green-500:focus,html .btn-outline-green-500:active:focus,html .btn-outline-green-500.active:focus,html .btn-outline-green-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-500:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-500:focus,html[data-netbox-color-mode=light] .btn-outline-green-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #19875480}html .btn-outline-green-500:disabled,html .btn-outline-green-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-500.disabled,html[data-netbox-color-mode=light] .btn-outline-green-500:disabled,html[data-netbox-color-mode=light] .btn-outline-green-500.disabled{color:#198754;background-color:transparent}}@media print{html .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600{color:#146c43;border-color:#146c43}html .btn-outline-green-600:hover,html[data-netbox-color-mode=dark] .btn-outline-green-600:hover,html[data-netbox-color-mode=light] .btn-outline-green-600:hover{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:focus+html .btn-outline-green-600,html .btn-outline-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600:focus{box-shadow:0 0 0 .25rem #146c4380}.btn-check:checked+html .btn-outline-green-600,.btn-check:active+html .btn-outline-green-600,html .btn-outline-green-600:active,html .btn-outline-green-600.active,html .btn-outline-green-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600,html[data-netbox-color-mode=dark] .btn-outline-green-600:active,html[data-netbox-color-mode=dark] .btn-outline-green-600.active,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-600,html[data-netbox-color-mode=light] .btn-outline-green-600:active,html[data-netbox-color-mode=light] .btn-outline-green-600.active,html[data-netbox-color-mode=light] .btn-outline-green-600.dropdown-toggle.show{color:#fff;background-color:#146c43;border-color:#146c43}.btn-check:checked+html .btn-outline-green-600:focus,.btn-check:active+html .btn-outline-green-600:focus,html .btn-outline-green-600:active:focus,html .btn-outline-green-600.active:focus,html .btn-outline-green-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-600:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-600:focus,html[data-netbox-color-mode=light] .btn-outline-green-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #146c4380}html .btn-outline-green-600:disabled,html .btn-outline-green-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-600.disabled,html[data-netbox-color-mode=light] .btn-outline-green-600:disabled,html[data-netbox-color-mode=light] .btn-outline-green-600.disabled{color:#146c43;background-color:transparent}}@media print{html .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700{color:#0f5132;border-color:#0f5132}html .btn-outline-green-700:hover,html[data-netbox-color-mode=dark] .btn-outline-green-700:hover,html[data-netbox-color-mode=light] .btn-outline-green-700:hover{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:focus+html .btn-outline-green-700,html .btn-outline-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700:focus{box-shadow:0 0 0 .25rem #0f513280}.btn-check:checked+html .btn-outline-green-700,.btn-check:active+html .btn-outline-green-700,html .btn-outline-green-700:active,html .btn-outline-green-700.active,html .btn-outline-green-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700,html[data-netbox-color-mode=dark] .btn-outline-green-700:active,html[data-netbox-color-mode=dark] .btn-outline-green-700.active,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-700,html[data-netbox-color-mode=light] .btn-outline-green-700:active,html[data-netbox-color-mode=light] .btn-outline-green-700.active,html[data-netbox-color-mode=light] .btn-outline-green-700.dropdown-toggle.show{color:#fff;background-color:#0f5132;border-color:#0f5132}.btn-check:checked+html .btn-outline-green-700:focus,.btn-check:active+html .btn-outline-green-700:focus,html .btn-outline-green-700:active:focus,html .btn-outline-green-700.active:focus,html .btn-outline-green-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-700:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-700:focus,html[data-netbox-color-mode=light] .btn-outline-green-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0f513280}html .btn-outline-green-700:disabled,html .btn-outline-green-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-700.disabled,html[data-netbox-color-mode=light] .btn-outline-green-700:disabled,html[data-netbox-color-mode=light] .btn-outline-green-700.disabled{color:#0f5132;background-color:transparent}}@media print{html .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800{color:#0a3622;border-color:#0a3622}html .btn-outline-green-800:hover,html[data-netbox-color-mode=dark] .btn-outline-green-800:hover,html[data-netbox-color-mode=light] .btn-outline-green-800:hover{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:focus+html .btn-outline-green-800,html .btn-outline-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800:focus{box-shadow:0 0 0 .25rem #0a362280}.btn-check:checked+html .btn-outline-green-800,.btn-check:active+html .btn-outline-green-800,html .btn-outline-green-800:active,html .btn-outline-green-800.active,html .btn-outline-green-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800,html[data-netbox-color-mode=dark] .btn-outline-green-800:active,html[data-netbox-color-mode=dark] .btn-outline-green-800.active,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-800,html[data-netbox-color-mode=light] .btn-outline-green-800:active,html[data-netbox-color-mode=light] .btn-outline-green-800.active,html[data-netbox-color-mode=light] .btn-outline-green-800.dropdown-toggle.show{color:#fff;background-color:#0a3622;border-color:#0a3622}.btn-check:checked+html .btn-outline-green-800:focus,.btn-check:active+html .btn-outline-green-800:focus,html .btn-outline-green-800:active:focus,html .btn-outline-green-800.active:focus,html .btn-outline-green-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-800:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-800:focus,html[data-netbox-color-mode=light] .btn-outline-green-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a362280}html .btn-outline-green-800:disabled,html .btn-outline-green-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-800.disabled,html[data-netbox-color-mode=light] .btn-outline-green-800:disabled,html[data-netbox-color-mode=light] .btn-outline-green-800.disabled{color:#0a3622;background-color:transparent}}@media print{html .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900{color:#051b11;border-color:#051b11}html .btn-outline-green-900:hover,html[data-netbox-color-mode=dark] .btn-outline-green-900:hover,html[data-netbox-color-mode=light] .btn-outline-green-900:hover{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:focus+html .btn-outline-green-900,html .btn-outline-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900:focus{box-shadow:0 0 0 .25rem #051b1180}.btn-check:checked+html .btn-outline-green-900,.btn-check:active+html .btn-outline-green-900,html .btn-outline-green-900:active,html .btn-outline-green-900.active,html .btn-outline-green-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900,html[data-netbox-color-mode=dark] .btn-outline-green-900:active,html[data-netbox-color-mode=dark] .btn-outline-green-900.active,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-900,html[data-netbox-color-mode=light] .btn-outline-green-900:active,html[data-netbox-color-mode=light] .btn-outline-green-900.active,html[data-netbox-color-mode=light] .btn-outline-green-900.dropdown-toggle.show{color:#fff;background-color:#051b11;border-color:#051b11}.btn-check:checked+html .btn-outline-green-900:focus,.btn-check:active+html .btn-outline-green-900:focus,html .btn-outline-green-900:active:focus,html .btn-outline-green-900.active:focus,html .btn-outline-green-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-green-900:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-green-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-green-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-green-900:focus,html[data-netbox-color-mode=light] .btn-outline-green-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-green-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-green-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #051b1180}html .btn-outline-green-900:disabled,html .btn-outline-green-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-green-900.disabled,html[data-netbox-color-mode=light] .btn-outline-green-900:disabled,html[data-netbox-color-mode=light] .btn-outline-green-900.disabled{color:#051b11;background-color:transparent}}@media print{html .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100{color:#cfe2ff;border-color:#cfe2ff}html .btn-outline-blue-100:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-100:hover,html[data-netbox-color-mode=light] .btn-outline-blue-100:hover{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:focus+html .btn-outline-blue-100,html .btn-outline-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100:focus{box-shadow:0 0 0 .25rem #cfe2ff80}.btn-check:checked+html .btn-outline-blue-100,.btn-check:active+html .btn-outline-blue-100,html .btn-outline-blue-100:active,html .btn-outline-blue-100.active,html .btn-outline-blue-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-100,html[data-netbox-color-mode=light] .btn-outline-blue-100:active,html[data-netbox-color-mode=light] .btn-outline-blue-100.active,html[data-netbox-color-mode=light] .btn-outline-blue-100.dropdown-toggle.show{color:#000;background-color:#cfe2ff;border-color:#cfe2ff}.btn-check:checked+html .btn-outline-blue-100:focus,.btn-check:active+html .btn-outline-blue-100:focus,html .btn-outline-blue-100:active:focus,html .btn-outline-blue-100.active:focus,html .btn-outline-blue-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-100:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-100:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cfe2ff80}html .btn-outline-blue-100:disabled,html .btn-outline-blue-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-100.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-100:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-100.disabled{color:#cfe2ff;background-color:transparent}}@media print{html .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200{color:#9ec5fe;border-color:#9ec5fe}html .btn-outline-blue-200:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-200:hover,html[data-netbox-color-mode=light] .btn-outline-blue-200:hover{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:focus+html .btn-outline-blue-200,html .btn-outline-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200:focus{box-shadow:0 0 0 .25rem #9ec5fe80}.btn-check:checked+html .btn-outline-blue-200,.btn-check:active+html .btn-outline-blue-200,html .btn-outline-blue-200:active,html .btn-outline-blue-200.active,html .btn-outline-blue-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-200,html[data-netbox-color-mode=light] .btn-outline-blue-200:active,html[data-netbox-color-mode=light] .btn-outline-blue-200.active,html[data-netbox-color-mode=light] .btn-outline-blue-200.dropdown-toggle.show{color:#000;background-color:#9ec5fe;border-color:#9ec5fe}.btn-check:checked+html .btn-outline-blue-200:focus,.btn-check:active+html .btn-outline-blue-200:focus,html .btn-outline-blue-200:active:focus,html .btn-outline-blue-200.active:focus,html .btn-outline-blue-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-200:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-200:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9ec5fe80}html .btn-outline-blue-200:disabled,html .btn-outline-blue-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-200.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-200:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-200.disabled{color:#9ec5fe;background-color:transparent}}@media print{html .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300{color:#6ea8fe;border-color:#6ea8fe}html .btn-outline-blue-300:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-300:hover,html[data-netbox-color-mode=light] .btn-outline-blue-300:hover{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:focus+html .btn-outline-blue-300,html .btn-outline-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300:focus{box-shadow:0 0 0 .25rem #6ea8fe80}.btn-check:checked+html .btn-outline-blue-300,.btn-check:active+html .btn-outline-blue-300,html .btn-outline-blue-300:active,html .btn-outline-blue-300.active,html .btn-outline-blue-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-300,html[data-netbox-color-mode=light] .btn-outline-blue-300:active,html[data-netbox-color-mode=light] .btn-outline-blue-300.active,html[data-netbox-color-mode=light] .btn-outline-blue-300.dropdown-toggle.show{color:#000;background-color:#6ea8fe;border-color:#6ea8fe}.btn-check:checked+html .btn-outline-blue-300:focus,.btn-check:active+html .btn-outline-blue-300:focus,html .btn-outline-blue-300:active:focus,html .btn-outline-blue-300.active:focus,html .btn-outline-blue-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-300:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-300:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6ea8fe80}html .btn-outline-blue-300:disabled,html .btn-outline-blue-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-300.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-300:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-300.disabled{color:#6ea8fe;background-color:transparent}}@media print{html .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400{color:#3d8bfd;border-color:#3d8bfd}html .btn-outline-blue-400:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-400:hover,html[data-netbox-color-mode=light] .btn-outline-blue-400:hover{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:focus+html .btn-outline-blue-400,html .btn-outline-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400:focus{box-shadow:0 0 0 .25rem #3d8bfd80}.btn-check:checked+html .btn-outline-blue-400,.btn-check:active+html .btn-outline-blue-400,html .btn-outline-blue-400:active,html .btn-outline-blue-400.active,html .btn-outline-blue-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-400,html[data-netbox-color-mode=light] .btn-outline-blue-400:active,html[data-netbox-color-mode=light] .btn-outline-blue-400.active,html[data-netbox-color-mode=light] .btn-outline-blue-400.dropdown-toggle.show{color:#000;background-color:#3d8bfd;border-color:#3d8bfd}.btn-check:checked+html .btn-outline-blue-400:focus,.btn-check:active+html .btn-outline-blue-400:focus,html .btn-outline-blue-400:active:focus,html .btn-outline-blue-400.active:focus,html .btn-outline-blue-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-400:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-400:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d8bfd80}html .btn-outline-blue-400:disabled,html .btn-outline-blue-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-400.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-400:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-400.disabled{color:#3d8bfd;background-color:transparent}}@media print{html .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500{color:#0d6efd;border-color:#0d6efd}html .btn-outline-blue-500:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-500:hover,html[data-netbox-color-mode=light] .btn-outline-blue-500:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+html .btn-outline-blue-500,html .btn-outline-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500:focus{box-shadow:0 0 0 .25rem #0d6efd80}.btn-check:checked+html .btn-outline-blue-500,.btn-check:active+html .btn-outline-blue-500,html .btn-outline-blue-500:active,html .btn-outline-blue-500.active,html .btn-outline-blue-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-500,html[data-netbox-color-mode=light] .btn-outline-blue-500:active,html[data-netbox-color-mode=light] .btn-outline-blue-500.active,html[data-netbox-color-mode=light] .btn-outline-blue-500.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+html .btn-outline-blue-500:focus,.btn-check:active+html .btn-outline-blue-500:focus,html .btn-outline-blue-500:active:focus,html .btn-outline-blue-500.active:focus,html .btn-outline-blue-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-500:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-500:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0d6efd80}html .btn-outline-blue-500:disabled,html .btn-outline-blue-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-500.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-500:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-500.disabled{color:#0d6efd;background-color:transparent}}@media print{html .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600{color:#0a58ca;border-color:#0a58ca}html .btn-outline-blue-600:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-600:hover,html[data-netbox-color-mode=light] .btn-outline-blue-600:hover{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:focus+html .btn-outline-blue-600,html .btn-outline-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600:focus{box-shadow:0 0 0 .25rem #0a58ca80}.btn-check:checked+html .btn-outline-blue-600,.btn-check:active+html .btn-outline-blue-600,html .btn-outline-blue-600:active,html .btn-outline-blue-600.active,html .btn-outline-blue-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-600,html[data-netbox-color-mode=light] .btn-outline-blue-600:active,html[data-netbox-color-mode=light] .btn-outline-blue-600.active,html[data-netbox-color-mode=light] .btn-outline-blue-600.dropdown-toggle.show{color:#fff;background-color:#0a58ca;border-color:#0a58ca}.btn-check:checked+html .btn-outline-blue-600:focus,.btn-check:active+html .btn-outline-blue-600:focus,html .btn-outline-blue-600:active:focus,html .btn-outline-blue-600.active:focus,html .btn-outline-blue-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-600:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-600:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0a58ca80}html .btn-outline-blue-600:disabled,html .btn-outline-blue-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-600.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-600:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-600.disabled{color:#0a58ca;background-color:transparent}}@media print{html .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700{color:#084298;border-color:#084298}html .btn-outline-blue-700:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-700:hover,html[data-netbox-color-mode=light] .btn-outline-blue-700:hover{color:#fff;background-color:#084298;border-color:#084298}.btn-check:focus+html .btn-outline-blue-700,html .btn-outline-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700:focus{box-shadow:0 0 0 .25rem #08429880}.btn-check:checked+html .btn-outline-blue-700,.btn-check:active+html .btn-outline-blue-700,html .btn-outline-blue-700:active,html .btn-outline-blue-700.active,html .btn-outline-blue-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-700,html[data-netbox-color-mode=light] .btn-outline-blue-700:active,html[data-netbox-color-mode=light] .btn-outline-blue-700.active,html[data-netbox-color-mode=light] .btn-outline-blue-700.dropdown-toggle.show{color:#fff;background-color:#084298;border-color:#084298}.btn-check:checked+html .btn-outline-blue-700:focus,.btn-check:active+html .btn-outline-blue-700:focus,html .btn-outline-blue-700:active:focus,html .btn-outline-blue-700.active:focus,html .btn-outline-blue-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-700:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-700:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08429880}html .btn-outline-blue-700:disabled,html .btn-outline-blue-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-700.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-700:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-700.disabled{color:#084298;background-color:transparent}}@media print{html .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800{color:#052c65;border-color:#052c65}html .btn-outline-blue-800:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-800:hover,html[data-netbox-color-mode=light] .btn-outline-blue-800:hover{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:focus+html .btn-outline-blue-800,html .btn-outline-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800:focus{box-shadow:0 0 0 .25rem #052c6580}.btn-check:checked+html .btn-outline-blue-800,.btn-check:active+html .btn-outline-blue-800,html .btn-outline-blue-800:active,html .btn-outline-blue-800.active,html .btn-outline-blue-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-800,html[data-netbox-color-mode=light] .btn-outline-blue-800:active,html[data-netbox-color-mode=light] .btn-outline-blue-800.active,html[data-netbox-color-mode=light] .btn-outline-blue-800.dropdown-toggle.show{color:#fff;background-color:#052c65;border-color:#052c65}.btn-check:checked+html .btn-outline-blue-800:focus,.btn-check:active+html .btn-outline-blue-800:focus,html .btn-outline-blue-800:active:focus,html .btn-outline-blue-800.active:focus,html .btn-outline-blue-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-800:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-800:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #052c6580}html .btn-outline-blue-800:disabled,html .btn-outline-blue-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-800.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-800:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-800.disabled{color:#052c65;background-color:transparent}}@media print{html .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900{color:#031633;border-color:#031633}html .btn-outline-blue-900:hover,html[data-netbox-color-mode=dark] .btn-outline-blue-900:hover,html[data-netbox-color-mode=light] .btn-outline-blue-900:hover{color:#fff;background-color:#031633;border-color:#031633}.btn-check:focus+html .btn-outline-blue-900,html .btn-outline-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900:focus{box-shadow:0 0 0 .25rem #03163380}.btn-check:checked+html .btn-outline-blue-900,.btn-check:active+html .btn-outline-blue-900,html .btn-outline-blue-900:active,html .btn-outline-blue-900.active,html .btn-outline-blue-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-900,html[data-netbox-color-mode=light] .btn-outline-blue-900:active,html[data-netbox-color-mode=light] .btn-outline-blue-900.active,html[data-netbox-color-mode=light] .btn-outline-blue-900.dropdown-toggle.show{color:#fff;background-color:#031633;border-color:#031633}.btn-check:checked+html .btn-outline-blue-900:focus,.btn-check:active+html .btn-outline-blue-900:focus,html .btn-outline-blue-900:active:focus,html .btn-outline-blue-900.active:focus,html .btn-outline-blue-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-blue-900:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-blue-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-blue-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-blue-900:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-blue-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03163380}html .btn-outline-blue-900:disabled,html .btn-outline-blue-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-blue-900.disabled,html[data-netbox-color-mode=light] .btn-outline-blue-900:disabled,html[data-netbox-color-mode=light] .btn-outline-blue-900.disabled{color:#031633;background-color:transparent}}@media print{html .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100{color:#cff4fc;border-color:#cff4fc}html .btn-outline-cyan-100:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-100:hover{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:focus+html .btn-outline-cyan-100,html .btn-outline-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus{box-shadow:0 0 0 .25rem #cff4fc80}.btn-check:checked+html .btn-outline-cyan-100,.btn-check:active+html .btn-outline-cyan-100,html .btn-outline-cyan-100:active,html .btn-outline-cyan-100.active,html .btn-outline-cyan-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-100,html[data-netbox-color-mode=light] .btn-outline-cyan-100:active,html[data-netbox-color-mode=light] .btn-outline-cyan-100.active,html[data-netbox-color-mode=light] .btn-outline-cyan-100.dropdown-toggle.show{color:#000;background-color:#cff4fc;border-color:#cff4fc}.btn-check:checked+html .btn-outline-cyan-100:focus,.btn-check:active+html .btn-outline-cyan-100:focus,html .btn-outline-cyan-100:active:focus,html .btn-outline-cyan-100.active:focus,html .btn-outline-cyan-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-100:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #cff4fc80}html .btn-outline-cyan-100:disabled,html .btn-outline-cyan-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-100.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-100:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-100.disabled{color:#cff4fc;background-color:transparent}}@media print{html .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200{color:#9eeaf9;border-color:#9eeaf9}html .btn-outline-cyan-200:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-200:hover{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:focus+html .btn-outline-cyan-200,html .btn-outline-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus{box-shadow:0 0 0 .25rem #9eeaf980}.btn-check:checked+html .btn-outline-cyan-200,.btn-check:active+html .btn-outline-cyan-200,html .btn-outline-cyan-200:active,html .btn-outline-cyan-200.active,html .btn-outline-cyan-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-200,html[data-netbox-color-mode=light] .btn-outline-cyan-200:active,html[data-netbox-color-mode=light] .btn-outline-cyan-200.active,html[data-netbox-color-mode=light] .btn-outline-cyan-200.dropdown-toggle.show{color:#000;background-color:#9eeaf9;border-color:#9eeaf9}.btn-check:checked+html .btn-outline-cyan-200:focus,.btn-check:active+html .btn-outline-cyan-200:focus,html .btn-outline-cyan-200:active:focus,html .btn-outline-cyan-200.active:focus,html .btn-outline-cyan-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-200:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #9eeaf980}html .btn-outline-cyan-200:disabled,html .btn-outline-cyan-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-200.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-200:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-200.disabled{color:#9eeaf9;background-color:transparent}}@media print{html .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300{color:#6edff6;border-color:#6edff6}html .btn-outline-cyan-300:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-300:hover{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:focus+html .btn-outline-cyan-300,html .btn-outline-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus{box-shadow:0 0 0 .25rem #6edff680}.btn-check:checked+html .btn-outline-cyan-300,.btn-check:active+html .btn-outline-cyan-300,html .btn-outline-cyan-300:active,html .btn-outline-cyan-300.active,html .btn-outline-cyan-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-300,html[data-netbox-color-mode=light] .btn-outline-cyan-300:active,html[data-netbox-color-mode=light] .btn-outline-cyan-300.active,html[data-netbox-color-mode=light] .btn-outline-cyan-300.dropdown-toggle.show{color:#000;background-color:#6edff6;border-color:#6edff6}.btn-check:checked+html .btn-outline-cyan-300:focus,.btn-check:active+html .btn-outline-cyan-300:focus,html .btn-outline-cyan-300:active:focus,html .btn-outline-cyan-300.active:focus,html .btn-outline-cyan-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-300:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6edff680}html .btn-outline-cyan-300:disabled,html .btn-outline-cyan-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-300.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-300:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-300.disabled{color:#6edff6;background-color:transparent}}@media print{html .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400{color:#3dd5f3;border-color:#3dd5f3}html .btn-outline-cyan-400:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-400:hover{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:focus+html .btn-outline-cyan-400,html .btn-outline-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus{box-shadow:0 0 0 .25rem #3dd5f380}.btn-check:checked+html .btn-outline-cyan-400,.btn-check:active+html .btn-outline-cyan-400,html .btn-outline-cyan-400:active,html .btn-outline-cyan-400.active,html .btn-outline-cyan-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-400,html[data-netbox-color-mode=light] .btn-outline-cyan-400:active,html[data-netbox-color-mode=light] .btn-outline-cyan-400.active,html[data-netbox-color-mode=light] .btn-outline-cyan-400.dropdown-toggle.show{color:#000;background-color:#3dd5f3;border-color:#3dd5f3}.btn-check:checked+html .btn-outline-cyan-400:focus,.btn-check:active+html .btn-outline-cyan-400:focus,html .btn-outline-cyan-400:active:focus,html .btn-outline-cyan-400.active:focus,html .btn-outline-cyan-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-400:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3dd5f380}html .btn-outline-cyan-400:disabled,html .btn-outline-cyan-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-400.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-400:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-400.disabled{color:#3dd5f3;background-color:transparent}}@media print{html .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500{color:#0dcaf0;border-color:#0dcaf0}html .btn-outline-cyan-500:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-500:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+html .btn-outline-cyan-500,html .btn-outline-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus{box-shadow:0 0 0 .25rem #0dcaf080}.btn-check:checked+html .btn-outline-cyan-500,.btn-check:active+html .btn-outline-cyan-500,html .btn-outline-cyan-500:active,html .btn-outline-cyan-500.active,html .btn-outline-cyan-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-500,html[data-netbox-color-mode=light] .btn-outline-cyan-500:active,html[data-netbox-color-mode=light] .btn-outline-cyan-500.active,html[data-netbox-color-mode=light] .btn-outline-cyan-500.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+html .btn-outline-cyan-500:focus,.btn-check:active+html .btn-outline-cyan-500:focus,html .btn-outline-cyan-500:active:focus,html .btn-outline-cyan-500.active:focus,html .btn-outline-cyan-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-500:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0dcaf080}html .btn-outline-cyan-500:disabled,html .btn-outline-cyan-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-500.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-500:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-500.disabled{color:#0dcaf0;background-color:transparent}}@media print{html .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600{color:#0aa2c0;border-color:#0aa2c0}html .btn-outline-cyan-600:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-600:hover{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:focus+html .btn-outline-cyan-600,html .btn-outline-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus{box-shadow:0 0 0 .25rem #0aa2c080}.btn-check:checked+html .btn-outline-cyan-600,.btn-check:active+html .btn-outline-cyan-600,html .btn-outline-cyan-600:active,html .btn-outline-cyan-600.active,html .btn-outline-cyan-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-600,html[data-netbox-color-mode=light] .btn-outline-cyan-600:active,html[data-netbox-color-mode=light] .btn-outline-cyan-600.active,html[data-netbox-color-mode=light] .btn-outline-cyan-600.dropdown-toggle.show{color:#000;background-color:#0aa2c0;border-color:#0aa2c0}.btn-check:checked+html .btn-outline-cyan-600:focus,.btn-check:active+html .btn-outline-cyan-600:focus,html .btn-outline-cyan-600:active:focus,html .btn-outline-cyan-600.active:focus,html .btn-outline-cyan-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-600:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #0aa2c080}html .btn-outline-cyan-600:disabled,html .btn-outline-cyan-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-600.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-600:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-600.disabled{color:#0aa2c0;background-color:transparent}}@media print{html .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700{color:#087990;border-color:#087990}html .btn-outline-cyan-700:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-700:hover{color:#fff;background-color:#087990;border-color:#087990}.btn-check:focus+html .btn-outline-cyan-700,html .btn-outline-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus{box-shadow:0 0 0 .25rem #08799080}.btn-check:checked+html .btn-outline-cyan-700,.btn-check:active+html .btn-outline-cyan-700,html .btn-outline-cyan-700:active,html .btn-outline-cyan-700.active,html .btn-outline-cyan-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-700,html[data-netbox-color-mode=light] .btn-outline-cyan-700:active,html[data-netbox-color-mode=light] .btn-outline-cyan-700.active,html[data-netbox-color-mode=light] .btn-outline-cyan-700.dropdown-toggle.show{color:#fff;background-color:#087990;border-color:#087990}.btn-check:checked+html .btn-outline-cyan-700:focus,.btn-check:active+html .btn-outline-cyan-700:focus,html .btn-outline-cyan-700:active:focus,html .btn-outline-cyan-700.active:focus,html .btn-outline-cyan-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-700:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #08799080}html .btn-outline-cyan-700:disabled,html .btn-outline-cyan-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-700.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-700:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-700.disabled{color:#087990;background-color:transparent}}@media print{html .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800{color:#055160;border-color:#055160}html .btn-outline-cyan-800:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-800:hover{color:#fff;background-color:#055160;border-color:#055160}.btn-check:focus+html .btn-outline-cyan-800,html .btn-outline-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus{box-shadow:0 0 0 .25rem #05516080}.btn-check:checked+html .btn-outline-cyan-800,.btn-check:active+html .btn-outline-cyan-800,html .btn-outline-cyan-800:active,html .btn-outline-cyan-800.active,html .btn-outline-cyan-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-800,html[data-netbox-color-mode=light] .btn-outline-cyan-800:active,html[data-netbox-color-mode=light] .btn-outline-cyan-800.active,html[data-netbox-color-mode=light] .btn-outline-cyan-800.dropdown-toggle.show{color:#fff;background-color:#055160;border-color:#055160}.btn-check:checked+html .btn-outline-cyan-800:focus,.btn-check:active+html .btn-outline-cyan-800:focus,html .btn-outline-cyan-800:active:focus,html .btn-outline-cyan-800.active:focus,html .btn-outline-cyan-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-800:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #05516080}html .btn-outline-cyan-800:disabled,html .btn-outline-cyan-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-800.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-800:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-800.disabled{color:#055160;background-color:transparent}}@media print{html .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900{color:#032830;border-color:#032830}html .btn-outline-cyan-900:hover,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:hover,html[data-netbox-color-mode=light] .btn-outline-cyan-900:hover{color:#fff;background-color:#032830;border-color:#032830}.btn-check:focus+html .btn-outline-cyan-900,html .btn-outline-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus{box-shadow:0 0 0 .25rem #03283080}.btn-check:checked+html .btn-outline-cyan-900,.btn-check:active+html .btn-outline-cyan-900,html .btn-outline-cyan-900:active,html .btn-outline-cyan-900.active,html .btn-outline-cyan-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-900,html[data-netbox-color-mode=light] .btn-outline-cyan-900:active,html[data-netbox-color-mode=light] .btn-outline-cyan-900.active,html[data-netbox-color-mode=light] .btn-outline-cyan-900.dropdown-toggle.show{color:#fff;background-color:#032830;border-color:#032830}.btn-check:checked+html .btn-outline-cyan-900:focus,.btn-check:active+html .btn-outline-cyan-900:focus,html .btn-outline-cyan-900:active:focus,html .btn-outline-cyan-900.active:focus,html .btn-outline-cyan-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-cyan-900:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-cyan-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #03283080}html .btn-outline-cyan-900:disabled,html .btn-outline-cyan-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-cyan-900.disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-900:disabled,html[data-netbox-color-mode=light] .btn-outline-cyan-900.disabled{color:#032830;background-color:transparent}}@media print{html .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100{color:#e0cffc;border-color:#e0cffc}html .btn-outline-indigo-100:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-100:hover{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:focus+html .btn-outline-indigo-100,html .btn-outline-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus{box-shadow:0 0 0 .25rem #e0cffc80}.btn-check:checked+html .btn-outline-indigo-100,.btn-check:active+html .btn-outline-indigo-100,html .btn-outline-indigo-100:active,html .btn-outline-indigo-100.active,html .btn-outline-indigo-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-100,html[data-netbox-color-mode=light] .btn-outline-indigo-100:active,html[data-netbox-color-mode=light] .btn-outline-indigo-100.active,html[data-netbox-color-mode=light] .btn-outline-indigo-100.dropdown-toggle.show{color:#000;background-color:#e0cffc;border-color:#e0cffc}.btn-check:checked+html .btn-outline-indigo-100:focus,.btn-check:active+html .btn-outline-indigo-100:focus,html .btn-outline-indigo-100:active:focus,html .btn-outline-indigo-100.active:focus,html .btn-outline-indigo-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-100:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e0cffc80}html .btn-outline-indigo-100:disabled,html .btn-outline-indigo-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-100.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-100:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-100.disabled{color:#e0cffc;background-color:transparent}}@media print{html .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200{color:#c29ffa;border-color:#c29ffa}html .btn-outline-indigo-200:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-200:hover{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:focus+html .btn-outline-indigo-200,html .btn-outline-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus{box-shadow:0 0 0 .25rem #c29ffa80}.btn-check:checked+html .btn-outline-indigo-200,.btn-check:active+html .btn-outline-indigo-200,html .btn-outline-indigo-200:active,html .btn-outline-indigo-200.active,html .btn-outline-indigo-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-200,html[data-netbox-color-mode=light] .btn-outline-indigo-200:active,html[data-netbox-color-mode=light] .btn-outline-indigo-200.active,html[data-netbox-color-mode=light] .btn-outline-indigo-200.dropdown-toggle.show{color:#000;background-color:#c29ffa;border-color:#c29ffa}.btn-check:checked+html .btn-outline-indigo-200:focus,.btn-check:active+html .btn-outline-indigo-200:focus,html .btn-outline-indigo-200:active:focus,html .btn-outline-indigo-200.active:focus,html .btn-outline-indigo-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-200:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c29ffa80}html .btn-outline-indigo-200:disabled,html .btn-outline-indigo-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-200.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-200:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-200.disabled{color:#c29ffa;background-color:transparent}}@media print{html .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300{color:#a370f7;border-color:#a370f7}html .btn-outline-indigo-300:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-300:hover{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:focus+html .btn-outline-indigo-300,html .btn-outline-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus{box-shadow:0 0 0 .25rem #a370f780}.btn-check:checked+html .btn-outline-indigo-300,.btn-check:active+html .btn-outline-indigo-300,html .btn-outline-indigo-300:active,html .btn-outline-indigo-300.active,html .btn-outline-indigo-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-300,html[data-netbox-color-mode=light] .btn-outline-indigo-300:active,html[data-netbox-color-mode=light] .btn-outline-indigo-300.active,html[data-netbox-color-mode=light] .btn-outline-indigo-300.dropdown-toggle.show{color:#000;background-color:#a370f7;border-color:#a370f7}.btn-check:checked+html .btn-outline-indigo-300:focus,.btn-check:active+html .btn-outline-indigo-300:focus,html .btn-outline-indigo-300:active:focus,html .btn-outline-indigo-300.active:focus,html .btn-outline-indigo-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-300:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a370f780}html .btn-outline-indigo-300:disabled,html .btn-outline-indigo-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-300.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-300:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-300.disabled{color:#a370f7;background-color:transparent}}@media print{html .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400{color:#8540f5;border-color:#8540f5}html .btn-outline-indigo-400:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-400:hover{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:focus+html .btn-outline-indigo-400,html .btn-outline-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus{box-shadow:0 0 0 .25rem #8540f580}.btn-check:checked+html .btn-outline-indigo-400,.btn-check:active+html .btn-outline-indigo-400,html .btn-outline-indigo-400:active,html .btn-outline-indigo-400.active,html .btn-outline-indigo-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-400,html[data-netbox-color-mode=light] .btn-outline-indigo-400:active,html[data-netbox-color-mode=light] .btn-outline-indigo-400.active,html[data-netbox-color-mode=light] .btn-outline-indigo-400.dropdown-toggle.show{color:#fff;background-color:#8540f5;border-color:#8540f5}.btn-check:checked+html .btn-outline-indigo-400:focus,.btn-check:active+html .btn-outline-indigo-400:focus,html .btn-outline-indigo-400:active:focus,html .btn-outline-indigo-400.active:focus,html .btn-outline-indigo-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-400:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8540f580}html .btn-outline-indigo-400:disabled,html .btn-outline-indigo-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-400.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-400:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-400.disabled{color:#8540f5;background-color:transparent}}@media print{html .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500{color:#6610f2;border-color:#6610f2}html .btn-outline-indigo-500:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-500:hover{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:focus+html .btn-outline-indigo-500,html .btn-outline-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus{box-shadow:0 0 0 .25rem #6610f280}.btn-check:checked+html .btn-outline-indigo-500,.btn-check:active+html .btn-outline-indigo-500,html .btn-outline-indigo-500:active,html .btn-outline-indigo-500.active,html .btn-outline-indigo-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-500,html[data-netbox-color-mode=light] .btn-outline-indigo-500:active,html[data-netbox-color-mode=light] .btn-outline-indigo-500.active,html[data-netbox-color-mode=light] .btn-outline-indigo-500.dropdown-toggle.show{color:#fff;background-color:#6610f2;border-color:#6610f2}.btn-check:checked+html .btn-outline-indigo-500:focus,.btn-check:active+html .btn-outline-indigo-500:focus,html .btn-outline-indigo-500:active:focus,html .btn-outline-indigo-500.active:focus,html .btn-outline-indigo-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-500:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6610f280}html .btn-outline-indigo-500:disabled,html .btn-outline-indigo-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-500.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-500:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-500.disabled{color:#6610f2;background-color:transparent}}@media print{html .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600{color:#520dc2;border-color:#520dc2}html .btn-outline-indigo-600:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-600:hover{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:focus+html .btn-outline-indigo-600,html .btn-outline-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus{box-shadow:0 0 0 .25rem #520dc280}.btn-check:checked+html .btn-outline-indigo-600,.btn-check:active+html .btn-outline-indigo-600,html .btn-outline-indigo-600:active,html .btn-outline-indigo-600.active,html .btn-outline-indigo-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-600,html[data-netbox-color-mode=light] .btn-outline-indigo-600:active,html[data-netbox-color-mode=light] .btn-outline-indigo-600.active,html[data-netbox-color-mode=light] .btn-outline-indigo-600.dropdown-toggle.show{color:#fff;background-color:#520dc2;border-color:#520dc2}.btn-check:checked+html .btn-outline-indigo-600:focus,.btn-check:active+html .btn-outline-indigo-600:focus,html .btn-outline-indigo-600:active:focus,html .btn-outline-indigo-600.active:focus,html .btn-outline-indigo-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-600:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #520dc280}html .btn-outline-indigo-600:disabled,html .btn-outline-indigo-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-600.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-600:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-600.disabled{color:#520dc2;background-color:transparent}}@media print{html .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700{color:#3d0a91;border-color:#3d0a91}html .btn-outline-indigo-700:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-700:hover{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:focus+html .btn-outline-indigo-700,html .btn-outline-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus{box-shadow:0 0 0 .25rem #3d0a9180}.btn-check:checked+html .btn-outline-indigo-700,.btn-check:active+html .btn-outline-indigo-700,html .btn-outline-indigo-700:active,html .btn-outline-indigo-700.active,html .btn-outline-indigo-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-700,html[data-netbox-color-mode=light] .btn-outline-indigo-700:active,html[data-netbox-color-mode=light] .btn-outline-indigo-700.active,html[data-netbox-color-mode=light] .btn-outline-indigo-700.dropdown-toggle.show{color:#fff;background-color:#3d0a91;border-color:#3d0a91}.btn-check:checked+html .btn-outline-indigo-700:focus,.btn-check:active+html .btn-outline-indigo-700:focus,html .btn-outline-indigo-700:active:focus,html .btn-outline-indigo-700.active:focus,html .btn-outline-indigo-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-700:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #3d0a9180}html .btn-outline-indigo-700:disabled,html .btn-outline-indigo-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-700.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-700:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-700.disabled{color:#3d0a91;background-color:transparent}}@media print{html .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800{color:#290661;border-color:#290661}html .btn-outline-indigo-800:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-800:hover{color:#fff;background-color:#290661;border-color:#290661}.btn-check:focus+html .btn-outline-indigo-800,html .btn-outline-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus{box-shadow:0 0 0 .25rem #29066180}.btn-check:checked+html .btn-outline-indigo-800,.btn-check:active+html .btn-outline-indigo-800,html .btn-outline-indigo-800:active,html .btn-outline-indigo-800.active,html .btn-outline-indigo-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-800,html[data-netbox-color-mode=light] .btn-outline-indigo-800:active,html[data-netbox-color-mode=light] .btn-outline-indigo-800.active,html[data-netbox-color-mode=light] .btn-outline-indigo-800.dropdown-toggle.show{color:#fff;background-color:#290661;border-color:#290661}.btn-check:checked+html .btn-outline-indigo-800:focus,.btn-check:active+html .btn-outline-indigo-800:focus,html .btn-outline-indigo-800:active:focus,html .btn-outline-indigo-800.active:focus,html .btn-outline-indigo-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-800:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #29066180}html .btn-outline-indigo-800:disabled,html .btn-outline-indigo-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-800.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-800:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-800.disabled{color:#290661;background-color:transparent}}@media print{html .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900{color:#140330;border-color:#140330}html .btn-outline-indigo-900:hover,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:hover,html[data-netbox-color-mode=light] .btn-outline-indigo-900:hover{color:#fff;background-color:#140330;border-color:#140330}.btn-check:focus+html .btn-outline-indigo-900,html .btn-outline-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus{box-shadow:0 0 0 .25rem #14033080}.btn-check:checked+html .btn-outline-indigo-900,.btn-check:active+html .btn-outline-indigo-900,html .btn-outline-indigo-900:active,html .btn-outline-indigo-900.active,html .btn-outline-indigo-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-900,html[data-netbox-color-mode=light] .btn-outline-indigo-900:active,html[data-netbox-color-mode=light] .btn-outline-indigo-900.active,html[data-netbox-color-mode=light] .btn-outline-indigo-900.dropdown-toggle.show{color:#fff;background-color:#140330;border-color:#140330}.btn-check:checked+html .btn-outline-indigo-900:focus,.btn-check:active+html .btn-outline-indigo-900:focus,html .btn-outline-indigo-900:active:focus,html .btn-outline-indigo-900.active:focus,html .btn-outline-indigo-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-indigo-900:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-indigo-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #14033080}html .btn-outline-indigo-900:disabled,html .btn-outline-indigo-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-indigo-900.disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-900:disabled,html[data-netbox-color-mode=light] .btn-outline-indigo-900.disabled{color:#140330;background-color:transparent}}@media print{html .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100{color:#e2d9f3;border-color:#e2d9f3}html .btn-outline-purple-100:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-100:hover,html[data-netbox-color-mode=light] .btn-outline-purple-100:hover{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:focus+html .btn-outline-purple-100,html .btn-outline-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100:focus{box-shadow:0 0 0 .25rem #e2d9f380}.btn-check:checked+html .btn-outline-purple-100,.btn-check:active+html .btn-outline-purple-100,html .btn-outline-purple-100:active,html .btn-outline-purple-100.active,html .btn-outline-purple-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-100,html[data-netbox-color-mode=light] .btn-outline-purple-100:active,html[data-netbox-color-mode=light] .btn-outline-purple-100.active,html[data-netbox-color-mode=light] .btn-outline-purple-100.dropdown-toggle.show{color:#000;background-color:#e2d9f3;border-color:#e2d9f3}.btn-check:checked+html .btn-outline-purple-100:focus,.btn-check:active+html .btn-outline-purple-100:focus,html .btn-outline-purple-100:active:focus,html .btn-outline-purple-100.active:focus,html .btn-outline-purple-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-100:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-100:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e2d9f380}html .btn-outline-purple-100:disabled,html .btn-outline-purple-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-100.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-100:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-100.disabled{color:#e2d9f3;background-color:transparent}}@media print{html .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200{color:#c5b3e6;border-color:#c5b3e6}html .btn-outline-purple-200:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-200:hover,html[data-netbox-color-mode=light] .btn-outline-purple-200:hover{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:focus+html .btn-outline-purple-200,html .btn-outline-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200:focus{box-shadow:0 0 0 .25rem #c5b3e680}.btn-check:checked+html .btn-outline-purple-200,.btn-check:active+html .btn-outline-purple-200,html .btn-outline-purple-200:active,html .btn-outline-purple-200.active,html .btn-outline-purple-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-200,html[data-netbox-color-mode=light] .btn-outline-purple-200:active,html[data-netbox-color-mode=light] .btn-outline-purple-200.active,html[data-netbox-color-mode=light] .btn-outline-purple-200.dropdown-toggle.show{color:#000;background-color:#c5b3e6;border-color:#c5b3e6}.btn-check:checked+html .btn-outline-purple-200:focus,.btn-check:active+html .btn-outline-purple-200:focus,html .btn-outline-purple-200:active:focus,html .btn-outline-purple-200.active:focus,html .btn-outline-purple-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-200:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-200:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #c5b3e680}html .btn-outline-purple-200:disabled,html .btn-outline-purple-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-200.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-200:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-200.disabled{color:#c5b3e6;background-color:transparent}}@media print{html .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300{color:#a98eda;border-color:#a98eda}html .btn-outline-purple-300:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-300:hover,html[data-netbox-color-mode=light] .btn-outline-purple-300:hover{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:focus+html .btn-outline-purple-300,html .btn-outline-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300:focus{box-shadow:0 0 0 .25rem #a98eda80}.btn-check:checked+html .btn-outline-purple-300,.btn-check:active+html .btn-outline-purple-300,html .btn-outline-purple-300:active,html .btn-outline-purple-300.active,html .btn-outline-purple-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-300,html[data-netbox-color-mode=light] .btn-outline-purple-300:active,html[data-netbox-color-mode=light] .btn-outline-purple-300.active,html[data-netbox-color-mode=light] .btn-outline-purple-300.dropdown-toggle.show{color:#000;background-color:#a98eda;border-color:#a98eda}.btn-check:checked+html .btn-outline-purple-300:focus,.btn-check:active+html .btn-outline-purple-300:focus,html .btn-outline-purple-300:active:focus,html .btn-outline-purple-300.active:focus,html .btn-outline-purple-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-300:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-300:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #a98eda80}html .btn-outline-purple-300:disabled,html .btn-outline-purple-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-300.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-300:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-300.disabled{color:#a98eda;background-color:transparent}}@media print{html .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400{color:#8c68cd;border-color:#8c68cd}html .btn-outline-purple-400:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-400:hover,html[data-netbox-color-mode=light] .btn-outline-purple-400:hover{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:focus+html .btn-outline-purple-400,html .btn-outline-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400:focus{box-shadow:0 0 0 .25rem #8c68cd80}.btn-check:checked+html .btn-outline-purple-400,.btn-check:active+html .btn-outline-purple-400,html .btn-outline-purple-400:active,html .btn-outline-purple-400.active,html .btn-outline-purple-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-400,html[data-netbox-color-mode=light] .btn-outline-purple-400:active,html[data-netbox-color-mode=light] .btn-outline-purple-400.active,html[data-netbox-color-mode=light] .btn-outline-purple-400.dropdown-toggle.show{color:#000;background-color:#8c68cd;border-color:#8c68cd}.btn-check:checked+html .btn-outline-purple-400:focus,.btn-check:active+html .btn-outline-purple-400:focus,html .btn-outline-purple-400:active:focus,html .btn-outline-purple-400.active:focus,html .btn-outline-purple-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-400:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-400:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #8c68cd80}html .btn-outline-purple-400:disabled,html .btn-outline-purple-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-400.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-400:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-400.disabled{color:#8c68cd;background-color:transparent}}@media print{html .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500{color:#6f42c1;border-color:#6f42c1}html .btn-outline-purple-500:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-500:hover,html[data-netbox-color-mode=light] .btn-outline-purple-500:hover{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:focus+html .btn-outline-purple-500,html .btn-outline-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500:focus{box-shadow:0 0 0 .25rem #6f42c180}.btn-check:checked+html .btn-outline-purple-500,.btn-check:active+html .btn-outline-purple-500,html .btn-outline-purple-500:active,html .btn-outline-purple-500.active,html .btn-outline-purple-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-500,html[data-netbox-color-mode=light] .btn-outline-purple-500:active,html[data-netbox-color-mode=light] .btn-outline-purple-500.active,html[data-netbox-color-mode=light] .btn-outline-purple-500.dropdown-toggle.show{color:#fff;background-color:#6f42c1;border-color:#6f42c1}.btn-check:checked+html .btn-outline-purple-500:focus,.btn-check:active+html .btn-outline-purple-500:focus,html .btn-outline-purple-500:active:focus,html .btn-outline-purple-500.active:focus,html .btn-outline-purple-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-500:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-500:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #6f42c180}html .btn-outline-purple-500:disabled,html .btn-outline-purple-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-500.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-500:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-500.disabled{color:#6f42c1;background-color:transparent}}@media print{html .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600{color:#59359a;border-color:#59359a}html .btn-outline-purple-600:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-600:hover,html[data-netbox-color-mode=light] .btn-outline-purple-600:hover{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:focus+html .btn-outline-purple-600,html .btn-outline-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600:focus{box-shadow:0 0 0 .25rem #59359a80}.btn-check:checked+html .btn-outline-purple-600,.btn-check:active+html .btn-outline-purple-600,html .btn-outline-purple-600:active,html .btn-outline-purple-600.active,html .btn-outline-purple-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-600,html[data-netbox-color-mode=light] .btn-outline-purple-600:active,html[data-netbox-color-mode=light] .btn-outline-purple-600.active,html[data-netbox-color-mode=light] .btn-outline-purple-600.dropdown-toggle.show{color:#fff;background-color:#59359a;border-color:#59359a}.btn-check:checked+html .btn-outline-purple-600:focus,.btn-check:active+html .btn-outline-purple-600:focus,html .btn-outline-purple-600:active:focus,html .btn-outline-purple-600.active:focus,html .btn-outline-purple-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-600:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-600:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #59359a80}html .btn-outline-purple-600:disabled,html .btn-outline-purple-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-600.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-600:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-600.disabled{color:#59359a;background-color:transparent}}@media print{html .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700{color:#432874;border-color:#432874}html .btn-outline-purple-700:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-700:hover,html[data-netbox-color-mode=light] .btn-outline-purple-700:hover{color:#fff;background-color:#432874;border-color:#432874}.btn-check:focus+html .btn-outline-purple-700,html .btn-outline-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700:focus{box-shadow:0 0 0 .25rem #43287480}.btn-check:checked+html .btn-outline-purple-700,.btn-check:active+html .btn-outline-purple-700,html .btn-outline-purple-700:active,html .btn-outline-purple-700.active,html .btn-outline-purple-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-700,html[data-netbox-color-mode=light] .btn-outline-purple-700:active,html[data-netbox-color-mode=light] .btn-outline-purple-700.active,html[data-netbox-color-mode=light] .btn-outline-purple-700.dropdown-toggle.show{color:#fff;background-color:#432874;border-color:#432874}.btn-check:checked+html .btn-outline-purple-700:focus,.btn-check:active+html .btn-outline-purple-700:focus,html .btn-outline-purple-700:active:focus,html .btn-outline-purple-700.active:focus,html .btn-outline-purple-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-700:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-700:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #43287480}html .btn-outline-purple-700:disabled,html .btn-outline-purple-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-700.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-700:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-700.disabled{color:#432874;background-color:transparent}}@media print{html .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800{color:#2c1a4d;border-color:#2c1a4d}html .btn-outline-purple-800:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-800:hover,html[data-netbox-color-mode=light] .btn-outline-purple-800:hover{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:focus+html .btn-outline-purple-800,html .btn-outline-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800:focus{box-shadow:0 0 0 .25rem #2c1a4d80}.btn-check:checked+html .btn-outline-purple-800,.btn-check:active+html .btn-outline-purple-800,html .btn-outline-purple-800:active,html .btn-outline-purple-800.active,html .btn-outline-purple-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-800,html[data-netbox-color-mode=light] .btn-outline-purple-800:active,html[data-netbox-color-mode=light] .btn-outline-purple-800.active,html[data-netbox-color-mode=light] .btn-outline-purple-800.dropdown-toggle.show{color:#fff;background-color:#2c1a4d;border-color:#2c1a4d}.btn-check:checked+html .btn-outline-purple-800:focus,.btn-check:active+html .btn-outline-purple-800:focus,html .btn-outline-purple-800:active:focus,html .btn-outline-purple-800.active:focus,html .btn-outline-purple-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-800:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-800:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2c1a4d80}html .btn-outline-purple-800:disabled,html .btn-outline-purple-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-800.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-800:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-800.disabled{color:#2c1a4d;background-color:transparent}}@media print{html .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900{color:#160d27;border-color:#160d27}html .btn-outline-purple-900:hover,html[data-netbox-color-mode=dark] .btn-outline-purple-900:hover,html[data-netbox-color-mode=light] .btn-outline-purple-900:hover{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:focus+html .btn-outline-purple-900,html .btn-outline-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900:focus{box-shadow:0 0 0 .25rem #160d2780}.btn-check:checked+html .btn-outline-purple-900,.btn-check:active+html .btn-outline-purple-900,html .btn-outline-purple-900:active,html .btn-outline-purple-900.active,html .btn-outline-purple-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-900,html[data-netbox-color-mode=light] .btn-outline-purple-900:active,html[data-netbox-color-mode=light] .btn-outline-purple-900.active,html[data-netbox-color-mode=light] .btn-outline-purple-900.dropdown-toggle.show{color:#fff;background-color:#160d27;border-color:#160d27}.btn-check:checked+html .btn-outline-purple-900:focus,.btn-check:active+html .btn-outline-purple-900:focus,html .btn-outline-purple-900:active:focus,html .btn-outline-purple-900.active:focus,html .btn-outline-purple-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-purple-900:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-purple-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-purple-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-purple-900:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-purple-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #160d2780}html .btn-outline-purple-900:disabled,html .btn-outline-purple-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-purple-900.disabled,html[data-netbox-color-mode=light] .btn-outline-purple-900:disabled,html[data-netbox-color-mode=light] .btn-outline-purple-900.disabled{color:#160d27;background-color:transparent}}@media print{html .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100{color:#f7d6e6;border-color:#f7d6e6}html .btn-outline-pink-100:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-100:hover,html[data-netbox-color-mode=light] .btn-outline-pink-100:hover{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:focus+html .btn-outline-pink-100,html .btn-outline-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100:focus{box-shadow:0 0 0 .25rem #f7d6e680}.btn-check:checked+html .btn-outline-pink-100,.btn-check:active+html .btn-outline-pink-100,html .btn-outline-pink-100:active,html .btn-outline-pink-100.active,html .btn-outline-pink-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-100,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-100,html[data-netbox-color-mode=light] .btn-outline-pink-100:active,html[data-netbox-color-mode=light] .btn-outline-pink-100.active,html[data-netbox-color-mode=light] .btn-outline-pink-100.dropdown-toggle.show{color:#000;background-color:#f7d6e6;border-color:#f7d6e6}.btn-check:checked+html .btn-outline-pink-100:focus,.btn-check:active+html .btn-outline-pink-100:focus,html .btn-outline-pink-100:active:focus,html .btn-outline-pink-100.active:focus,html .btn-outline-pink-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-100:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-100.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-100:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-100:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-100.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #f7d6e680}html .btn-outline-pink-100:disabled,html .btn-outline-pink-100.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-100.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-100:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-100.disabled{color:#f7d6e6;background-color:transparent}}@media print{html .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200{color:#efadce;border-color:#efadce}html .btn-outline-pink-200:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-200:hover,html[data-netbox-color-mode=light] .btn-outline-pink-200:hover{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:focus+html .btn-outline-pink-200,html .btn-outline-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200:focus{box-shadow:0 0 0 .25rem #efadce80}.btn-check:checked+html .btn-outline-pink-200,.btn-check:active+html .btn-outline-pink-200,html .btn-outline-pink-200:active,html .btn-outline-pink-200.active,html .btn-outline-pink-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-200,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-200,html[data-netbox-color-mode=light] .btn-outline-pink-200:active,html[data-netbox-color-mode=light] .btn-outline-pink-200.active,html[data-netbox-color-mode=light] .btn-outline-pink-200.dropdown-toggle.show{color:#000;background-color:#efadce;border-color:#efadce}.btn-check:checked+html .btn-outline-pink-200:focus,.btn-check:active+html .btn-outline-pink-200:focus,html .btn-outline-pink-200:active:focus,html .btn-outline-pink-200.active:focus,html .btn-outline-pink-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-200:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-200.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-200:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-200:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-200.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #efadce80}html .btn-outline-pink-200:disabled,html .btn-outline-pink-200.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-200.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-200:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-200.disabled{color:#efadce;background-color:transparent}}@media print{html .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300{color:#e685b5;border-color:#e685b5}html .btn-outline-pink-300:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-300:hover,html[data-netbox-color-mode=light] .btn-outline-pink-300:hover{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:focus+html .btn-outline-pink-300,html .btn-outline-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300:focus{box-shadow:0 0 0 .25rem #e685b580}.btn-check:checked+html .btn-outline-pink-300,.btn-check:active+html .btn-outline-pink-300,html .btn-outline-pink-300:active,html .btn-outline-pink-300.active,html .btn-outline-pink-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-300,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-300,html[data-netbox-color-mode=light] .btn-outline-pink-300:active,html[data-netbox-color-mode=light] .btn-outline-pink-300.active,html[data-netbox-color-mode=light] .btn-outline-pink-300.dropdown-toggle.show{color:#000;background-color:#e685b5;border-color:#e685b5}.btn-check:checked+html .btn-outline-pink-300:focus,.btn-check:active+html .btn-outline-pink-300:focus,html .btn-outline-pink-300:active:focus,html .btn-outline-pink-300.active:focus,html .btn-outline-pink-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-300:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-300.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-300:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-300:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-300.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #e685b580}html .btn-outline-pink-300:disabled,html .btn-outline-pink-300.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-300.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-300:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-300.disabled{color:#e685b5;background-color:transparent}}@media print{html .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400{color:#de5c9d;border-color:#de5c9d}html .btn-outline-pink-400:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-400:hover,html[data-netbox-color-mode=light] .btn-outline-pink-400:hover{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:focus+html .btn-outline-pink-400,html .btn-outline-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400:focus{box-shadow:0 0 0 .25rem #de5c9d80}.btn-check:checked+html .btn-outline-pink-400,.btn-check:active+html .btn-outline-pink-400,html .btn-outline-pink-400:active,html .btn-outline-pink-400.active,html .btn-outline-pink-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-400,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-400,html[data-netbox-color-mode=light] .btn-outline-pink-400:active,html[data-netbox-color-mode=light] .btn-outline-pink-400.active,html[data-netbox-color-mode=light] .btn-outline-pink-400.dropdown-toggle.show{color:#000;background-color:#de5c9d;border-color:#de5c9d}.btn-check:checked+html .btn-outline-pink-400:focus,.btn-check:active+html .btn-outline-pink-400:focus,html .btn-outline-pink-400:active:focus,html .btn-outline-pink-400.active:focus,html .btn-outline-pink-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-400:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-400.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-400:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-400:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-400.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #de5c9d80}html .btn-outline-pink-400:disabled,html .btn-outline-pink-400.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-400.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-400:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-400.disabled{color:#de5c9d;background-color:transparent}}@media print{html .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500{color:#d63384;border-color:#d63384}html .btn-outline-pink-500:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-500:hover,html[data-netbox-color-mode=light] .btn-outline-pink-500:hover{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:focus+html .btn-outline-pink-500,html .btn-outline-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500:focus{box-shadow:0 0 0 .25rem #d6338480}.btn-check:checked+html .btn-outline-pink-500,.btn-check:active+html .btn-outline-pink-500,html .btn-outline-pink-500:active,html .btn-outline-pink-500.active,html .btn-outline-pink-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-500,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-500,html[data-netbox-color-mode=light] .btn-outline-pink-500:active,html[data-netbox-color-mode=light] .btn-outline-pink-500.active,html[data-netbox-color-mode=light] .btn-outline-pink-500.dropdown-toggle.show{color:#fff;background-color:#d63384;border-color:#d63384}.btn-check:checked+html .btn-outline-pink-500:focus,.btn-check:active+html .btn-outline-pink-500:focus,html .btn-outline-pink-500:active:focus,html .btn-outline-pink-500.active:focus,html .btn-outline-pink-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-500:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-500.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-500:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-500:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-500.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #d6338480}html .btn-outline-pink-500:disabled,html .btn-outline-pink-500.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-500.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-500:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-500.disabled{color:#d63384;background-color:transparent}}@media print{html .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600{color:#ab296a;border-color:#ab296a}html .btn-outline-pink-600:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-600:hover,html[data-netbox-color-mode=light] .btn-outline-pink-600:hover{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:focus+html .btn-outline-pink-600,html .btn-outline-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600:focus{box-shadow:0 0 0 .25rem #ab296a80}.btn-check:checked+html .btn-outline-pink-600,.btn-check:active+html .btn-outline-pink-600,html .btn-outline-pink-600:active,html .btn-outline-pink-600.active,html .btn-outline-pink-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-600,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-600,html[data-netbox-color-mode=light] .btn-outline-pink-600:active,html[data-netbox-color-mode=light] .btn-outline-pink-600.active,html[data-netbox-color-mode=light] .btn-outline-pink-600.dropdown-toggle.show{color:#fff;background-color:#ab296a;border-color:#ab296a}.btn-check:checked+html .btn-outline-pink-600:focus,.btn-check:active+html .btn-outline-pink-600:focus,html .btn-outline-pink-600:active:focus,html .btn-outline-pink-600.active:focus,html .btn-outline-pink-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-600:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-600.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-600:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-600:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-600.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #ab296a80}html .btn-outline-pink-600:disabled,html .btn-outline-pink-600.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-600.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-600:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-600.disabled{color:#ab296a;background-color:transparent}}@media print{html .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700{color:#801f4f;border-color:#801f4f}html .btn-outline-pink-700:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-700:hover,html[data-netbox-color-mode=light] .btn-outline-pink-700:hover{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:focus+html .btn-outline-pink-700,html .btn-outline-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700:focus{box-shadow:0 0 0 .25rem #801f4f80}.btn-check:checked+html .btn-outline-pink-700,.btn-check:active+html .btn-outline-pink-700,html .btn-outline-pink-700:active,html .btn-outline-pink-700.active,html .btn-outline-pink-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-700,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-700,html[data-netbox-color-mode=light] .btn-outline-pink-700:active,html[data-netbox-color-mode=light] .btn-outline-pink-700.active,html[data-netbox-color-mode=light] .btn-outline-pink-700.dropdown-toggle.show{color:#fff;background-color:#801f4f;border-color:#801f4f}.btn-check:checked+html .btn-outline-pink-700:focus,.btn-check:active+html .btn-outline-pink-700:focus,html .btn-outline-pink-700:active:focus,html .btn-outline-pink-700.active:focus,html .btn-outline-pink-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-700:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-700.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-700:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-700:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-700.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #801f4f80}html .btn-outline-pink-700:disabled,html .btn-outline-pink-700.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-700.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-700:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-700.disabled{color:#801f4f;background-color:transparent}}@media print{html .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800{color:#561435;border-color:#561435}html .btn-outline-pink-800:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-800:hover,html[data-netbox-color-mode=light] .btn-outline-pink-800:hover{color:#fff;background-color:#561435;border-color:#561435}.btn-check:focus+html .btn-outline-pink-800,html .btn-outline-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800:focus{box-shadow:0 0 0 .25rem #56143580}.btn-check:checked+html .btn-outline-pink-800,.btn-check:active+html .btn-outline-pink-800,html .btn-outline-pink-800:active,html .btn-outline-pink-800.active,html .btn-outline-pink-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-800,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-800,html[data-netbox-color-mode=light] .btn-outline-pink-800:active,html[data-netbox-color-mode=light] .btn-outline-pink-800.active,html[data-netbox-color-mode=light] .btn-outline-pink-800.dropdown-toggle.show{color:#fff;background-color:#561435;border-color:#561435}.btn-check:checked+html .btn-outline-pink-800:focus,.btn-check:active+html .btn-outline-pink-800:focus,html .btn-outline-pink-800:active:focus,html .btn-outline-pink-800.active:focus,html .btn-outline-pink-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-800:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-800.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-800:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-800:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-800.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #56143580}html .btn-outline-pink-800:disabled,html .btn-outline-pink-800.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-800.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-800:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-800.disabled{color:#561435;background-color:transparent}}@media print{html .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900{color:#2b0a1a;border-color:#2b0a1a}html .btn-outline-pink-900:hover,html[data-netbox-color-mode=dark] .btn-outline-pink-900:hover,html[data-netbox-color-mode=light] .btn-outline-pink-900:hover{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:focus+html .btn-outline-pink-900,html .btn-outline-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:focus+html[data-netbox-color-mode=light] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900:focus{box-shadow:0 0 0 .25rem #2b0a1a80}.btn-check:checked+html .btn-outline-pink-900,.btn-check:active+html .btn-outline-pink-900,html .btn-outline-pink-900:active,html .btn-outline-pink-900.active,html .btn-outline-pink-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-900,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-900,html[data-netbox-color-mode=light] .btn-outline-pink-900:active,html[data-netbox-color-mode=light] .btn-outline-pink-900.active,html[data-netbox-color-mode=light] .btn-outline-pink-900.dropdown-toggle.show{color:#fff;background-color:#2b0a1a;border-color:#2b0a1a}.btn-check:checked+html .btn-outline-pink-900:focus,.btn-check:active+html .btn-outline-pink-900:focus,html .btn-outline-pink-900:active:focus,html .btn-outline-pink-900.active:focus,html .btn-outline-pink-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=dark] .btn-outline-pink-900:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=dark] .btn-outline-pink-900.dropdown-toggle.show:focus,.btn-check:checked+html[data-netbox-color-mode=light] .btn-outline-pink-900:focus,.btn-check:active+html[data-netbox-color-mode=light] .btn-outline-pink-900:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900:active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900.active:focus,html[data-netbox-color-mode=light] .btn-outline-pink-900.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem #2b0a1a80}html .btn-outline-pink-900:disabled,html .btn-outline-pink-900.disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=dark] .btn-outline-pink-900.disabled,html[data-netbox-color-mode=light] .btn-outline-pink-900:disabled,html[data-netbox-color-mode=light] .btn-outline-pink-900.disabled{color:#2b0a1a;background-color:transparent}}@media print{html .btn-link,html[data-netbox-color-mode=dark] .btn-link,html[data-netbox-color-mode=light] .btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}html .btn-link:hover,html[data-netbox-color-mode=dark] .btn-link:hover,html[data-netbox-color-mode=light] .btn-link:hover{color:#0a58ca}html .btn-link:disabled,html .btn-link.disabled,html[data-netbox-color-mode=dark] .btn-link:disabled,html[data-netbox-color-mode=dark] .btn-link.disabled,html[data-netbox-color-mode=light] .btn-link:disabled,html[data-netbox-color-mode=light] .btn-link.disabled{color:#6c757d}}@media print{html .btn-lg,html .btn-group-lg>.btn,html[data-netbox-color-mode=dark] .btn-lg,html[data-netbox-color-mode=light] .btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.75rem}}@media print{html .btn-sm,html .btn-group-sm>.btn,html[data-netbox-color-mode=dark] .btn-sm,html[data-netbox-color-mode=light] .btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html .fade,html[data-netbox-color-mode=dark] .fade,html[data-netbox-color-mode=light] .fade{transition:opacity .15s linear}}@media print and (prefers-reduced-motion: reduce){html .fade,html[data-netbox-color-mode=dark] .fade,html[data-netbox-color-mode=light] .fade{transition:none}}@media print{html .fade:not(.show),html[data-netbox-color-mode=dark] .fade:not(.show),html[data-netbox-color-mode=light] .fade:not(.show){opacity:0}}@media print{html .collapse:not(.show),html[data-netbox-color-mode=dark] .collapse:not(.show),html[data-netbox-color-mode=light] .collapse:not(.show){display:none}}@media print{html .collapsing,html[data-netbox-color-mode=dark] .collapsing,html[data-netbox-color-mode=light] .collapsing{height:0;overflow:hidden;transition:height .35s ease}}@media print and (prefers-reduced-motion: reduce){html .collapsing,html[data-netbox-color-mode=dark] .collapsing,html[data-netbox-color-mode=light] .collapsing{transition:none}}@media print{html .dropup,html .dropend,html .dropdown,html .dropstart,html[data-netbox-color-mode=dark] .dropup,html[data-netbox-color-mode=dark] .dropend,html[data-netbox-color-mode=dark] .dropdown,html[data-netbox-color-mode=dark] .dropstart,html[data-netbox-color-mode=light] .dropup,html[data-netbox-color-mode=light] .dropend,html[data-netbox-color-mode=light] .dropdown,html[data-netbox-color-mode=light] .dropstart{position:relative}}@media print{html .dropdown-toggle,html[data-netbox-color-mode=dark] .dropdown-toggle,html[data-netbox-color-mode=light] .dropdown-toggle{white-space:nowrap}html .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropdown-toggle:empty:after{margin-left:0}}@media print{html .dropdown-menu,html[data-netbox-color-mode=dark] .dropdown-menu,html[data-netbox-color-mode=light] .dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.375rem}html .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}}@media print{html .dropdown-menu-start,html[data-netbox-color-mode=dark] .dropdown-menu-start,html[data-netbox-color-mode=light] .dropdown-menu-start{--bs-position: start}html .dropdown-menu-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-start[data-bs-popper]{right:auto;left:0}}@media print{html .dropdown-menu-end,html[data-netbox-color-mode=dark] .dropdown-menu-end,html[data-netbox-color-mode=light] .dropdown-menu-end{--bs-position: end}html .dropdown-menu-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 576px){html .dropdown-menu-sm-start,html[data-netbox-color-mode=dark] .dropdown-menu-sm-start,html[data-netbox-color-mode=light] .dropdown-menu-sm-start{--bs-position: start}html .dropdown-menu-sm-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-sm-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-sm-end,html[data-netbox-color-mode=dark] .dropdown-menu-sm-end,html[data-netbox-color-mode=light] .dropdown-menu-sm-end{--bs-position: end}html .dropdown-menu-sm-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-sm-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 768px){html .dropdown-menu-md-start,html[data-netbox-color-mode=dark] .dropdown-menu-md-start,html[data-netbox-color-mode=light] .dropdown-menu-md-start{--bs-position: start}html .dropdown-menu-md-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-md-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-md-end,html[data-netbox-color-mode=dark] .dropdown-menu-md-end,html[data-netbox-color-mode=light] .dropdown-menu-md-end{--bs-position: end}html .dropdown-menu-md-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-md-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 992px){html .dropdown-menu-lg-start,html[data-netbox-color-mode=dark] .dropdown-menu-lg-start,html[data-netbox-color-mode=light] .dropdown-menu-lg-start{--bs-position: start}html .dropdown-menu-lg-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-lg-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-lg-end,html[data-netbox-color-mode=dark] .dropdown-menu-lg-end,html[data-netbox-color-mode=light] .dropdown-menu-lg-end{--bs-position: end}html .dropdown-menu-lg-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-lg-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 1200px){html .dropdown-menu-xl-start,html[data-netbox-color-mode=dark] .dropdown-menu-xl-start,html[data-netbox-color-mode=light] .dropdown-menu-xl-start{--bs-position: start}html .dropdown-menu-xl-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xl-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-xl-end,html[data-netbox-color-mode=dark] .dropdown-menu-xl-end,html[data-netbox-color-mode=light] .dropdown-menu-xl-end{--bs-position: end}html .dropdown-menu-xl-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xl-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media print and (min-width: 1400px){html .dropdown-menu-xxl-start,html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start,html[data-netbox-color-mode=light] .dropdown-menu-xxl-start{--bs-position: start}html .dropdown-menu-xxl-start[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xxl-start[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}html .dropdown-menu-xxl-end,html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end,html[data-netbox-color-mode=light] .dropdown-menu-xxl-end{--bs-position: end}html .dropdown-menu-xxl-end[data-bs-popper],html[data-netbox-color-mode=dark] .dropdown-menu-xxl-end[data-bs-popper],html[data-netbox-color-mode=light] .dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}@media print{html .dropup .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropup .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html .dropup .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html .dropup .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropup .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropup .dropdown-toggle:empty:after{margin-left:0}}@media print{html .dropend .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropend .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html .dropend .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html .dropend .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:empty:after{margin-left:0}html .dropend .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropend .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropend .dropdown-toggle:after{vertical-align:0}}@media print{html .dropstart .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=dark] .dropstart .dropdown-menu[data-bs-popper],html[data-netbox-color-mode=light] .dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}html .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:after{display:none}html .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html .dropstart .dropdown-toggle:empty:after,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:empty:after,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:empty:after{margin-left:0}html .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=dark] .dropstart .dropdown-toggle:before,html[data-netbox-color-mode=light] .dropstart .dropdown-toggle:before{vertical-align:0}}@media print{html .dropdown-divider,html[data-netbox-color-mode=dark] .dropdown-divider,html[data-netbox-color-mode=light] .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}}@media print{html .dropdown-item,html[data-netbox-color-mode=dark] .dropdown-item,html[data-netbox-color-mode=light] .dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}html .dropdown-item:hover,html .dropdown-item:focus,html[data-netbox-color-mode=dark] .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-item:focus,html[data-netbox-color-mode=light] .dropdown-item:hover,html[data-netbox-color-mode=light] .dropdown-item:focus{color:#1e2125;background-color:#e9ecef}html .dropdown-item.active,html .dropdown-item:active,html[data-netbox-color-mode=dark] .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-item:active,html[data-netbox-color-mode=light] .dropdown-item.active,html[data-netbox-color-mode=light] .dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}html .dropdown-item.disabled,html .dropdown-item:disabled,html[data-netbox-color-mode=dark] .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-item:disabled,html[data-netbox-color-mode=light] .dropdown-item.disabled,html[data-netbox-color-mode=light] .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}}@media print{html .dropdown-menu.show,html[data-netbox-color-mode=dark] .dropdown-menu.show,html[data-netbox-color-mode=light] .dropdown-menu.show{display:block}}@media print{html .dropdown-header,html[data-netbox-color-mode=dark] .dropdown-header,html[data-netbox-color-mode=light] .dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}}@media print{html .dropdown-item-text,html[data-netbox-color-mode=dark] .dropdown-item-text,html[data-netbox-color-mode=light] .dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}}@media print{html .dropdown-menu-dark,html[data-netbox-color-mode=dark] .dropdown-menu-dark,html[data-netbox-color-mode=light] .dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:#00000026}html .dropdown-menu-dark .dropdown-item,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item{color:#dee2e6}html .dropdown-menu-dark .dropdown-item:hover,html .dropdown-menu-dark .dropdown-item:focus,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:focus,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:hover,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:#ffffff26}html .dropdown-menu-dark .dropdown-item.active,html .dropdown-menu-dark .dropdown-item:active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:active,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item.active,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}html .dropdown-menu-dark .dropdown-item.disabled,html .dropdown-menu-dark .dropdown-item:disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item:disabled,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item.disabled,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}html .dropdown-menu-dark .dropdown-divider,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-divider,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-divider{border-color:#00000026}html .dropdown-menu-dark .dropdown-item-text,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-item-text,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-item-text{color:#dee2e6}html .dropdown-menu-dark .dropdown-header,html[data-netbox-color-mode=dark] .dropdown-menu-dark .dropdown-header,html[data-netbox-color-mode=light] .dropdown-menu-dark .dropdown-header{color:#adb5bd}}@media print{html .btn-group,html .btn-group-vertical,html[data-netbox-color-mode=dark] .btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical,html[data-netbox-color-mode=light] .btn-group,html[data-netbox-color-mode=light] .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html .btn-group>.btn,html .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=light] .btn-group>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn{position:relative;flex:1 1 auto}html .btn-group>.btn-check:checked+.btn,html .btn-group>.btn-check:focus+.btn,html .btn-group>.btn:hover,html .btn-group>.btn:focus,html .btn-group>.btn:active,html .btn-group>.btn.active,html .btn-group-vertical>.btn-check:checked+.btn,html .btn-group-vertical>.btn-check:focus+.btn,html .btn-group-vertical>.btn:hover,html .btn-group-vertical>.btn:focus,html .btn-group-vertical>.btn:active,html .btn-group-vertical>.btn.active,html[data-netbox-color-mode=dark] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:hover,html[data-netbox-color-mode=dark] .btn-group>.btn:focus,html[data-netbox-color-mode=dark] .btn-group>.btn:active,html[data-netbox-color-mode=dark] .btn-group>.btn.active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn.active,html[data-netbox-color-mode=light] .btn-group>.btn-check:checked+.btn,html[data-netbox-color-mode=light] .btn-group>.btn-check:focus+.btn,html[data-netbox-color-mode=light] .btn-group>.btn:hover,html[data-netbox-color-mode=light] .btn-group>.btn:focus,html[data-netbox-color-mode=light] .btn-group>.btn:active,html[data-netbox-color-mode=light] .btn-group>.btn.active,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-check:checked+.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-check:focus+.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:hover,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:focus,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:active,html[data-netbox-color-mode=light] .btn-group-vertical>.btn.active{z-index:1}}@media print{html .btn-toolbar,html[data-netbox-color-mode=dark] .btn-toolbar,html[data-netbox-color-mode=light] .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html .btn-toolbar .input-group,html[data-netbox-color-mode=dark] .btn-toolbar .input-group,html[data-netbox-color-mode=light] .btn-toolbar .input-group{width:auto}}@media print{html .btn-group>.btn:not(:first-child),html .btn-group>.btn-group:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child),html[data-netbox-color-mode=light] .btn-group>.btn:not(:first-child),html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:first-child){margin-left:-1px}html .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html .btn-group>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=light] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html .btn-group>.btn:nth-child(n+3),html .btn-group>:not(.btn-check)+.btn,html .btn-group>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=dark] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=dark] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=dark] .btn-group>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=light] .btn-group>.btn:nth-child(n+3),html[data-netbox-color-mode=light] .btn-group>:not(.btn-check)+.btn,html[data-netbox-color-mode=light] .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}}@media print{html .dropdown-toggle-split,html[data-netbox-color-mode=dark] .dropdown-toggle-split,html[data-netbox-color-mode=light] .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html .dropdown-toggle-split:after,.dropup html .dropdown-toggle-split:after,.dropend html .dropdown-toggle-split:after,html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=dark] .dropdown-toggle-split:after,html[data-netbox-color-mode=light] .dropdown-toggle-split:after,.dropup html[data-netbox-color-mode=light] .dropdown-toggle-split:after,.dropend html[data-netbox-color-mode=light] .dropdown-toggle-split:after{margin-left:0}.dropstart html .dropdown-toggle-split:before,.dropstart html[data-netbox-color-mode=dark] .dropdown-toggle-split:before,.dropstart html[data-netbox-color-mode=light] .dropdown-toggle-split:before{margin-right:0}}@media print{html .btn-sm+.dropdown-toggle-split,html .btn-group-sm>.btn+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-sm+.dropdown-toggle-split,html[data-netbox-color-mode=light] .btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}}@media print{html .btn-lg+.dropdown-toggle-split,html .btn-group-lg>.btn+.dropdown-toggle-split,html[data-netbox-color-mode=dark] .btn-lg+.dropdown-toggle-split,html[data-netbox-color-mode=light] .btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}}@media print{html .btn-group-vertical,html[data-netbox-color-mode=dark] .btn-group-vertical,html[data-netbox-color-mode=light] .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html .btn-group-vertical>.btn,html .btn-group-vertical>.btn-group,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group,html[data-netbox-color-mode=light] .btn-group-vertical>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group{width:100%}html .btn-group-vertical>.btn:not(:first-child),html .btn-group-vertical>.btn-group:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child),html[data-netbox-color-mode=light] .btn-group-vertical>.btn:not(:first-child),html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}html .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html .btn-group-vertical>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:last-child)>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html .btn-group-vertical>.btn~.btn,html .btn-group-vertical>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=dark] .btn-group-vertical>.btn-group:not(:first-child)>.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn~.btn,html[data-netbox-color-mode=light] .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}}@media print{html .nav,html[data-netbox-color-mode=dark] .nav,html[data-netbox-color-mode=light] .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}}@media print{html .nav-link,html[data-netbox-color-mode=dark] .nav-link,html[data-netbox-color-mode=light] .nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .nav-link,html[data-netbox-color-mode=dark] .nav-link,html[data-netbox-color-mode=light] .nav-link{transition:none}}@media print{html .nav-link:hover,html .nav-link:focus,html[data-netbox-color-mode=dark] .nav-link:hover,html[data-netbox-color-mode=dark] .nav-link:focus,html[data-netbox-color-mode=light] .nav-link:hover,html[data-netbox-color-mode=light] .nav-link:focus{color:#0a58ca}}@media print{html .nav-link.disabled,html[data-netbox-color-mode=dark] .nav-link.disabled,html[data-netbox-color-mode=light] .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}}@media print{html .nav-tabs,html[data-netbox-color-mode=dark] .nav-tabs,html[data-netbox-color-mode=light] .nav-tabs{border-bottom:1px solid #dee2e6}html .nav-tabs .nav-link,html[data-netbox-color-mode=dark] .nav-tabs .nav-link,html[data-netbox-color-mode=light] .nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.375rem;border-top-right-radius:.375rem}html .nav-tabs .nav-link:hover,html .nav-tabs .nav-link:focus,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:focus,html[data-netbox-color-mode=light] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=light] .nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}html .nav-tabs .nav-link.disabled,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.disabled,html[data-netbox-color-mode=light] .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}html .nav-tabs .nav-link.active,html .nav-tabs .nav-item.show .nav-link,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-item.show .nav-link,html[data-netbox-color-mode=light] .nav-tabs .nav-link.active,html[data-netbox-color-mode=light] .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}html .nav-tabs .dropdown-menu,html[data-netbox-color-mode=dark] .nav-tabs .dropdown-menu,html[data-netbox-color-mode=light] .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}}@media print{html .nav-pills .nav-link,html[data-netbox-color-mode=dark] .nav-pills .nav-link,html[data-netbox-color-mode=light] .nav-pills .nav-link{background:none;border:0;border-radius:.375rem}html .nav-pills .nav-link.active,html .nav-pills .show>.nav-link,html[data-netbox-color-mode=dark] .nav-pills .nav-link.active,html[data-netbox-color-mode=dark] .nav-pills .show>.nav-link,html[data-netbox-color-mode=light] .nav-pills .nav-link.active,html[data-netbox-color-mode=light] .nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}}@media print{html .nav-fill>.nav-link,html .nav-fill .nav-item,html[data-netbox-color-mode=dark] .nav-fill>.nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item,html[data-netbox-color-mode=light] .nav-fill>.nav-link,html[data-netbox-color-mode=light] .nav-fill .nav-item{flex:1 1 auto;text-align:center}}@media print{html .nav-justified>.nav-link,html .nav-justified .nav-item,html[data-netbox-color-mode=dark] .nav-justified>.nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item,html[data-netbox-color-mode=light] .nav-justified>.nav-link,html[data-netbox-color-mode=light] .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}}@media print{html .nav-fill .nav-item .nav-link,html .nav-justified .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=dark] .nav-justified .nav-item .nav-link,html[data-netbox-color-mode=light] .nav-fill .nav-item .nav-link,html[data-netbox-color-mode=light] .nav-justified .nav-item .nav-link{width:100%}}@media print{html .tab-content>.tab-pane,html[data-netbox-color-mode=dark] .tab-content>.tab-pane,html[data-netbox-color-mode=light] .tab-content>.tab-pane{display:none}html .tab-content>.active,html[data-netbox-color-mode=dark] .tab-content>.active,html[data-netbox-color-mode=light] .tab-content>.active{display:block}}@media print{html .navbar,html[data-netbox-color-mode=dark] .navbar,html[data-netbox-color-mode=light] .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}html[data-netbox-color-mode=dark] .navbar>.container-xxl,html[data-netbox-color-mode=light] .navbar>.container-xxl,html[data-netbox-color-mode=dark] .navbar>.container-xl,html[data-netbox-color-mode=light] .navbar>.container-xl,html[data-netbox-color-mode=dark] .navbar>.container-lg,html[data-netbox-color-mode=light] .navbar>.container-lg,html[data-netbox-color-mode=dark] .navbar>.container-md,html[data-netbox-color-mode=light] .navbar>.container-md,html[data-netbox-color-mode=dark] .navbar>.container-sm,html[data-netbox-color-mode=light] .navbar>.container-sm,html .navbar>.container,html .navbar>.container-fluid,html .navbar>.container-sm,html .navbar>.container-md,html .navbar>.container-lg,html .navbar>.container-xl,html .navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}}@media print{html .navbar-brand,html[data-netbox-color-mode=dark] .navbar-brand,html[data-netbox-color-mode=light] .navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}}@media print{html .navbar-nav,html[data-netbox-color-mode=dark] .navbar-nav,html[data-netbox-color-mode=light] .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-nav .nav-link{padding-right:0;padding-left:0}html .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-nav .dropdown-menu{position:static}}@media print{html .navbar-text,html[data-netbox-color-mode=dark] .navbar-text,html[data-netbox-color-mode=light] .navbar-text{padding-top:.5rem;padding-bottom:.5rem}}@media print{html .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-collapse,html[data-netbox-color-mode=light] .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}}@media print{html .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-toggler,html[data-netbox-color-mode=light] .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.375rem;transition:box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-toggler,html[data-netbox-color-mode=light] .navbar-toggler{transition:none}}@media print{html .navbar-toggler:hover,html[data-netbox-color-mode=dark] .navbar-toggler:hover,html[data-netbox-color-mode=light] .navbar-toggler:hover{text-decoration:none}}@media print{html .navbar-toggler:focus,html[data-netbox-color-mode=dark] .navbar-toggler:focus,html[data-netbox-color-mode=light] .navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}}@media print{html .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}}@media print{html .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}}@media print and (min-width: 576px){html .navbar-expand-sm,html[data-netbox-color-mode=dark] .navbar-expand-sm,html[data-netbox-color-mode=light] .navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-sm .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav{flex-direction:row}html .navbar-expand-sm .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-sm .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-sm .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html .navbar-expand-sm .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-sm .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-sm .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-sm .navbar-toggler{display:none}}@media print and (min-width: 768px){html .navbar-expand-md,html[data-netbox-color-mode=dark] .navbar-expand-md,html[data-netbox-color-mode=light] .navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-md .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav{flex-direction:row}html .navbar-expand-md .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-md .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-md .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-nav-scroll{overflow:visible}html .navbar-expand-md .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-md .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-md .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-md .navbar-toggler{display:none}}@media print and (min-width: 992px){html .navbar-expand-lg,html[data-netbox-color-mode=dark] .navbar-expand-lg,html[data-netbox-color-mode=light] .navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-lg .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav{flex-direction:row}html .navbar-expand-lg .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-lg .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-lg .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html .navbar-expand-lg .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-lg .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-lg .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-lg .navbar-toggler{display:none}}@media print and (min-width: 1200px){html .navbar-expand-xl,html[data-netbox-color-mode=dark] .navbar-expand-xl,html[data-netbox-color-mode=light] .navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-xl .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav{flex-direction:row}html .navbar-expand-xl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-xl .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-xl .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html .navbar-expand-xl .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-xl .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-xl .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-xl .navbar-toggler{display:none}}@media print and (min-width: 1400px){html .navbar-expand-xxl,html[data-netbox-color-mode=dark] .navbar-expand-xxl,html[data-netbox-color-mode=light] .navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand-xxl .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav{flex-direction:row}html .navbar-expand-xxl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand-xxl .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand-xxl .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}html .navbar-expand-xxl .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand-xxl .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand-xxl .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand-xxl .navbar-toggler{display:none}}@media print{html .navbar-expand,html[data-netbox-color-mode=dark] .navbar-expand,html[data-netbox-color-mode=light] .navbar-expand{flex-wrap:nowrap;justify-content:flex-start}html .navbar-expand .navbar-nav,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav{flex-direction:row}html .navbar-expand .navbar-nav .dropdown-menu,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .dropdown-menu,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html .navbar-expand .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html .navbar-expand .navbar-nav-scroll,html[data-netbox-color-mode=dark] .navbar-expand .navbar-nav-scroll,html[data-netbox-color-mode=light] .navbar-expand .navbar-nav-scroll{overflow:visible}html .navbar-expand .navbar-collapse,html[data-netbox-color-mode=dark] .navbar-expand .navbar-collapse,html[data-netbox-color-mode=light] .navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}html .navbar-expand .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-expand .navbar-toggler,html[data-netbox-color-mode=light] .navbar-expand .navbar-toggler{display:none}}@media print{html .navbar-light .navbar-brand,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand,html[data-netbox-color-mode=light] .navbar-light .navbar-brand{color:#000000e6}html .navbar-light .navbar-brand:hover,html .navbar-light .navbar-brand:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-brand:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-brand:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-brand:focus{color:#000000e6}html .navbar-light .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link{color:#0000008c}html .navbar-light .navbar-nav .nav-link:hover,html .navbar-light .navbar-nav .nav-link:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link:focus{color:#000000b3}html .navbar-light .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link.disabled{color:#0000004d}html .navbar-light .navbar-nav .show>.nav-link,html .navbar-light .navbar-nav .nav-link.active,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-light .navbar-nav .nav-link.active,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .show>.nav-link,html[data-netbox-color-mode=light] .navbar-light .navbar-nav .nav-link.active{color:#000000e6}html .navbar-light .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler,html[data-netbox-color-mode=light] .navbar-light .navbar-toggler{color:#0000008c;border-color:#0000001a}html .navbar-light .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-light .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html .navbar-light .navbar-text,html[data-netbox-color-mode=dark] .navbar-light .navbar-text,html[data-netbox-color-mode=light] .navbar-light .navbar-text{color:#0000008c}html .navbar-light .navbar-text a,html .navbar-light .navbar-text a:hover,html .navbar-light .navbar-text a:focus,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-light .navbar-text a:focus,html[data-netbox-color-mode=light] .navbar-light .navbar-text a,html[data-netbox-color-mode=light] .navbar-light .navbar-text a:hover,html[data-netbox-color-mode=light] .navbar-light .navbar-text a:focus{color:#000000e6}}@media print{html .navbar-dark .navbar-brand,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand{color:#fff}html .navbar-dark .navbar-brand:hover,html .navbar-dark .navbar-brand:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-brand:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-brand:focus{color:#fff}html .navbar-dark .navbar-nav .nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link{color:#ffffff8c}html .navbar-dark .navbar-nav .nav-link:hover,html .navbar-dark .navbar-nav .nav-link:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}html .navbar-dark .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.disabled,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}html .navbar-dark .navbar-nav .show>.nav-link,html .navbar-dark .navbar-nav .nav-link.active,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=dark] .navbar-dark .navbar-nav .nav-link.active,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .show>.nav-link,html[data-netbox-color-mode=light] .navbar-dark .navbar-nav .nav-link.active{color:#fff}html .navbar-dark .navbar-toggler,html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler,html[data-netbox-color-mode=light] .navbar-dark .navbar-toggler{color:#ffffff8c;border-color:#ffffff1a}html .navbar-dark .navbar-toggler-icon,html[data-netbox-color-mode=dark] .navbar-dark .navbar-toggler-icon,html[data-netbox-color-mode=light] .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html .navbar-dark .navbar-text,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text,html[data-netbox-color-mode=light] .navbar-dark .navbar-text{color:#ffffff8c}html .navbar-dark .navbar-text a,html .navbar-dark .navbar-text a:hover,html .navbar-dark .navbar-text a:focus,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=dark] .navbar-dark .navbar-text a:focus,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a:hover,html[data-netbox-color-mode=light] .navbar-dark .navbar-text a:focus{color:#fff}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.375rem}html .card>hr,html[data-netbox-color-mode=dark] .card>hr,html[data-netbox-color-mode=light] .card>hr{margin-right:0;margin-left:0}html .card>.list-group,html[data-netbox-color-mode=dark] .card>.list-group,html[data-netbox-color-mode=light] .card>.list-group{border-top:inherit;border-bottom:inherit}html .card>.list-group:first-child,html[data-netbox-color-mode=dark] .card>.list-group:first-child,html[data-netbox-color-mode=light] .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .card>.list-group:last-child,html[data-netbox-color-mode=dark] .card>.list-group:last-child,html[data-netbox-color-mode=light] .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html .card>.card-header+.list-group,html .card>.list-group+.card-footer,html[data-netbox-color-mode=dark] .card>.card-header+.list-group,html[data-netbox-color-mode=dark] .card>.list-group+.card-footer,html[data-netbox-color-mode=light] .card>.card-header+.list-group,html[data-netbox-color-mode=light] .card>.list-group+.card-footer{border-top:0}}@media print{html .card-body,html[data-netbox-color-mode=dark] .card-body,html[data-netbox-color-mode=light] .card-body{flex:1 1 auto;padding:1rem}}@media print{html .card-title,html[data-netbox-color-mode=dark] .card-title,html[data-netbox-color-mode=light] .card-title{margin-bottom:.5rem}}@media print{html .card-subtitle,html[data-netbox-color-mode=dark] .card-subtitle,html[data-netbox-color-mode=light] .card-subtitle{margin-top:-.25rem;margin-bottom:0}}@media print{html .card-text:last-child,html[data-netbox-color-mode=dark] .card-text:last-child,html[data-netbox-color-mode=light] .card-text:last-child{margin-bottom:0}}@media print{html .card-link:hover,html[data-netbox-color-mode=dark] .card-link:hover,html[data-netbox-color-mode=light] .card-link:hover{text-decoration:none}html .card-link+.card-link,html[data-netbox-color-mode=dark] .card-link+.card-link,html[data-netbox-color-mode=light] .card-link+.card-link{margin-left:1rem}}@media print{html .card-header,html[data-netbox-color-mode=dark] .card-header,html[data-netbox-color-mode=light] .card-header{padding:.5rem 1rem;margin-bottom:0;color:#343a40;background-color:"unset";border-bottom:1px solid rgba(0,0,0,.125)}html .card-header:first-child,html[data-netbox-color-mode=dark] .card-header:first-child,html[data-netbox-color-mode=light] .card-header:first-child{border-radius:calc(.375rem - 1px) calc(.375rem - 1px) 0 0}}@media print{html .card-footer,html[data-netbox-color-mode=dark] .card-footer,html[data-netbox-color-mode=light] .card-footer{padding:.5rem 1rem;color:#343a40;background-color:"unset";border-top:1px solid rgba(0,0,0,.125)}html .card-footer:last-child,html[data-netbox-color-mode=dark] .card-footer:last-child,html[data-netbox-color-mode=light] .card-footer:last-child{border-radius:0 0 calc(.375rem - 1px) calc(.375rem - 1px)}}@media print{html .card-header-tabs,html[data-netbox-color-mode=dark] .card-header-tabs,html[data-netbox-color-mode=light] .card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}}@media print{html .card-header-pills,html[data-netbox-color-mode=dark] .card-header-pills,html[data-netbox-color-mode=light] .card-header-pills{margin-right:-.5rem;margin-left:-.5rem}}@media print{html .card-img-overlay,html[data-netbox-color-mode=dark] .card-img-overlay,html[data-netbox-color-mode=light] .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.375rem - 1px)}}@media print{html .card-img,html .card-img-top,html .card-img-bottom,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=dark] .card-img-bottom,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-top,html[data-netbox-color-mode=light] .card-img-bottom{width:100%}}@media print{html .card-img,html .card-img-top,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-top,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-top{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}}@media print{html .card-img,html .card-img-bottom,html[data-netbox-color-mode=dark] .card-img,html[data-netbox-color-mode=dark] .card-img-bottom,html[data-netbox-color-mode=light] .card-img,html[data-netbox-color-mode=light] .card-img-bottom{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}}@media print{html .card-group>.card,html[data-netbox-color-mode=dark] .card-group>.card,html[data-netbox-color-mode=light] .card-group>.card{margin-bottom:.75rem}}@media print and (min-width: 576px){html .card-group,html[data-netbox-color-mode=dark] .card-group,html[data-netbox-color-mode=light] .card-group{display:flex;flex-flow:row wrap}html .card-group>.card,html[data-netbox-color-mode=dark] .card-group>.card,html[data-netbox-color-mode=light] .card-group>.card{flex:1 0 0%;margin-bottom:0}html .card-group>.card+.card,html[data-netbox-color-mode=dark] .card-group>.card+.card,html[data-netbox-color-mode=light] .card-group>.card+.card{margin-left:0;border-left:0}html .card-group>.card:not(:last-child),html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child),html[data-netbox-color-mode=light] .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html .card-group>.card:not(:last-child) .card-img-top,html .card-group>.card:not(:last-child) .card-header,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-header,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-img-top,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}html .card-group>.card:not(:last-child) .card-img-bottom,html .card-group>.card:not(:last-child) .card-footer,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:last-child) .card-footer,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-img-bottom,html[data-netbox-color-mode=light] .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}html .card-group>.card:not(:first-child),html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child),html[data-netbox-color-mode=light] .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html .card-group>.card:not(:first-child) .card-img-top,html .card-group>.card:not(:first-child) .card-header,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-header,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-img-top,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}html .card-group>.card:not(:first-child) .card-img-bottom,html .card-group>.card:not(:first-child) .card-footer,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=dark] .card-group>.card:not(:first-child) .card-footer,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-img-bottom,html[data-netbox-color-mode=light] .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}@media print{html .accordion-button,html[data-netbox-color-mode=dark] .accordion-button,html[data-netbox-color-mode=light] .accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:transparent;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}}@media print and (prefers-reduced-motion: reduce){html .accordion-button,html[data-netbox-color-mode=dark] .accordion-button,html[data-netbox-color-mode=light] .accordion-button{transition:none}}@media print{html .accordion-button:not(.collapsed),html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed),html[data-netbox-color-mode=light] .accordion-button:not(.collapsed){color:#343a40;background-color:#cfe2ff;box-shadow:inset 0 -1px #dee2e6}html .accordion-button:not(.collapsed):after,html[data-netbox-color-mode=dark] .accordion-button:not(.collapsed):after,html[data-netbox-color-mode=light] .accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}}@media print{html .accordion-button:after,html[data-netbox-color-mode=dark] .accordion-button:after,html[data-netbox-color-mode=light] .accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .accordion-button:after,html[data-netbox-color-mode=dark] .accordion-button:after,html[data-netbox-color-mode=light] .accordion-button:after{transition:none}}@media print{html .accordion-button:hover,html[data-netbox-color-mode=dark] .accordion-button:hover,html[data-netbox-color-mode=light] .accordion-button:hover{z-index:2}}@media print{html .accordion-button:focus,html[data-netbox-color-mode=dark] .accordion-button:focus,html[data-netbox-color-mode=light] .accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .accordion-header,html[data-netbox-color-mode=dark] .accordion-header,html[data-netbox-color-mode=light] .accordion-header{margin-bottom:0}}@media print{html .accordion-item,html[data-netbox-color-mode=dark] .accordion-item,html[data-netbox-color-mode=light] .accordion-item{background-color:transparent;border:1px solid #dee2e6}html .accordion-item:first-of-type,html[data-netbox-color-mode=dark] .accordion-item:first-of-type,html[data-netbox-color-mode=light] .accordion-item:first-of-type{border-top-left-radius:.375rem;border-top-right-radius:.375rem}html .accordion-item:first-of-type .accordion-button,html[data-netbox-color-mode=dark] .accordion-item:first-of-type .accordion-button,html[data-netbox-color-mode=light] .accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .accordion-item:not(:first-of-type),html[data-netbox-color-mode=dark] .accordion-item:not(:first-of-type),html[data-netbox-color-mode=light] .accordion-item:not(:first-of-type){border-top:0}html .accordion-item:last-of-type,html[data-netbox-color-mode=dark] .accordion-item:last-of-type,html[data-netbox-color-mode=light] .accordion-item:last-of-type{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .accordion-item:last-of-type .accordion-button.collapsed,html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-button.collapsed,html[data-netbox-color-mode=light] .accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.375rem - 1px);border-bottom-left-radius:calc(.375rem - 1px)}html .accordion-item:last-of-type .accordion-collapse,html[data-netbox-color-mode=dark] .accordion-item:last-of-type .accordion-collapse,html[data-netbox-color-mode=light] .accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .accordion-body,html[data-netbox-color-mode=dark] .accordion-body,html[data-netbox-color-mode=light] .accordion-body{padding:1rem 1.25rem}}@media print{html .accordion-flush .accordion-collapse,html[data-netbox-color-mode=dark] .accordion-flush .accordion-collapse,html[data-netbox-color-mode=light] .accordion-flush .accordion-collapse{border-width:0}html .accordion-flush .accordion-item,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item,html[data-netbox-color-mode=light] .accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}html .accordion-flush .accordion-item:first-child,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:first-child,html[data-netbox-color-mode=light] .accordion-flush .accordion-item:first-child{border-top:0}html .accordion-flush .accordion-item:last-child,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item:last-child,html[data-netbox-color-mode=light] .accordion-flush .accordion-item:last-child{border-bottom:0}html .accordion-flush .accordion-item .accordion-button,html[data-netbox-color-mode=dark] .accordion-flush .accordion-item .accordion-button,html[data-netbox-color-mode=light] .accordion-flush .accordion-item .accordion-button{border-radius:0}}@media print{html .breadcrumb,html[data-netbox-color-mode=dark] .breadcrumb,html[data-netbox-color-mode=light] .breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none}}@media print{html .breadcrumb-item+.breadcrumb-item,html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item,html[data-netbox-color-mode=light] .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html .breadcrumb-item+.breadcrumb-item:before,html[data-netbox-color-mode=dark] .breadcrumb-item+.breadcrumb-item:before,html[data-netbox-color-mode=light] .breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E"))}html .breadcrumb-item.active,html[data-netbox-color-mode=dark] .breadcrumb-item.active,html[data-netbox-color-mode=light] .breadcrumb-item.active{color:#6c757d}}@media print{html .pagination,html[data-netbox-color-mode=dark] .pagination,html[data-netbox-color-mode=light] .pagination{display:flex;padding-left:0;list-style:none}}@media print{html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{transition:none}}@media print{html .page-link:hover,html[data-netbox-color-mode=dark] .page-link:hover,html[data-netbox-color-mode=light] .page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}}@media print{html .page-link:focus,html[data-netbox-color-mode=dark] .page-link:focus,html[data-netbox-color-mode=light] .page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .page-item:not(:first-child) .page-link,html[data-netbox-color-mode=dark] .page-item:not(:first-child) .page-link,html[data-netbox-color-mode=light] .page-item:not(:first-child) .page-link{margin-left:-1px}html .page-item.active .page-link,html[data-netbox-color-mode=dark] .page-item.active .page-link,html[data-netbox-color-mode=light] .page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .page-item.disabled .page-link,html[data-netbox-color-mode=dark] .page-item.disabled .page-link,html[data-netbox-color-mode=light] .page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}}@media print{html .page-link,html[data-netbox-color-mode=dark] .page-link,html[data-netbox-color-mode=light] .page-link{padding:.375rem .75rem}}@media print{html .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .page-item:first-child .page-link,html[data-netbox-color-mode=light] .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .page-item:last-child .page-link,html[data-netbox-color-mode=light] .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .pagination-lg .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}html .pagination-lg .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-item:first-child .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}html .pagination-lg .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .pagination-lg .page-item:last-child .page-link,html[data-netbox-color-mode=light] .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}}@media print{html .pagination-sm .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}html .pagination-sm .page-item:first-child .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-item:first-child .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}html .pagination-sm .page-item:last-child .page-link,html[data-netbox-color-mode=dark] .pagination-sm .page-item:last-child .page-link,html[data-netbox-color-mode=light] .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .badge,html[data-netbox-color-mode=dark] .badge,html[data-netbox-color-mode=light] .badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.375rem}html .badge:empty,html[data-netbox-color-mode=dark] .badge:empty,html[data-netbox-color-mode=light] .badge:empty{display:none}}@media print{html .btn .badge,html[data-netbox-color-mode=dark] .btn .badge,html[data-netbox-color-mode=light] .btn .badge{position:relative;top:-1px}}@media print{html .alert,html[data-netbox-color-mode=dark] .alert,html[data-netbox-color-mode=light] .alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.375rem}}@media print{html .alert-heading,html[data-netbox-color-mode=dark] .alert-heading,html[data-netbox-color-mode=light] .alert-heading{color:inherit}}@media print{html .alert-link,html[data-netbox-color-mode=dark] .alert-link,html[data-netbox-color-mode=light] .alert-link{font-weight:700}}@media print{html .alert-dismissible,html[data-netbox-color-mode=dark] .alert-dismissible,html[data-netbox-color-mode=light] .alert-dismissible{padding-right:3rem}html .alert-dismissible .btn-close,html[data-netbox-color-mode=dark] .alert-dismissible .btn-close,html[data-netbox-color-mode=light] .alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}}@media print{html .alert-primary,html[data-netbox-color-mode=dark] .alert-primary,html[data-netbox-color-mode=light] .alert-primary{color:#1f496e;background-color:#d6e4f1;border-color:#c2d7e9}html .alert-primary .alert-link,html[data-netbox-color-mode=dark] .alert-primary .alert-link,html[data-netbox-color-mode=light] .alert-primary .alert-link{color:#193a58}}@media print{html .alert-secondary,html[data-netbox-color-mode=dark] .alert-secondary,html[data-netbox-color-mode=light] .alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}html .alert-secondary .alert-link,html[data-netbox-color-mode=dark] .alert-secondary .alert-link,html[data-netbox-color-mode=light] .alert-secondary .alert-link{color:#34383c}}@media print{html .alert-success,html[data-netbox-color-mode=dark] .alert-success,html[data-netbox-color-mode=light] .alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-success .alert-link,html[data-netbox-color-mode=dark] .alert-success .alert-link,html[data-netbox-color-mode=light] .alert-success .alert-link{color:#0c4128}}@media print{html .alert-info,html[data-netbox-color-mode=dark] .alert-info,html[data-netbox-color-mode=light] .alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-info .alert-link,html[data-netbox-color-mode=dark] .alert-info .alert-link,html[data-netbox-color-mode=light] .alert-info .alert-link{color:#04414d}}@media print{html .alert-warning,html[data-netbox-color-mode=dark] .alert-warning,html[data-netbox-color-mode=light] .alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-warning .alert-link,html[data-netbox-color-mode=dark] .alert-warning .alert-link,html[data-netbox-color-mode=light] .alert-warning .alert-link{color:#523e02}}@media print{html .alert-danger,html[data-netbox-color-mode=dark] .alert-danger,html[data-netbox-color-mode=light] .alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-danger .alert-link,html[data-netbox-color-mode=dark] .alert-danger .alert-link,html[data-netbox-color-mode=light] .alert-danger .alert-link{color:#6a1a21}}@media print{html .alert-light,html[data-netbox-color-mode=dark] .alert-light,html[data-netbox-color-mode=light] .alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}html .alert-light .alert-link,html[data-netbox-color-mode=dark] .alert-light .alert-link,html[data-netbox-color-mode=light] .alert-light .alert-link{color:#4f5050}}@media print{html .alert-dark,html[data-netbox-color-mode=dark] .alert-dark,html[data-netbox-color-mode=light] .alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}html .alert-dark .alert-link,html[data-netbox-color-mode=dark] .alert-dark .alert-link,html[data-netbox-color-mode=light] .alert-dark .alert-link{color:#101214}}@media print{html .alert-red,html[data-netbox-color-mode=dark] .alert-red,html[data-netbox-color-mode=light] .alert-red{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-red .alert-link,html[data-netbox-color-mode=dark] .alert-red .alert-link,html[data-netbox-color-mode=light] .alert-red .alert-link{color:#6a1a21}}@media print{html .alert-yellow,html[data-netbox-color-mode=dark] .alert-yellow,html[data-netbox-color-mode=light] .alert-yellow{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-yellow .alert-link,html[data-netbox-color-mode=dark] .alert-yellow .alert-link,html[data-netbox-color-mode=light] .alert-yellow .alert-link{color:#523e02}}@media print{html .alert-green,html[data-netbox-color-mode=dark] .alert-green,html[data-netbox-color-mode=light] .alert-green{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-green .alert-link,html[data-netbox-color-mode=dark] .alert-green .alert-link,html[data-netbox-color-mode=light] .alert-green .alert-link{color:#0c4128}}@media print{html .alert-blue,html[data-netbox-color-mode=dark] .alert-blue,html[data-netbox-color-mode=light] .alert-blue{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}html .alert-blue .alert-link,html[data-netbox-color-mode=dark] .alert-blue .alert-link,html[data-netbox-color-mode=light] .alert-blue .alert-link{color:#06357a}}@media print{html .alert-cyan,html[data-netbox-color-mode=dark] .alert-cyan,html[data-netbox-color-mode=light] .alert-cyan{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-cyan .alert-link,html[data-netbox-color-mode=dark] .alert-cyan .alert-link,html[data-netbox-color-mode=light] .alert-cyan .alert-link{color:#04414d}}@media print{html .alert-indigo,html[data-netbox-color-mode=dark] .alert-indigo,html[data-netbox-color-mode=light] .alert-indigo{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}html .alert-indigo .alert-link,html[data-netbox-color-mode=dark] .alert-indigo .alert-link,html[data-netbox-color-mode=light] .alert-indigo .alert-link{color:#310874}}@media print{html .alert-purple,html[data-netbox-color-mode=dark] .alert-purple,html[data-netbox-color-mode=light] .alert-purple{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}html .alert-purple .alert-link,html[data-netbox-color-mode=dark] .alert-purple .alert-link,html[data-netbox-color-mode=light] .alert-purple .alert-link{color:#36205d}}@media print{html .alert-pink,html[data-netbox-color-mode=dark] .alert-pink,html[data-netbox-color-mode=light] .alert-pink{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}html .alert-pink .alert-link,html[data-netbox-color-mode=dark] .alert-pink .alert-link,html[data-netbox-color-mode=light] .alert-pink .alert-link{color:#66193f}}@media print{html .alert-darker,html[data-netbox-color-mode=dark] .alert-darker,html[data-netbox-color-mode=light] .alert-darker{color:#101314;background-color:#d1d2d3;border-color:#bbbcbd}html .alert-darker .alert-link,html[data-netbox-color-mode=dark] .alert-darker .alert-link,html[data-netbox-color-mode=light] .alert-darker .alert-link{color:#0d0f10}}@media print{html .alert-darkest,html[data-netbox-color-mode=dark] .alert-darkest,html[data-netbox-color-mode=light] .alert-darkest{color:#0e1011;background-color:#d1d1d2;border-color:#b9bbbb}html .alert-darkest .alert-link,html[data-netbox-color-mode=dark] .alert-darkest .alert-link,html[data-netbox-color-mode=light] .alert-darkest .alert-link{color:#0b0d0e}}@media print{html .alert-gray,html[data-netbox-color-mode=dark] .alert-gray,html[data-netbox-color-mode=light] .alert-gray{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}html .alert-gray .alert-link,html[data-netbox-color-mode=dark] .alert-gray .alert-link,html[data-netbox-color-mode=light] .alert-gray .alert-link{color:#424446}}@media print{html .alert-gray-100,html[data-netbox-color-mode=dark] .alert-gray-100,html[data-netbox-color-mode=light] .alert-gray-100{color:#636464;background-color:#fefefe;border-color:#fdfdfe}html .alert-gray-100 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-100 .alert-link,html[data-netbox-color-mode=light] .alert-gray-100 .alert-link{color:#4f5050}}@media print{html .alert-gray-200,html[data-netbox-color-mode=dark] .alert-gray-200,html[data-netbox-color-mode=light] .alert-gray-200{color:#5d5e60;background-color:#fbfbfc;border-color:#f8f9fa}html .alert-gray-200 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-200 .alert-link,html[data-netbox-color-mode=light] .alert-gray-200 .alert-link{color:#4a4b4d}}@media print{html .alert-gray-300,html[data-netbox-color-mode=dark] .alert-gray-300,html[data-netbox-color-mode=light] .alert-gray-300{color:#595a5c;background-color:#f8f9fa;border-color:#f5f6f8}html .alert-gray-300 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-300 .alert-link,html[data-netbox-color-mode=light] .alert-gray-300 .alert-link{color:#47484a}}@media print{html .alert-gray-400,html[data-netbox-color-mode=dark] .alert-gray-400,html[data-netbox-color-mode=light] .alert-gray-400{color:#525557;background-color:#f5f6f8;border-color:#f0f2f4}html .alert-gray-400 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-400 .alert-link,html[data-netbox-color-mode=light] .alert-gray-400 .alert-link{color:#424446}}@media print{html .alert-gray-500,html[data-netbox-color-mode=dark] .alert-gray-500,html[data-netbox-color-mode=light] .alert-gray-500{color:#686d71;background-color:#eff0f2;border-color:#e6e9eb}html .alert-gray-500 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-500 .alert-link,html[data-netbox-color-mode=light] .alert-gray-500 .alert-link{color:#53575a}}@media print{html .alert-gray-600,html[data-netbox-color-mode=dark] .alert-gray-600,html[data-netbox-color-mode=light] .alert-gray-600{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}html .alert-gray-600 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-600 .alert-link,html[data-netbox-color-mode=light] .alert-gray-600 .alert-link{color:#34383c}}@media print{html .alert-gray-700,html[data-netbox-color-mode=dark] .alert-gray-700,html[data-netbox-color-mode=light] .alert-gray-700{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}html .alert-gray-700 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-700 .alert-link,html[data-netbox-color-mode=light] .alert-gray-700 .alert-link{color:#23262a}}@media print{html .alert-gray-800,html[data-netbox-color-mode=dark] .alert-gray-800,html[data-netbox-color-mode=light] .alert-gray-800{color:#1f2326;background-color:#d6d8d9;border-color:#c2c4c6}html .alert-gray-800 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-800 .alert-link,html[data-netbox-color-mode=light] .alert-gray-800 .alert-link{color:#191c1e}}@media print{html .alert-gray-900,html[data-netbox-color-mode=dark] .alert-gray-900,html[data-netbox-color-mode=light] .alert-gray-900{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}html .alert-gray-900 .alert-link,html[data-netbox-color-mode=dark] .alert-gray-900 .alert-link,html[data-netbox-color-mode=light] .alert-gray-900 .alert-link{color:#101214}}@media print{html .alert-red-100,html[data-netbox-color-mode=dark] .alert-red-100,html[data-netbox-color-mode=light] .alert-red-100{color:#635657;background-color:#fef7f8;border-color:#fdf3f4}html .alert-red-100 .alert-link,html[data-netbox-color-mode=dark] .alert-red-100 .alert-link,html[data-netbox-color-mode=light] .alert-red-100 .alert-link{color:#4f4546}}@media print{html .alert-red-200,html[data-netbox-color-mode=dark] .alert-red-200,html[data-netbox-color-mode=light] .alert-red-200{color:#604648;background-color:#fceff0;border-color:#fbe7e9}html .alert-red-200 .alert-link,html[data-netbox-color-mode=dark] .alert-red-200 .alert-link,html[data-netbox-color-mode=light] .alert-red-200 .alert-link{color:#4d383a}}@media print{html .alert-red-300,html[data-netbox-color-mode=dark] .alert-red-300,html[data-netbox-color-mode=light] .alert-red-300{color:#8c5056;background-color:#fbe7e9;border-color:#f9dbdd}html .alert-red-300 .alert-link,html[data-netbox-color-mode=dark] .alert-red-300 .alert-link,html[data-netbox-color-mode=light] .alert-red-300 .alert-link{color:#704045}}@media print{html .alert-red-400,html[data-netbox-color-mode=dark] .alert-red-400,html[data-netbox-color-mode=light] .alert-red-400{color:#883840;background-color:#f9dfe1;border-color:#f7ced2}html .alert-red-400 .alert-link,html[data-netbox-color-mode=dark] .alert-red-400 .alert-link,html[data-netbox-color-mode=light] .alert-red-400 .alert-link{color:#6d2d33}}@media print{html .alert-red-500,html[data-netbox-color-mode=dark] .alert-red-500,html[data-netbox-color-mode=light] .alert-red-500{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}html .alert-red-500 .alert-link,html[data-netbox-color-mode=dark] .alert-red-500 .alert-link,html[data-netbox-color-mode=light] .alert-red-500 .alert-link{color:#6a1a21}}@media print{html .alert-red-600,html[data-netbox-color-mode=dark] .alert-red-600,html[data-netbox-color-mode=light] .alert-red-600{color:#6a1921;background-color:#efd4d7;border-color:#e7bfc3}html .alert-red-600 .alert-link,html[data-netbox-color-mode=dark] .alert-red-600 .alert-link,html[data-netbox-color-mode=light] .alert-red-600 .alert-link{color:#55141a}}@media print{html .alert-red-700,html[data-netbox-color-mode=dark] .alert-red-700,html[data-netbox-color-mode=light] .alert-red-700{color:#4f1319;background-color:#e6d2d4;border-color:#dabcbf}html .alert-red-700 .alert-link,html[data-netbox-color-mode=dark] .alert-red-700 .alert-link,html[data-netbox-color-mode=light] .alert-red-700 .alert-link{color:#3f0f14}}@media print{html .alert-red-800,html[data-netbox-color-mode=dark] .alert-red-800,html[data-netbox-color-mode=light] .alert-red-800{color:#350d11;background-color:#ded0d2;border-color:#cdb9bb}html .alert-red-800 .alert-link,html[data-netbox-color-mode=dark] .alert-red-800 .alert-link,html[data-netbox-color-mode=light] .alert-red-800 .alert-link{color:#2a0a0e}}@media print{html .alert-red-900,html[data-netbox-color-mode=dark] .alert-red-900,html[data-netbox-color-mode=light] .alert-red-900{color:#1a0708;background-color:#d5cecf;border-color:#c0b6b7}html .alert-red-900 .alert-link,html[data-netbox-color-mode=dark] .alert-red-900 .alert-link,html[data-netbox-color-mode=light] .alert-red-900 .alert-link{color:#150606}}@media print{html .alert-yellow-100,html[data-netbox-color-mode=dark] .alert-yellow-100,html[data-netbox-color-mode=light] .alert-yellow-100{color:#666152;background-color:#fffdf5;border-color:#fffbf0}html .alert-yellow-100 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-100 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-100 .alert-link{color:#524e42}}@media print{html .alert-yellow-200,html[data-netbox-color-mode=dark] .alert-yellow-200,html[data-netbox-color-mode=light] .alert-yellow-200{color:#665c3e;background-color:#fffaeb;border-color:#fff8e1}html .alert-yellow-200 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-200 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-200 .alert-link{color:#524a32}}@media print{html .alert-yellow-300,html[data-netbox-color-mode=dark] .alert-yellow-300,html[data-netbox-color-mode=light] .alert-yellow-300{color:#66572a;background-color:#fff8e1;border-color:#fff4d2}html .alert-yellow-300 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-300 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-300 .alert-link{color:#524622}}@media print{html .alert-yellow-400,html[data-netbox-color-mode=dark] .alert-yellow-400,html[data-netbox-color-mode=light] .alert-yellow-400{color:#665217;background-color:#fff5d7;border-color:#fff0c4}html .alert-yellow-400 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-400 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-400 .alert-link{color:#524212}}@media print{html .alert-yellow-500,html[data-netbox-color-mode=dark] .alert-yellow-500,html[data-netbox-color-mode=light] .alert-yellow-500{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}html .alert-yellow-500 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-500 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-500 .alert-link{color:#523e02}}@media print{html .alert-yellow-600,html[data-netbox-color-mode=dark] .alert-yellow-600,html[data-netbox-color-mode=light] .alert-yellow-600{color:#7a5c04;background-color:#f5ebcd;border-color:#f0e1b4}html .alert-yellow-600 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-600 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-600 .alert-link{color:#624a03}}@media print{html .alert-yellow-700,html[data-netbox-color-mode=dark] .alert-yellow-700,html[data-netbox-color-mode=light] .alert-yellow-700{color:#5c4602;background-color:#ebe3cd;border-color:#e0d5b4}html .alert-yellow-700 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-700 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-700 .alert-link{color:#4a3802}}@media print{html .alert-yellow-800,html[data-netbox-color-mode=dark] .alert-yellow-800,html[data-netbox-color-mode=light] .alert-yellow-800{color:#3d2e02;background-color:#e0dbcd;border-color:#d1cab3}html .alert-yellow-800 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-800 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-800 .alert-link{color:#312502}}@media print{html .alert-yellow-900,html[data-netbox-color-mode=dark] .alert-yellow-900,html[data-netbox-color-mode=light] .alert-yellow-900{color:#1f1701;background-color:#d6d4cc;border-color:#c2beb3}html .alert-yellow-900 .alert-link,html[data-netbox-color-mode=dark] .alert-yellow-900 .alert-link,html[data-netbox-color-mode=light] .alert-yellow-900 .alert-link{color:#191201}}@media print{html .alert-green-100,html[data-netbox-color-mode=dark] .alert-green-100,html[data-netbox-color-mode=light] .alert-green-100{color:#545c58;background-color:#f6faf8;border-color:#f1f8f5}html .alert-green-100 .alert-link,html[data-netbox-color-mode=dark] .alert-green-100 .alert-link,html[data-netbox-color-mode=light] .alert-green-100 .alert-link{color:#434a46}}@media print{html .alert-green-200,html[data-netbox-color-mode=dark] .alert-green-200,html[data-netbox-color-mode=light] .alert-green-200{color:#41534b;background-color:#edf5f1;border-color:#e3f1eb}html .alert-green-200 .alert-link,html[data-netbox-color-mode=dark] .alert-green-200 .alert-link,html[data-netbox-color-mode=light] .alert-green-200 .alert-link{color:#34423c}}@media print{html .alert-green-300,html[data-netbox-color-mode=dark] .alert-green-300,html[data-netbox-color-mode=light] .alert-green-300{color:#466e5b;background-color:#e3f1ea;border-color:#d6e9e0}html .alert-green-300 .alert-link,html[data-netbox-color-mode=dark] .alert-green-300 .alert-link,html[data-netbox-color-mode=light] .alert-green-300 .alert-link{color:#385849}}@media print{html .alert-green-400,html[data-netbox-color-mode=dark] .alert-green-400,html[data-netbox-color-mode=light] .alert-green-400{color:#2b5f47;background-color:#daece4;border-color:#c8e2d6}html .alert-green-400 .alert-link,html[data-netbox-color-mode=dark] .alert-green-400 .alert-link,html[data-netbox-color-mode=light] .alert-green-400 .alert-link{color:#224c39}}@media print{html .alert-green-500,html[data-netbox-color-mode=dark] .alert-green-500,html[data-netbox-color-mode=light] .alert-green-500{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}html .alert-green-500 .alert-link,html[data-netbox-color-mode=dark] .alert-green-500 .alert-link,html[data-netbox-color-mode=light] .alert-green-500 .alert-link{color:#0c4128}}@media print{html .alert-green-600,html[data-netbox-color-mode=dark] .alert-green-600,html[data-netbox-color-mode=light] .alert-green-600{color:#0c4128;background-color:#d0e2d9;border-color:#b9d3c7}html .alert-green-600 .alert-link,html[data-netbox-color-mode=dark] .alert-green-600 .alert-link,html[data-netbox-color-mode=light] .alert-green-600 .alert-link{color:#0a3420}}@media print{html .alert-green-700,html[data-netbox-color-mode=dark] .alert-green-700,html[data-netbox-color-mode=light] .alert-green-700{color:#09311e;background-color:#cfdcd6;border-color:#b7cbc2}html .alert-green-700 .alert-link,html[data-netbox-color-mode=dark] .alert-green-700 .alert-link,html[data-netbox-color-mode=light] .alert-green-700 .alert-link{color:#072718}}@media print{html .alert-green-800,html[data-netbox-color-mode=dark] .alert-green-800,html[data-netbox-color-mode=light] .alert-green-800{color:#062014;background-color:#ced7d3;border-color:#b6c3bd}html .alert-green-800 .alert-link,html[data-netbox-color-mode=dark] .alert-green-800 .alert-link,html[data-netbox-color-mode=light] .alert-green-800 .alert-link{color:#051a10}}@media print{html .alert-green-900,html[data-netbox-color-mode=dark] .alert-green-900,html[data-netbox-color-mode=light] .alert-green-900{color:#03100a;background-color:#cdd1cf;border-color:#b4bbb8}html .alert-green-900 .alert-link,html[data-netbox-color-mode=dark] .alert-green-900 .alert-link,html[data-netbox-color-mode=light] .alert-green-900 .alert-link{color:#020d08}}@media print{html .alert-blue-100,html[data-netbox-color-mode=dark] .alert-blue-100,html[data-netbox-color-mode=light] .alert-blue-100{color:#535a66;background-color:#f5f9ff;border-color:#f1f6ff}html .alert-blue-100 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-100 .alert-link,html[data-netbox-color-mode=light] .alert-blue-100 .alert-link{color:#424852}}@media print{html .alert-blue-200,html[data-netbox-color-mode=dark] .alert-blue-200,html[data-netbox-color-mode=light] .alert-blue-200{color:#3f4f66;background-color:#ecf3ff;border-color:#e2eeff}html .alert-blue-200 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-200 .alert-link,html[data-netbox-color-mode=light] .alert-blue-200 .alert-link{color:#323f52}}@media print{html .alert-blue-300,html[data-netbox-color-mode=dark] .alert-blue-300,html[data-netbox-color-mode=light] .alert-blue-300{color:#426598;background-color:#e2eeff;border-color:#d4e5ff}html .alert-blue-300 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-300 .alert-link,html[data-netbox-color-mode=light] .alert-blue-300 .alert-link{color:#35517a}}@media print{html .alert-blue-400,html[data-netbox-color-mode=dark] .alert-blue-400,html[data-netbox-color-mode=light] .alert-blue-400{color:#255398;background-color:#d8e8ff;border-color:#c5dcfe}html .alert-blue-400 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-400 .alert-link,html[data-netbox-color-mode=light] .alert-blue-400 .alert-link{color:#1e427a}}@media print{html .alert-blue-500,html[data-netbox-color-mode=dark] .alert-blue-500,html[data-netbox-color-mode=light] .alert-blue-500{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}html .alert-blue-500 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-500 .alert-link,html[data-netbox-color-mode=light] .alert-blue-500 .alert-link{color:#06357a}}@media print{html .alert-blue-600,html[data-netbox-color-mode=dark] .alert-blue-600,html[data-netbox-color-mode=light] .alert-blue-600{color:#063579;background-color:#cedef4;border-color:#b6cdef}html .alert-blue-600 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-600 .alert-link,html[data-netbox-color-mode=light] .alert-blue-600 .alert-link{color:#052a61}}@media print{html .alert-blue-700,html[data-netbox-color-mode=dark] .alert-blue-700,html[data-netbox-color-mode=light] .alert-blue-700{color:#05285b;background-color:#ced9ea;border-color:#b5c6e0}html .alert-blue-700 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-700 .alert-link,html[data-netbox-color-mode=light] .alert-blue-700 .alert-link{color:#042049}}@media print{html .alert-blue-800,html[data-netbox-color-mode=dark] .alert-blue-800,html[data-netbox-color-mode=light] .alert-blue-800{color:#031a3d;background-color:#cdd5e0;border-color:#b4c0d1}html .alert-blue-800 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-800 .alert-link,html[data-netbox-color-mode=light] .alert-blue-800 .alert-link{color:#021531}}@media print{html .alert-blue-900,html[data-netbox-color-mode=dark] .alert-blue-900,html[data-netbox-color-mode=light] .alert-blue-900{color:#020d1f;background-color:#cdd0d6;border-color:#b3b9c2}html .alert-blue-900 .alert-link,html[data-netbox-color-mode=dark] .alert-blue-900 .alert-link,html[data-netbox-color-mode=light] .alert-blue-900 .alert-link{color:#020a19}}@media print{html .alert-cyan-100,html[data-netbox-color-mode=dark] .alert-cyan-100,html[data-netbox-color-mode=light] .alert-cyan-100{color:#536265;background-color:#f5fdfe;border-color:#f1fcfe}html .alert-cyan-100 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-100 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-100 .alert-link{color:#424e51}}@media print{html .alert-cyan-200,html[data-netbox-color-mode=dark] .alert-cyan-200,html[data-netbox-color-mode=light] .alert-cyan-200{color:#3f5e64;background-color:#ecfbfe;border-color:#e2f9fd}html .alert-cyan-200 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-200 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-200 .alert-link{color:#324b50}}@media print{html .alert-cyan-300,html[data-netbox-color-mode=dark] .alert-cyan-300,html[data-netbox-color-mode=light] .alert-cyan-300{color:#2c5962;background-color:#e2f9fd;border-color:#d4f5fc}html .alert-cyan-300 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-300 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-300 .alert-link{color:#23474e}}@media print{html .alert-cyan-400,html[data-netbox-color-mode=dark] .alert-cyan-400,html[data-netbox-color-mode=light] .alert-cyan-400{color:#185561;background-color:#d8f7fd;border-color:#c5f2fb}html .alert-cyan-400 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-400 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-400 .alert-link{color:#13444e}}@media print{html .alert-cyan-500,html[data-netbox-color-mode=dark] .alert-cyan-500,html[data-netbox-color-mode=light] .alert-cyan-500{color:#055160;background-color:#cff4fc;border-color:#b6effb}html .alert-cyan-500 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-500 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-500 .alert-link{color:#04414d}}@media print{html .alert-cyan-600,html[data-netbox-color-mode=dark] .alert-cyan-600,html[data-netbox-color-mode=light] .alert-cyan-600{color:#066173;background-color:#ceecf2;border-color:#b6e3ec}html .alert-cyan-600 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-600 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-600 .alert-link{color:#054e5c}}@media print{html .alert-cyan-700,html[data-netbox-color-mode=dark] .alert-cyan-700,html[data-netbox-color-mode=light] .alert-cyan-700{color:#054956;background-color:#cee4e9;border-color:#b5d7de}html .alert-cyan-700 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-700 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-700 .alert-link{color:#043a45}}@media print{html .alert-cyan-800,html[data-netbox-color-mode=dark] .alert-cyan-800,html[data-netbox-color-mode=light] .alert-cyan-800{color:#03313a;background-color:#cddcdf;border-color:#b4cbcf}html .alert-cyan-800 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-800 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-800 .alert-link{color:#02272e}}@media print{html .alert-cyan-900,html[data-netbox-color-mode=dark] .alert-cyan-900,html[data-netbox-color-mode=light] .alert-cyan-900{color:#02181d;background-color:#cdd4d6;border-color:#b3bfc1}html .alert-cyan-900 .alert-link,html[data-netbox-color-mode=dark] .alert-cyan-900 .alert-link,html[data-netbox-color-mode=light] .alert-cyan-900 .alert-link{color:#021317}}@media print{html .alert-indigo-100,html[data-netbox-color-mode=dark] .alert-indigo-100,html[data-netbox-color-mode=light] .alert-indigo-100{color:#5a5365;background-color:#f9f5fe;border-color:#f6f1fe}html .alert-indigo-100 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-100 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-100 .alert-link{color:#484251}}@media print{html .alert-indigo-200,html[data-netbox-color-mode=dark] .alert-indigo-200,html[data-netbox-color-mode=light] .alert-indigo-200{color:#745f96;background-color:#f3ecfe;border-color:#ede2fe}html .alert-indigo-200 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-200 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-200 .alert-link{color:#5d4c78}}@media print{html .alert-indigo-300,html[data-netbox-color-mode=dark] .alert-indigo-300,html[data-netbox-color-mode=light] .alert-indigo-300{color:#624394;background-color:#ede2fd;border-color:#e3d4fd}html .alert-indigo-300 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-300 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-300 .alert-link{color:#4e3676}}@media print{html .alert-indigo-400,html[data-netbox-color-mode=dark] .alert-indigo-400,html[data-netbox-color-mode=light] .alert-indigo-400{color:#502693;background-color:#e7d9fd;border-color:#dac6fc}html .alert-indigo-400 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-400 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-400 .alert-link{color:#401e76}}@media print{html .alert-indigo-500,html[data-netbox-color-mode=dark] .alert-indigo-500,html[data-netbox-color-mode=light] .alert-indigo-500{color:#3d0a91;background-color:#e0cffc;border-color:#d1b7fb}html .alert-indigo-500 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-500 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-500 .alert-link{color:#310874}}@media print{html .alert-indigo-600,html[data-netbox-color-mode=dark] .alert-indigo-600,html[data-netbox-color-mode=light] .alert-indigo-600{color:#310874;background-color:#dccff3;border-color:#cbb6ed}html .alert-indigo-600 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-600 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-600 .alert-link{color:#27065d}}@media print{html .alert-indigo-700,html[data-netbox-color-mode=dark] .alert-indigo-700,html[data-netbox-color-mode=light] .alert-indigo-700{color:#250657;background-color:#d8cee9;border-color:#c5b6de}html .alert-indigo-700 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-700 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-700 .alert-link{color:#1e0546}}@media print{html .alert-indigo-800,html[data-netbox-color-mode=dark] .alert-indigo-800,html[data-netbox-color-mode=light] .alert-indigo-800{color:#19043a;background-color:#d4cddf;border-color:#bfb4d0}html .alert-indigo-800 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-800 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-800 .alert-link{color:#14032e}}@media print{html .alert-indigo-900,html[data-netbox-color-mode=dark] .alert-indigo-900,html[data-netbox-color-mode=light] .alert-indigo-900{color:#0c021d;background-color:#d0cdd6;border-color:#b9b3c1}html .alert-indigo-900 .alert-link,html[data-netbox-color-mode=dark] .alert-indigo-900 .alert-link,html[data-netbox-color-mode=light] .alert-indigo-900 .alert-link{color:#0a0217}}@media print{html .alert-purple-100,html[data-netbox-color-mode=dark] .alert-purple-100,html[data-netbox-color-mode=light] .alert-purple-100{color:#5a5761;background-color:#f9f7fd;border-color:#f6f4fb}html .alert-purple-100 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-100 .alert-link,html[data-netbox-color-mode=light] .alert-purple-100 .alert-link{color:#48464e}}@media print{html .alert-purple-200,html[data-netbox-color-mode=dark] .alert-purple-200,html[data-netbox-color-mode=light] .alert-purple-200{color:#4f485c;background-color:#f3f0fa;border-color:#eee8f8}html .alert-purple-200 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-200 .alert-link,html[data-netbox-color-mode=light] .alert-purple-200 .alert-link{color:#3f3a4a}}@media print{html .alert-purple-300,html[data-netbox-color-mode=dark] .alert-purple-300,html[data-netbox-color-mode=light] .alert-purple-300{color:#655583;background-color:#eee8f8;border-color:#e5ddf4}html .alert-purple-300 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-300 .alert-link,html[data-netbox-color-mode=light] .alert-purple-300 .alert-link{color:#514469}}@media print{html .alert-purple-400,html[data-netbox-color-mode=dark] .alert-purple-400,html[data-netbox-color-mode=light] .alert-purple-400{color:#543e7b;background-color:#e8e1f5;border-color:#ddd2f0}html .alert-purple-400 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-400 .alert-link,html[data-netbox-color-mode=light] .alert-purple-400 .alert-link{color:#433262}}@media print{html .alert-purple-500,html[data-netbox-color-mode=dark] .alert-purple-500,html[data-netbox-color-mode=light] .alert-purple-500{color:#432874;background-color:#e2d9f3;border-color:#d4c6ec}html .alert-purple-500 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-500 .alert-link,html[data-netbox-color-mode=light] .alert-purple-500 .alert-link{color:#36205d}}@media print{html .alert-purple-600,html[data-netbox-color-mode=dark] .alert-purple-600,html[data-netbox-color-mode=light] .alert-purple-600{color:#35205c;background-color:#ded7eb;border-color:#cdc2e1}html .alert-purple-600 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-600 .alert-link,html[data-netbox-color-mode=light] .alert-purple-600 .alert-link{color:#2a1a4a}}@media print{html .alert-purple-700,html[data-netbox-color-mode=dark] .alert-purple-700,html[data-netbox-color-mode=light] .alert-purple-700{color:#281846;background-color:#d9d4e3;border-color:#c7bfd5}html .alert-purple-700 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-700 .alert-link,html[data-netbox-color-mode=light] .alert-purple-700 .alert-link{color:#201338}}@media print{html .alert-purple-800,html[data-netbox-color-mode=dark] .alert-purple-800,html[data-netbox-color-mode=light] .alert-purple-800{color:#1a102e;background-color:#d5d1db;border-color:#c0baca}html .alert-purple-800 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-800 .alert-link,html[data-netbox-color-mode=light] .alert-purple-800 .alert-link{color:#150d25}}@media print{html .alert-purple-900,html[data-netbox-color-mode=dark] .alert-purple-900,html[data-netbox-color-mode=light] .alert-purple-900{color:#0d0817;background-color:#d0cfd4;border-color:#b9b6be}html .alert-purple-900 .alert-link,html[data-netbox-color-mode=dark] .alert-purple-900 .alert-link,html[data-netbox-color-mode=light] .alert-purple-900 .alert-link{color:#0a0612}}@media print{html .alert-pink-100,html[data-netbox-color-mode=dark] .alert-pink-100,html[data-netbox-color-mode=light] .alert-pink-100{color:#63565c;background-color:#fdf7fa;border-color:#fdf3f8}html .alert-pink-100 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-100 .alert-link,html[data-netbox-color-mode=light] .alert-pink-100 .alert-link{color:#4f454a}}@media print{html .alert-pink-200,html[data-netbox-color-mode=dark] .alert-pink-200,html[data-netbox-color-mode=light] .alert-pink-200{color:#604552;background-color:#fceff5;border-color:#fae6f0}html .alert-pink-200 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-200 .alert-link,html[data-netbox-color-mode=light] .alert-pink-200 .alert-link{color:#4d3742}}@media print{html .alert-pink-300,html[data-netbox-color-mode=dark] .alert-pink-300,html[data-netbox-color-mode=light] .alert-pink-300{color:#8a506d;background-color:#fae7f0;border-color:#f8dae9}html .alert-pink-300 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-300 .alert-link,html[data-netbox-color-mode=light] .alert-pink-300 .alert-link{color:#6e4057}}@media print{html .alert-pink-400,html[data-netbox-color-mode=dark] .alert-pink-400,html[data-netbox-color-mode=light] .alert-pink-400{color:#85375e;background-color:#f8deeb;border-color:#f5cee2}html .alert-pink-400 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-400 .alert-link,html[data-netbox-color-mode=light] .alert-pink-400 .alert-link{color:#6a2c4b}}@media print{html .alert-pink-500,html[data-netbox-color-mode=dark] .alert-pink-500,html[data-netbox-color-mode=light] .alert-pink-500{color:#801f4f;background-color:#f7d6e6;border-color:#f3c2da}html .alert-pink-500 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-500 .alert-link,html[data-netbox-color-mode=light] .alert-pink-500 .alert-link{color:#66193f}}@media print{html .alert-pink-600,html[data-netbox-color-mode=dark] .alert-pink-600,html[data-netbox-color-mode=light] .alert-pink-600{color:#671940;background-color:#eed4e1;border-color:#e6bfd2}html .alert-pink-600 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-600 .alert-link,html[data-netbox-color-mode=light] .alert-pink-600 .alert-link{color:#521433}}@media print{html .alert-pink-700,html[data-netbox-color-mode=dark] .alert-pink-700,html[data-netbox-color-mode=light] .alert-pink-700{color:#4d132f;background-color:#e6d2dc;border-color:#d9bcca}html .alert-pink-700 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-700 .alert-link,html[data-netbox-color-mode=light] .alert-pink-700 .alert-link{color:#3e0f26}}@media print{html .alert-pink-800,html[data-netbox-color-mode=dark] .alert-pink-800,html[data-netbox-color-mode=light] .alert-pink-800{color:#340c20;background-color:#ddd0d7;border-color:#ccb9c2}html .alert-pink-800 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-800 .alert-link,html[data-netbox-color-mode=light] .alert-pink-800 .alert-link{color:#2a0a1a}}@media print{html .alert-pink-900,html[data-netbox-color-mode=dark] .alert-pink-900,html[data-netbox-color-mode=light] .alert-pink-900{color:#1a0610;background-color:#d5ced1;border-color:#bfb6ba}html .alert-pink-900 .alert-link,html[data-netbox-color-mode=dark] .alert-pink-900 .alert-link,html[data-netbox-color-mode=light] .alert-pink-900 .alert-link{color:#15050d}}@media print{@keyframes progress-bar-stripes{0%{background-position-x:1rem}}}@media print{html .progress,html[data-netbox-color-mode=dark] .progress,html[data-netbox-color-mode=light] .progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.375rem}}@media print{html .progress-bar,html[data-netbox-color-mode=dark] .progress-bar,html[data-netbox-color-mode=light] .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}}@media print and (prefers-reduced-motion: reduce){html .progress-bar,html[data-netbox-color-mode=dark] .progress-bar,html[data-netbox-color-mode=light] .progress-bar{transition:none}}@media print{html .progress-bar-striped,html[data-netbox-color-mode=dark] .progress-bar-striped,html[data-netbox-color-mode=light] .progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}}@media print{html .progress-bar-animated,html[data-netbox-color-mode=dark] .progress-bar-animated,html[data-netbox-color-mode=light] .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}}@media print and (prefers-reduced-motion: reduce){html .progress-bar-animated,html[data-netbox-color-mode=dark] .progress-bar-animated,html[data-netbox-color-mode=light] .progress-bar-animated{animation:none}}@media print{html .list-group,html[data-netbox-color-mode=dark] .list-group,html[data-netbox-color-mode=light] .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.375rem}}@media print{html .list-group-numbered,html[data-netbox-color-mode=dark] .list-group-numbered,html[data-netbox-color-mode=light] .list-group-numbered{list-style-type:none;counter-reset:section}html .list-group-numbered>li:before,html[data-netbox-color-mode=dark] .list-group-numbered>li:before,html[data-netbox-color-mode=light] .list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}}@media print{html .list-group-item-action,html[data-netbox-color-mode=dark] .list-group-item-action,html[data-netbox-color-mode=light] .list-group-item-action{width:100%;color:#495057;text-align:inherit}html .list-group-item-action:hover,html .list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}html .list-group-item-action:active,html[data-netbox-color-mode=dark] .list-group-item-action:active,html[data-netbox-color-mode=light] .list-group-item-action:active{color:#212529;background-color:#e9ecef}}@media print{html .list-group-item,html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=light] .list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#495057;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}html .list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html .list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html .list-group-item.disabled,html .list-group-item:disabled,html[data-netbox-color-mode=dark] .list-group-item.disabled,html[data-netbox-color-mode=dark] .list-group-item:disabled,html[data-netbox-color-mode=light] .list-group-item.disabled,html[data-netbox-color-mode=light] .list-group-item:disabled{color:#adb5bd;pointer-events:none;background-color:#fff}html .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}html .list-group-item+html .list-group-item,html .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html .list-group-item+html[data-netbox-color-mode=light] .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=light] .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=light] .list-group-item{border-top-width:0}html .list-group-item+html .list-group-item.active,html .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=dark] .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=dark] .list-group-item.active,html[data-netbox-color-mode=light] .list-group-item+html[data-netbox-color-mode=light] .list-group-item.active{margin-top:-1px;border-top-width:1px}}@media print{html .list-group-horizontal,html[data-netbox-color-mode=dark] .list-group-horizontal,html[data-netbox-color-mode=light] .list-group-horizontal{flex-direction:row}html .list-group-horizontal>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item.active{margin-top:0}html .list-group-horizontal>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 576px){html .list-group-horizontal-sm,html[data-netbox-color-mode=dark] .list-group-horizontal-sm,html[data-netbox-color-mode=light] .list-group-horizontal-sm{flex-direction:row}html .list-group-horizontal-sm>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-sm>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-sm>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html .list-group-horizontal-sm>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-sm>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-sm>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 768px){html .list-group-horizontal-md,html[data-netbox-color-mode=dark] .list-group-horizontal-md,html[data-netbox-color-mode=light] .list-group-horizontal-md{flex-direction:row}html .list-group-horizontal-md>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-md>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-md>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item.active{margin-top:0}html .list-group-horizontal-md>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-md>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-md>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 992px){html .list-group-horizontal-lg,html[data-netbox-color-mode=dark] .list-group-horizontal-lg,html[data-netbox-color-mode=light] .list-group-horizontal-lg{flex-direction:row}html .list-group-horizontal-lg>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-lg>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-lg>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html .list-group-horizontal-lg>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-lg>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-lg>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 1200px){html .list-group-horizontal-xl,html[data-netbox-color-mode=dark] .list-group-horizontal-xl,html[data-netbox-color-mode=light] .list-group-horizontal-xl{flex-direction:row}html .list-group-horizontal-xl>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-xl>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-xl>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html .list-group-horizontal-xl>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-xl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print and (min-width: 1400px){html .list-group-horizontal-xxl,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl,html[data-netbox-color-mode=light] .list-group-horizontal-xxl{flex-direction:row}html .list-group-horizontal-xxl>.list-group-item:first-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:first-child,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.375rem;border-top-right-radius:0}html .list-group-horizontal-xxl>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.375rem;border-bottom-left-radius:0}html .list-group-horizontal-xxl>.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}html .list-group-horizontal-xxl>.list-group-item+.list-group-item,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html .list-group-horizontal-xxl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=dark] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active,html[data-netbox-color-mode=light] .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media print{html .list-group-flush,html[data-netbox-color-mode=dark] .list-group-flush,html[data-netbox-color-mode=light] .list-group-flush{border-radius:0}html .list-group-flush>.list-group-item,html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item,html[data-netbox-color-mode=light] .list-group-flush>.list-group-item{border-width:0 0 1px}html .list-group-flush>.list-group-item:last-child,html[data-netbox-color-mode=dark] .list-group-flush>.list-group-item:last-child,html[data-netbox-color-mode=light] .list-group-flush>.list-group-item:last-child{border-bottom-width:0}}@media print{html .list-group-item-primary,html[data-netbox-color-mode=dark] .list-group-item-primary,html[data-netbox-color-mode=light] .list-group-item-primary{color:#1f496e;background-color:#d6e4f1}html .list-group-item-primary.list-group-item-action:hover,html .list-group-item-primary.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action:focus{color:#1f496e;background-color:#c1cdd9}html .list-group-item-primary.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-primary.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1f496e;border-color:#1f496e}}@media print{html .list-group-item-secondary,html[data-netbox-color-mode=dark] .list-group-item-secondary,html[data-netbox-color-mode=light] .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}html .list-group-item-secondary.list-group-item-action:hover,html .list-group-item-secondary.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html .list-group-item-secondary.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-secondary.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}}@media print{html .list-group-item-success,html[data-netbox-color-mode=dark] .list-group-item-success,html[data-netbox-color-mode=light] .list-group-item-success{color:#0f5132;background-color:#d1e7dd}html .list-group-item-success.list-group-item-action:hover,html .list-group-item-success.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-success.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-success.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-info,html[data-netbox-color-mode=dark] .list-group-item-info,html[data-netbox-color-mode=light] .list-group-item-info{color:#055160;background-color:#cff4fc}html .list-group-item-info.list-group-item-action:hover,html .list-group-item-info.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-info.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-info.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-warning,html[data-netbox-color-mode=dark] .list-group-item-warning,html[data-netbox-color-mode=light] .list-group-item-warning{color:#664d03;background-color:#fff3cd}html .list-group-item-warning.list-group-item-action:hover,html .list-group-item-warning.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-warning.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-warning.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-danger,html[data-netbox-color-mode=dark] .list-group-item-danger,html[data-netbox-color-mode=light] .list-group-item-danger{color:#842029;background-color:#f8d7da}html .list-group-item-danger.list-group-item-action:hover,html .list-group-item-danger.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-danger.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-danger.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-light,html[data-netbox-color-mode=dark] .list-group-item-light,html[data-netbox-color-mode=light] .list-group-item-light{color:#636464;background-color:#fefefe}html .list-group-item-light.list-group-item-action:hover,html .list-group-item-light.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html .list-group-item-light.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-light.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}}@media print{html .list-group-item-dark,html[data-netbox-color-mode=dark] .list-group-item-dark,html[data-netbox-color-mode=light] .list-group-item-dark{color:#141619;background-color:#d3d3d4}html .list-group-item-dark.list-group-item-action:hover,html .list-group-item-dark.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}html .list-group-item-dark.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-dark.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}}@media print{html .list-group-item-red,html[data-netbox-color-mode=dark] .list-group-item-red,html[data-netbox-color-mode=light] .list-group-item-red{color:#842029;background-color:#f8d7da}html .list-group-item-red.list-group-item-action:hover,html .list-group-item-red.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-red.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-yellow,html[data-netbox-color-mode=dark] .list-group-item-yellow,html[data-netbox-color-mode=light] .list-group-item-yellow{color:#664d03;background-color:#fff3cd}html .list-group-item-yellow.list-group-item-action:hover,html .list-group-item-yellow.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-yellow.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-green,html[data-netbox-color-mode=dark] .list-group-item-green,html[data-netbox-color-mode=light] .list-group-item-green{color:#0f5132;background-color:#d1e7dd}html .list-group-item-green.list-group-item-action:hover,html .list-group-item-green.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-green.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-blue,html[data-netbox-color-mode=dark] .list-group-item-blue,html[data-netbox-color-mode=light] .list-group-item-blue{color:#084298;background-color:#cfe2ff}html .list-group-item-blue.list-group-item-action:hover,html .list-group-item-blue.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html .list-group-item-blue.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .list-group-item-cyan,html[data-netbox-color-mode=dark] .list-group-item-cyan,html[data-netbox-color-mode=light] .list-group-item-cyan{color:#055160;background-color:#cff4fc}html .list-group-item-cyan.list-group-item-action:hover,html .list-group-item-cyan.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-cyan.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-indigo,html[data-netbox-color-mode=dark] .list-group-item-indigo,html[data-netbox-color-mode=light] .list-group-item-indigo{color:#3d0a91;background-color:#e0cffc}html .list-group-item-indigo.list-group-item-action:hover,html .list-group-item-indigo.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html .list-group-item-indigo.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .list-group-item-purple,html[data-netbox-color-mode=dark] .list-group-item-purple,html[data-netbox-color-mode=light] .list-group-item-purple{color:#432874;background-color:#e2d9f3}html .list-group-item-purple.list-group-item-action:hover,html .list-group-item-purple.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html .list-group-item-purple.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .list-group-item-pink,html[data-netbox-color-mode=dark] .list-group-item-pink,html[data-netbox-color-mode=light] .list-group-item-pink{color:#801f4f;background-color:#f7d6e6}html .list-group-item-pink.list-group-item-action:hover,html .list-group-item-pink.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html .list-group-item-pink.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .list-group-item-darker,html[data-netbox-color-mode=dark] .list-group-item-darker,html[data-netbox-color-mode=light] .list-group-item-darker{color:#101314;background-color:#d1d2d3}html .list-group-item-darker.list-group-item-action:hover,html .list-group-item-darker.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action:focus{color:#101314;background-color:#bcbdbe}html .list-group-item-darker.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-darker.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-darker.list-group-item-action.active{color:#fff;background-color:#101314;border-color:#101314}}@media print{html .list-group-item-darkest,html[data-netbox-color-mode=dark] .list-group-item-darkest,html[data-netbox-color-mode=light] .list-group-item-darkest{color:#0e1011;background-color:#d1d1d2}html .list-group-item-darkest.list-group-item-action:hover,html .list-group-item-darkest.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action:focus{color:#0e1011;background-color:#bcbcbd}html .list-group-item-darkest.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-darkest.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-darkest.list-group-item-action.active{color:#fff;background-color:#0e1011;border-color:#0e1011}}@media print{html .list-group-item-gray,html[data-netbox-color-mode=dark] .list-group-item-gray,html[data-netbox-color-mode=light] .list-group-item-gray{color:#525557;background-color:#f5f6f8}html .list-group-item-gray.list-group-item-action:hover,html .list-group-item-gray.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action:focus{color:#525557;background-color:#dddddf}html .list-group-item-gray.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}}@media print{html .list-group-item-gray-100,html[data-netbox-color-mode=dark] .list-group-item-gray-100,html[data-netbox-color-mode=light] .list-group-item-gray-100{color:#636464;background-color:#fefefe}html .list-group-item-gray-100.list-group-item-action:hover,html .list-group-item-gray-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}html .list-group-item-gray-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}}@media print{html .list-group-item-gray-200,html[data-netbox-color-mode=dark] .list-group-item-gray-200,html[data-netbox-color-mode=light] .list-group-item-gray-200{color:#5d5e60;background-color:#fbfbfc}html .list-group-item-gray-200.list-group-item-action:hover,html .list-group-item-gray-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action:focus{color:#5d5e60;background-color:#e2e2e3}html .list-group-item-gray-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#5d5e60;border-color:#5d5e60}}@media print{html .list-group-item-gray-300,html[data-netbox-color-mode=dark] .list-group-item-gray-300,html[data-netbox-color-mode=light] .list-group-item-gray-300{color:#595a5c;background-color:#f8f9fa}html .list-group-item-gray-300.list-group-item-action:hover,html .list-group-item-gray-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}html .list-group-item-gray-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}}@media print{html .list-group-item-gray-400,html[data-netbox-color-mode=dark] .list-group-item-gray-400,html[data-netbox-color-mode=light] .list-group-item-gray-400{color:#525557;background-color:#f5f6f8}html .list-group-item-gray-400.list-group-item-action:hover,html .list-group-item-gray-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action:focus{color:#525557;background-color:#dddddf}html .list-group-item-gray-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#525557;border-color:#525557}}@media print{html .list-group-item-gray-500,html[data-netbox-color-mode=dark] .list-group-item-gray-500,html[data-netbox-color-mode=light] .list-group-item-gray-500{color:#686d71;background-color:#eff0f2}html .list-group-item-gray-500.list-group-item-action:hover,html .list-group-item-gray-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action:focus{color:#686d71;background-color:#d7d8da}html .list-group-item-gray-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#686d71;border-color:#686d71}}@media print{html .list-group-item-gray-600,html[data-netbox-color-mode=dark] .list-group-item-gray-600,html[data-netbox-color-mode=light] .list-group-item-gray-600{color:#41464b;background-color:#e2e3e5}html .list-group-item-gray-600.list-group-item-action:hover,html .list-group-item-gray-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action:focus{color:#41464b;background-color:#cbccce}html .list-group-item-gray-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}}@media print{html .list-group-item-gray-700,html[data-netbox-color-mode=dark] .list-group-item-gray-700,html[data-netbox-color-mode=light] .list-group-item-gray-700{color:#2c3034;background-color:#dbdcdd}html .list-group-item-gray-700.list-group-item-action:hover,html .list-group-item-gray-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action:focus{color:#2c3034;background-color:#c5c6c7}html .list-group-item-gray-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}}@media print{html .list-group-item-gray-800,html[data-netbox-color-mode=dark] .list-group-item-gray-800,html[data-netbox-color-mode=light] .list-group-item-gray-800{color:#1f2326;background-color:#d6d8d9}html .list-group-item-gray-800.list-group-item-action:hover,html .list-group-item-gray-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action:focus{color:#1f2326;background-color:#c1c2c3}html .list-group-item-gray-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#1f2326;border-color:#1f2326}}@media print{html .list-group-item-gray-900,html[data-netbox-color-mode=dark] .list-group-item-gray-900,html[data-netbox-color-mode=light] .list-group-item-gray-900{color:#141619;background-color:#d3d3d4}html .list-group-item-gray-900.list-group-item-action:hover,html .list-group-item-gray-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action:focus{color:#141619;background-color:#bebebf}html .list-group-item-gray-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-gray-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}}@media print{html .list-group-item-red-100,html[data-netbox-color-mode=dark] .list-group-item-red-100,html[data-netbox-color-mode=light] .list-group-item-red-100{color:#635657;background-color:#fef7f8}html .list-group-item-red-100.list-group-item-action:hover,html .list-group-item-red-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action:focus{color:#635657;background-color:#e5dedf}html .list-group-item-red-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-100.list-group-item-action.active{color:#fff;background-color:#635657;border-color:#635657}}@media print{html .list-group-item-red-200,html[data-netbox-color-mode=dark] .list-group-item-red-200,html[data-netbox-color-mode=light] .list-group-item-red-200{color:#604648;background-color:#fceff0}html .list-group-item-red-200.list-group-item-action:hover,html .list-group-item-red-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action:focus{color:#604648;background-color:#e3d7d8}html .list-group-item-red-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-200.list-group-item-action.active{color:#fff;background-color:#604648;border-color:#604648}}@media print{html .list-group-item-red-300,html[data-netbox-color-mode=dark] .list-group-item-red-300,html[data-netbox-color-mode=light] .list-group-item-red-300{color:#8c5056;background-color:#fbe7e9}html .list-group-item-red-300.list-group-item-action:hover,html .list-group-item-red-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action:focus{color:#8c5056;background-color:#e2d0d2}html .list-group-item-red-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-300.list-group-item-action.active{color:#fff;background-color:#8c5056;border-color:#8c5056}}@media print{html .list-group-item-red-400,html[data-netbox-color-mode=dark] .list-group-item-red-400,html[data-netbox-color-mode=light] .list-group-item-red-400{color:#883840;background-color:#f9dfe1}html .list-group-item-red-400.list-group-item-action:hover,html .list-group-item-red-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action:focus{color:#883840;background-color:#e0c9cb}html .list-group-item-red-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-400.list-group-item-action.active{color:#fff;background-color:#883840;border-color:#883840}}@media print{html .list-group-item-red-500,html[data-netbox-color-mode=dark] .list-group-item-red-500,html[data-netbox-color-mode=light] .list-group-item-red-500{color:#842029;background-color:#f8d7da}html .list-group-item-red-500.list-group-item-action:hover,html .list-group-item-red-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}html .list-group-item-red-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-500.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}}@media print{html .list-group-item-red-600,html[data-netbox-color-mode=dark] .list-group-item-red-600,html[data-netbox-color-mode=light] .list-group-item-red-600{color:#6a1921;background-color:#efd4d7}html .list-group-item-red-600.list-group-item-action:hover,html .list-group-item-red-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action:focus{color:#6a1921;background-color:#d7bfc2}html .list-group-item-red-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-600.list-group-item-action.active{color:#fff;background-color:#6a1921;border-color:#6a1921}}@media print{html .list-group-item-red-700,html[data-netbox-color-mode=dark] .list-group-item-red-700,html[data-netbox-color-mode=light] .list-group-item-red-700{color:#4f1319;background-color:#e6d2d4}html .list-group-item-red-700.list-group-item-action:hover,html .list-group-item-red-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action:focus{color:#4f1319;background-color:#cfbdbf}html .list-group-item-red-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-700.list-group-item-action.active{color:#fff;background-color:#4f1319;border-color:#4f1319}}@media print{html .list-group-item-red-800,html[data-netbox-color-mode=dark] .list-group-item-red-800,html[data-netbox-color-mode=light] .list-group-item-red-800{color:#350d11;background-color:#ded0d2}html .list-group-item-red-800.list-group-item-action:hover,html .list-group-item-red-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action:focus{color:#350d11;background-color:#c8bbbd}html .list-group-item-red-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-800.list-group-item-action.active{color:#fff;background-color:#350d11;border-color:#350d11}}@media print{html .list-group-item-red-900,html[data-netbox-color-mode=dark] .list-group-item-red-900,html[data-netbox-color-mode=light] .list-group-item-red-900{color:#1a0708;background-color:#d5cecf}html .list-group-item-red-900.list-group-item-action:hover,html .list-group-item-red-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action:focus{color:#1a0708;background-color:#c0b9ba}html .list-group-item-red-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-red-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-red-900.list-group-item-action.active{color:#fff;background-color:#1a0708;border-color:#1a0708}}@media print{html .list-group-item-yellow-100,html[data-netbox-color-mode=dark] .list-group-item-yellow-100,html[data-netbox-color-mode=light] .list-group-item-yellow-100{color:#666152;background-color:#fffdf5}html .list-group-item-yellow-100.list-group-item-action:hover,html .list-group-item-yellow-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action:focus{color:#666152;background-color:#e6e4dd}html .list-group-item-yellow-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-100.list-group-item-action.active{color:#fff;background-color:#666152;border-color:#666152}}@media print{html .list-group-item-yellow-200,html[data-netbox-color-mode=dark] .list-group-item-yellow-200,html[data-netbox-color-mode=light] .list-group-item-yellow-200{color:#665c3e;background-color:#fffaeb}html .list-group-item-yellow-200.list-group-item-action:hover,html .list-group-item-yellow-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action:focus{color:#665c3e;background-color:#e6e1d4}html .list-group-item-yellow-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-200.list-group-item-action.active{color:#fff;background-color:#665c3e;border-color:#665c3e}}@media print{html .list-group-item-yellow-300,html[data-netbox-color-mode=dark] .list-group-item-yellow-300,html[data-netbox-color-mode=light] .list-group-item-yellow-300{color:#66572a;background-color:#fff8e1}html .list-group-item-yellow-300.list-group-item-action:hover,html .list-group-item-yellow-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action:focus{color:#66572a;background-color:#e6dfcb}html .list-group-item-yellow-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-300.list-group-item-action.active{color:#fff;background-color:#66572a;border-color:#66572a}}@media print{html .list-group-item-yellow-400,html[data-netbox-color-mode=dark] .list-group-item-yellow-400,html[data-netbox-color-mode=light] .list-group-item-yellow-400{color:#665217;background-color:#fff5d7}html .list-group-item-yellow-400.list-group-item-action:hover,html .list-group-item-yellow-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action:focus{color:#665217;background-color:#e6ddc2}html .list-group-item-yellow-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-400.list-group-item-action.active{color:#fff;background-color:#665217;border-color:#665217}}@media print{html .list-group-item-yellow-500,html[data-netbox-color-mode=dark] .list-group-item-yellow-500,html[data-netbox-color-mode=light] .list-group-item-yellow-500{color:#664d03;background-color:#fff3cd}html .list-group-item-yellow-500.list-group-item-action:hover,html .list-group-item-yellow-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}html .list-group-item-yellow-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-500.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}}@media print{html .list-group-item-yellow-600,html[data-netbox-color-mode=dark] .list-group-item-yellow-600,html[data-netbox-color-mode=light] .list-group-item-yellow-600{color:#7a5c04;background-color:#f5ebcd}html .list-group-item-yellow-600.list-group-item-action:hover,html .list-group-item-yellow-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action:focus{color:#7a5c04;background-color:#ddd4b9}html .list-group-item-yellow-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-600.list-group-item-action.active{color:#fff;background-color:#7a5c04;border-color:#7a5c04}}@media print{html .list-group-item-yellow-700,html[data-netbox-color-mode=dark] .list-group-item-yellow-700,html[data-netbox-color-mode=light] .list-group-item-yellow-700{color:#5c4602;background-color:#ebe3cd}html .list-group-item-yellow-700.list-group-item-action:hover,html .list-group-item-yellow-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action:focus{color:#5c4602;background-color:#d4ccb9}html .list-group-item-yellow-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-700.list-group-item-action.active{color:#fff;background-color:#5c4602;border-color:#5c4602}}@media print{html .list-group-item-yellow-800,html[data-netbox-color-mode=dark] .list-group-item-yellow-800,html[data-netbox-color-mode=light] .list-group-item-yellow-800{color:#3d2e02;background-color:#e0dbcd}html .list-group-item-yellow-800.list-group-item-action:hover,html .list-group-item-yellow-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action:focus{color:#3d2e02;background-color:#cac5b9}html .list-group-item-yellow-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-800.list-group-item-action.active{color:#fff;background-color:#3d2e02;border-color:#3d2e02}}@media print{html .list-group-item-yellow-900,html[data-netbox-color-mode=dark] .list-group-item-yellow-900,html[data-netbox-color-mode=light] .list-group-item-yellow-900{color:#1f1701;background-color:#d6d4cc}html .list-group-item-yellow-900.list-group-item-action:hover,html .list-group-item-yellow-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action:focus{color:#1f1701;background-color:#c1bfb8}html .list-group-item-yellow-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-yellow-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-yellow-900.list-group-item-action.active{color:#fff;background-color:#1f1701;border-color:#1f1701}}@media print{html .list-group-item-green-100,html[data-netbox-color-mode=dark] .list-group-item-green-100,html[data-netbox-color-mode=light] .list-group-item-green-100{color:#545c58;background-color:#f6faf8}html .list-group-item-green-100.list-group-item-action:hover,html .list-group-item-green-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action:focus{color:#545c58;background-color:#dde1df}html .list-group-item-green-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-100.list-group-item-action.active{color:#fff;background-color:#545c58;border-color:#545c58}}@media print{html .list-group-item-green-200,html[data-netbox-color-mode=dark] .list-group-item-green-200,html[data-netbox-color-mode=light] .list-group-item-green-200{color:#41534b;background-color:#edf5f1}html .list-group-item-green-200.list-group-item-action:hover,html .list-group-item-green-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action:focus{color:#41534b;background-color:#d5ddd9}html .list-group-item-green-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-200.list-group-item-action.active{color:#fff;background-color:#41534b;border-color:#41534b}}@media print{html .list-group-item-green-300,html[data-netbox-color-mode=dark] .list-group-item-green-300,html[data-netbox-color-mode=light] .list-group-item-green-300{color:#466e5b;background-color:#e3f1ea}html .list-group-item-green-300.list-group-item-action:hover,html .list-group-item-green-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action:focus{color:#466e5b;background-color:#ccd9d3}html .list-group-item-green-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-300.list-group-item-action.active{color:#fff;background-color:#466e5b;border-color:#466e5b}}@media print{html .list-group-item-green-400,html[data-netbox-color-mode=dark] .list-group-item-green-400,html[data-netbox-color-mode=light] .list-group-item-green-400{color:#2b5f47;background-color:#daece4}html .list-group-item-green-400.list-group-item-action:hover,html .list-group-item-green-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action:focus{color:#2b5f47;background-color:#c4d4cd}html .list-group-item-green-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-400.list-group-item-action.active{color:#fff;background-color:#2b5f47;border-color:#2b5f47}}@media print{html .list-group-item-green-500,html[data-netbox-color-mode=dark] .list-group-item-green-500,html[data-netbox-color-mode=light] .list-group-item-green-500{color:#0f5132;background-color:#d1e7dd}html .list-group-item-green-500.list-group-item-action:hover,html .list-group-item-green-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}html .list-group-item-green-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-500.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}}@media print{html .list-group-item-green-600,html[data-netbox-color-mode=dark] .list-group-item-green-600,html[data-netbox-color-mode=light] .list-group-item-green-600{color:#0c4128;background-color:#d0e2d9}html .list-group-item-green-600.list-group-item-action:hover,html .list-group-item-green-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action:focus{color:#0c4128;background-color:#bbcbc3}html .list-group-item-green-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-600.list-group-item-action.active{color:#fff;background-color:#0c4128;border-color:#0c4128}}@media print{html .list-group-item-green-700,html[data-netbox-color-mode=dark] .list-group-item-green-700,html[data-netbox-color-mode=light] .list-group-item-green-700{color:#09311e;background-color:#cfdcd6}html .list-group-item-green-700.list-group-item-action:hover,html .list-group-item-green-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action:focus{color:#09311e;background-color:#bac6c1}html .list-group-item-green-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-700.list-group-item-action.active{color:#fff;background-color:#09311e;border-color:#09311e}}@media print{html .list-group-item-green-800,html[data-netbox-color-mode=dark] .list-group-item-green-800,html[data-netbox-color-mode=light] .list-group-item-green-800{color:#062014;background-color:#ced7d3}html .list-group-item-green-800.list-group-item-action:hover,html .list-group-item-green-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action:focus{color:#062014;background-color:#b9c2be}html .list-group-item-green-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-800.list-group-item-action.active{color:#fff;background-color:#062014;border-color:#062014}}@media print{html .list-group-item-green-900,html[data-netbox-color-mode=dark] .list-group-item-green-900,html[data-netbox-color-mode=light] .list-group-item-green-900{color:#03100a;background-color:#cdd1cf}html .list-group-item-green-900.list-group-item-action:hover,html .list-group-item-green-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action:focus{color:#03100a;background-color:#b9bcba}html .list-group-item-green-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-green-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-green-900.list-group-item-action.active{color:#fff;background-color:#03100a;border-color:#03100a}}@media print{html .list-group-item-blue-100,html[data-netbox-color-mode=dark] .list-group-item-blue-100,html[data-netbox-color-mode=light] .list-group-item-blue-100{color:#535a66;background-color:#f5f9ff}html .list-group-item-blue-100.list-group-item-action:hover,html .list-group-item-blue-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action:focus{color:#535a66;background-color:#dde0e6}html .list-group-item-blue-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-100.list-group-item-action.active{color:#fff;background-color:#535a66;border-color:#535a66}}@media print{html .list-group-item-blue-200,html[data-netbox-color-mode=dark] .list-group-item-blue-200,html[data-netbox-color-mode=light] .list-group-item-blue-200{color:#3f4f66;background-color:#ecf3ff}html .list-group-item-blue-200.list-group-item-action:hover,html .list-group-item-blue-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action:focus{color:#3f4f66;background-color:#d4dbe6}html .list-group-item-blue-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-200.list-group-item-action.active{color:#fff;background-color:#3f4f66;border-color:#3f4f66}}@media print{html .list-group-item-blue-300,html[data-netbox-color-mode=dark] .list-group-item-blue-300,html[data-netbox-color-mode=light] .list-group-item-blue-300{color:#426598;background-color:#e2eeff}html .list-group-item-blue-300.list-group-item-action:hover,html .list-group-item-blue-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action:focus{color:#426598;background-color:#cbd6e6}html .list-group-item-blue-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-300.list-group-item-action.active{color:#fff;background-color:#426598;border-color:#426598}}@media print{html .list-group-item-blue-400,html[data-netbox-color-mode=dark] .list-group-item-blue-400,html[data-netbox-color-mode=light] .list-group-item-blue-400{color:#255398;background-color:#d8e8ff}html .list-group-item-blue-400.list-group-item-action:hover,html .list-group-item-blue-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action:focus{color:#255398;background-color:#c2d1e6}html .list-group-item-blue-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-400.list-group-item-action.active{color:#fff;background-color:#255398;border-color:#255398}}@media print{html .list-group-item-blue-500,html[data-netbox-color-mode=dark] .list-group-item-blue-500,html[data-netbox-color-mode=light] .list-group-item-blue-500{color:#084298;background-color:#cfe2ff}html .list-group-item-blue-500.list-group-item-action:hover,html .list-group-item-blue-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action:focus{color:#084298;background-color:#bacbe6}html .list-group-item-blue-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-500.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}}@media print{html .list-group-item-blue-600,html[data-netbox-color-mode=dark] .list-group-item-blue-600,html[data-netbox-color-mode=light] .list-group-item-blue-600{color:#063579;background-color:#cedef4}html .list-group-item-blue-600.list-group-item-action:hover,html .list-group-item-blue-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action:focus{color:#063579;background-color:#b9c8dc}html .list-group-item-blue-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-600.list-group-item-action.active{color:#fff;background-color:#063579;border-color:#063579}}@media print{html .list-group-item-blue-700,html[data-netbox-color-mode=dark] .list-group-item-blue-700,html[data-netbox-color-mode=light] .list-group-item-blue-700{color:#05285b;background-color:#ced9ea}html .list-group-item-blue-700.list-group-item-action:hover,html .list-group-item-blue-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action:focus{color:#05285b;background-color:#b9c3d3}html .list-group-item-blue-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-700.list-group-item-action.active{color:#fff;background-color:#05285b;border-color:#05285b}}@media print{html .list-group-item-blue-800,html[data-netbox-color-mode=dark] .list-group-item-blue-800,html[data-netbox-color-mode=light] .list-group-item-blue-800{color:#031a3d;background-color:#cdd5e0}html .list-group-item-blue-800.list-group-item-action:hover,html .list-group-item-blue-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action:focus{color:#031a3d;background-color:#b9c0ca}html .list-group-item-blue-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-800.list-group-item-action.active{color:#fff;background-color:#031a3d;border-color:#031a3d}}@media print{html .list-group-item-blue-900,html[data-netbox-color-mode=dark] .list-group-item-blue-900,html[data-netbox-color-mode=light] .list-group-item-blue-900{color:#020d1f;background-color:#cdd0d6}html .list-group-item-blue-900.list-group-item-action:hover,html .list-group-item-blue-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action:focus{color:#020d1f;background-color:#b9bbc1}html .list-group-item-blue-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-blue-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-blue-900.list-group-item-action.active{color:#fff;background-color:#020d1f;border-color:#020d1f}}@media print{html .list-group-item-cyan-100,html[data-netbox-color-mode=dark] .list-group-item-cyan-100,html[data-netbox-color-mode=light] .list-group-item-cyan-100{color:#536265;background-color:#f5fdfe}html .list-group-item-cyan-100.list-group-item-action:hover,html .list-group-item-cyan-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action:focus{color:#536265;background-color:#dde4e5}html .list-group-item-cyan-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-100.list-group-item-action.active{color:#fff;background-color:#536265;border-color:#536265}}@media print{html .list-group-item-cyan-200,html[data-netbox-color-mode=dark] .list-group-item-cyan-200,html[data-netbox-color-mode=light] .list-group-item-cyan-200{color:#3f5e64;background-color:#ecfbfe}html .list-group-item-cyan-200.list-group-item-action:hover,html .list-group-item-cyan-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action:focus{color:#3f5e64;background-color:#d4e2e5}html .list-group-item-cyan-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-200.list-group-item-action.active{color:#fff;background-color:#3f5e64;border-color:#3f5e64}}@media print{html .list-group-item-cyan-300,html[data-netbox-color-mode=dark] .list-group-item-cyan-300,html[data-netbox-color-mode=light] .list-group-item-cyan-300{color:#2c5962;background-color:#e2f9fd}html .list-group-item-cyan-300.list-group-item-action:hover,html .list-group-item-cyan-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action:focus{color:#2c5962;background-color:#cbe0e4}html .list-group-item-cyan-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-300.list-group-item-action.active{color:#fff;background-color:#2c5962;border-color:#2c5962}}@media print{html .list-group-item-cyan-400,html[data-netbox-color-mode=dark] .list-group-item-cyan-400,html[data-netbox-color-mode=light] .list-group-item-cyan-400{color:#185561;background-color:#d8f7fd}html .list-group-item-cyan-400.list-group-item-action:hover,html .list-group-item-cyan-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action:focus{color:#185561;background-color:#c2dee4}html .list-group-item-cyan-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-400.list-group-item-action.active{color:#fff;background-color:#185561;border-color:#185561}}@media print{html .list-group-item-cyan-500,html[data-netbox-color-mode=dark] .list-group-item-cyan-500,html[data-netbox-color-mode=light] .list-group-item-cyan-500{color:#055160;background-color:#cff4fc}html .list-group-item-cyan-500.list-group-item-action:hover,html .list-group-item-cyan-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action:focus{color:#055160;background-color:#badce3}html .list-group-item-cyan-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-500.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}}@media print{html .list-group-item-cyan-600,html[data-netbox-color-mode=dark] .list-group-item-cyan-600,html[data-netbox-color-mode=light] .list-group-item-cyan-600{color:#066173;background-color:#ceecf2}html .list-group-item-cyan-600.list-group-item-action:hover,html .list-group-item-cyan-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action:focus{color:#066173;background-color:#b9d4da}html .list-group-item-cyan-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-600.list-group-item-action.active{color:#fff;background-color:#066173;border-color:#066173}}@media print{html .list-group-item-cyan-700,html[data-netbox-color-mode=dark] .list-group-item-cyan-700,html[data-netbox-color-mode=light] .list-group-item-cyan-700{color:#054956;background-color:#cee4e9}html .list-group-item-cyan-700.list-group-item-action:hover,html .list-group-item-cyan-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action:focus{color:#054956;background-color:#b9cdd2}html .list-group-item-cyan-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-700.list-group-item-action.active{color:#fff;background-color:#054956;border-color:#054956}}@media print{html .list-group-item-cyan-800,html[data-netbox-color-mode=dark] .list-group-item-cyan-800,html[data-netbox-color-mode=light] .list-group-item-cyan-800{color:#03313a;background-color:#cddcdf}html .list-group-item-cyan-800.list-group-item-action:hover,html .list-group-item-cyan-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action:focus{color:#03313a;background-color:#b9c6c9}html .list-group-item-cyan-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-800.list-group-item-action.active{color:#fff;background-color:#03313a;border-color:#03313a}}@media print{html .list-group-item-cyan-900,html[data-netbox-color-mode=dark] .list-group-item-cyan-900,html[data-netbox-color-mode=light] .list-group-item-cyan-900{color:#02181d;background-color:#cdd4d6}html .list-group-item-cyan-900.list-group-item-action:hover,html .list-group-item-cyan-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action:focus{color:#02181d;background-color:#b9bfc1}html .list-group-item-cyan-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-cyan-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-cyan-900.list-group-item-action.active{color:#fff;background-color:#02181d;border-color:#02181d}}@media print{html .list-group-item-indigo-100,html[data-netbox-color-mode=dark] .list-group-item-indigo-100,html[data-netbox-color-mode=light] .list-group-item-indigo-100{color:#5a5365;background-color:#f9f5fe}html .list-group-item-indigo-100.list-group-item-action:hover,html .list-group-item-indigo-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action:focus{color:#5a5365;background-color:#e0dde5}html .list-group-item-indigo-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-100.list-group-item-action.active{color:#fff;background-color:#5a5365;border-color:#5a5365}}@media print{html .list-group-item-indigo-200,html[data-netbox-color-mode=dark] .list-group-item-indigo-200,html[data-netbox-color-mode=light] .list-group-item-indigo-200{color:#745f96;background-color:#f3ecfe}html .list-group-item-indigo-200.list-group-item-action:hover,html .list-group-item-indigo-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action:focus{color:#745f96;background-color:#dbd4e5}html .list-group-item-indigo-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-200.list-group-item-action.active{color:#fff;background-color:#745f96;border-color:#745f96}}@media print{html .list-group-item-indigo-300,html[data-netbox-color-mode=dark] .list-group-item-indigo-300,html[data-netbox-color-mode=light] .list-group-item-indigo-300{color:#624394;background-color:#ede2fd}html .list-group-item-indigo-300.list-group-item-action:hover,html .list-group-item-indigo-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action:focus{color:#624394;background-color:#d5cbe4}html .list-group-item-indigo-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-300.list-group-item-action.active{color:#fff;background-color:#624394;border-color:#624394}}@media print{html .list-group-item-indigo-400,html[data-netbox-color-mode=dark] .list-group-item-indigo-400,html[data-netbox-color-mode=light] .list-group-item-indigo-400{color:#502693;background-color:#e7d9fd}html .list-group-item-indigo-400.list-group-item-action:hover,html .list-group-item-indigo-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action:focus{color:#502693;background-color:#d0c3e4}html .list-group-item-indigo-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-400.list-group-item-action.active{color:#fff;background-color:#502693;border-color:#502693}}@media print{html .list-group-item-indigo-500,html[data-netbox-color-mode=dark] .list-group-item-indigo-500,html[data-netbox-color-mode=light] .list-group-item-indigo-500{color:#3d0a91;background-color:#e0cffc}html .list-group-item-indigo-500.list-group-item-action:hover,html .list-group-item-indigo-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action:focus{color:#3d0a91;background-color:#cabae3}html .list-group-item-indigo-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-500.list-group-item-action.active{color:#fff;background-color:#3d0a91;border-color:#3d0a91}}@media print{html .list-group-item-indigo-600,html[data-netbox-color-mode=dark] .list-group-item-indigo-600,html[data-netbox-color-mode=light] .list-group-item-indigo-600{color:#310874;background-color:#dccff3}html .list-group-item-indigo-600.list-group-item-action:hover,html .list-group-item-indigo-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action:focus{color:#310874;background-color:#c6badb}html .list-group-item-indigo-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-600.list-group-item-action.active{color:#fff;background-color:#310874;border-color:#310874}}@media print{html .list-group-item-indigo-700,html[data-netbox-color-mode=dark] .list-group-item-indigo-700,html[data-netbox-color-mode=light] .list-group-item-indigo-700{color:#250657;background-color:#d8cee9}html .list-group-item-indigo-700.list-group-item-action:hover,html .list-group-item-indigo-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action:focus{color:#250657;background-color:#c2b9d2}html .list-group-item-indigo-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-700.list-group-item-action.active{color:#fff;background-color:#250657;border-color:#250657}}@media print{html .list-group-item-indigo-800,html[data-netbox-color-mode=dark] .list-group-item-indigo-800,html[data-netbox-color-mode=light] .list-group-item-indigo-800{color:#19043a;background-color:#d4cddf}html .list-group-item-indigo-800.list-group-item-action:hover,html .list-group-item-indigo-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action:focus{color:#19043a;background-color:#bfb9c9}html .list-group-item-indigo-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-800.list-group-item-action.active{color:#fff;background-color:#19043a;border-color:#19043a}}@media print{html .list-group-item-indigo-900,html[data-netbox-color-mode=dark] .list-group-item-indigo-900,html[data-netbox-color-mode=light] .list-group-item-indigo-900{color:#0c021d;background-color:#d0cdd6}html .list-group-item-indigo-900.list-group-item-action:hover,html .list-group-item-indigo-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action:focus{color:#0c021d;background-color:#bbb9c1}html .list-group-item-indigo-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-indigo-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-indigo-900.list-group-item-action.active{color:#fff;background-color:#0c021d;border-color:#0c021d}}@media print{html .list-group-item-purple-100,html[data-netbox-color-mode=dark] .list-group-item-purple-100,html[data-netbox-color-mode=light] .list-group-item-purple-100{color:#5a5761;background-color:#f9f7fd}html .list-group-item-purple-100.list-group-item-action:hover,html .list-group-item-purple-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action:focus{color:#5a5761;background-color:#e0dee4}html .list-group-item-purple-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-100.list-group-item-action.active{color:#fff;background-color:#5a5761;border-color:#5a5761}}@media print{html .list-group-item-purple-200,html[data-netbox-color-mode=dark] .list-group-item-purple-200,html[data-netbox-color-mode=light] .list-group-item-purple-200{color:#4f485c;background-color:#f3f0fa}html .list-group-item-purple-200.list-group-item-action:hover,html .list-group-item-purple-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action:focus{color:#4f485c;background-color:#dbd8e1}html .list-group-item-purple-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-200.list-group-item-action.active{color:#fff;background-color:#4f485c;border-color:#4f485c}}@media print{html .list-group-item-purple-300,html[data-netbox-color-mode=dark] .list-group-item-purple-300,html[data-netbox-color-mode=light] .list-group-item-purple-300{color:#655583;background-color:#eee8f8}html .list-group-item-purple-300.list-group-item-action:hover,html .list-group-item-purple-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action:focus{color:#655583;background-color:#d6d1df}html .list-group-item-purple-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-300.list-group-item-action.active{color:#fff;background-color:#655583;border-color:#655583}}@media print{html .list-group-item-purple-400,html[data-netbox-color-mode=dark] .list-group-item-purple-400,html[data-netbox-color-mode=light] .list-group-item-purple-400{color:#543e7b;background-color:#e8e1f5}html .list-group-item-purple-400.list-group-item-action:hover,html .list-group-item-purple-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action:focus{color:#543e7b;background-color:#d1cbdd}html .list-group-item-purple-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-400.list-group-item-action.active{color:#fff;background-color:#543e7b;border-color:#543e7b}}@media print{html .list-group-item-purple-500,html[data-netbox-color-mode=dark] .list-group-item-purple-500,html[data-netbox-color-mode=light] .list-group-item-purple-500{color:#432874;background-color:#e2d9f3}html .list-group-item-purple-500.list-group-item-action:hover,html .list-group-item-purple-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action:focus{color:#432874;background-color:#cbc3db}html .list-group-item-purple-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-500.list-group-item-action.active{color:#fff;background-color:#432874;border-color:#432874}}@media print{html .list-group-item-purple-600,html[data-netbox-color-mode=dark] .list-group-item-purple-600,html[data-netbox-color-mode=light] .list-group-item-purple-600{color:#35205c;background-color:#ded7eb}html .list-group-item-purple-600.list-group-item-action:hover,html .list-group-item-purple-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action:focus{color:#35205c;background-color:#c8c2d4}html .list-group-item-purple-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-600.list-group-item-action.active{color:#fff;background-color:#35205c;border-color:#35205c}}@media print{html .list-group-item-purple-700,html[data-netbox-color-mode=dark] .list-group-item-purple-700,html[data-netbox-color-mode=light] .list-group-item-purple-700{color:#281846;background-color:#d9d4e3}html .list-group-item-purple-700.list-group-item-action:hover,html .list-group-item-purple-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action:focus{color:#281846;background-color:#c3bfcc}html .list-group-item-purple-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-700.list-group-item-action.active{color:#fff;background-color:#281846;border-color:#281846}}@media print{html .list-group-item-purple-800,html[data-netbox-color-mode=dark] .list-group-item-purple-800,html[data-netbox-color-mode=light] .list-group-item-purple-800{color:#1a102e;background-color:#d5d1db}html .list-group-item-purple-800.list-group-item-action:hover,html .list-group-item-purple-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action:focus{color:#1a102e;background-color:#c0bcc5}html .list-group-item-purple-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-800.list-group-item-action.active{color:#fff;background-color:#1a102e;border-color:#1a102e}}@media print{html .list-group-item-purple-900,html[data-netbox-color-mode=dark] .list-group-item-purple-900,html[data-netbox-color-mode=light] .list-group-item-purple-900{color:#0d0817;background-color:#d0cfd4}html .list-group-item-purple-900.list-group-item-action:hover,html .list-group-item-purple-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action:focus{color:#0d0817;background-color:#bbbabf}html .list-group-item-purple-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-purple-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-purple-900.list-group-item-action.active{color:#fff;background-color:#0d0817;border-color:#0d0817}}@media print{html .list-group-item-pink-100,html[data-netbox-color-mode=dark] .list-group-item-pink-100,html[data-netbox-color-mode=light] .list-group-item-pink-100{color:#63565c;background-color:#fdf7fa}html .list-group-item-pink-100.list-group-item-action:hover,html .list-group-item-pink-100.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action:focus{color:#63565c;background-color:#e4dee1}html .list-group-item-pink-100.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-100.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-100.list-group-item-action.active{color:#fff;background-color:#63565c;border-color:#63565c}}@media print{html .list-group-item-pink-200,html[data-netbox-color-mode=dark] .list-group-item-pink-200,html[data-netbox-color-mode=light] .list-group-item-pink-200{color:#604552;background-color:#fceff5}html .list-group-item-pink-200.list-group-item-action:hover,html .list-group-item-pink-200.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action:focus{color:#604552;background-color:#e3d7dd}html .list-group-item-pink-200.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-200.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-200.list-group-item-action.active{color:#fff;background-color:#604552;border-color:#604552}}@media print{html .list-group-item-pink-300,html[data-netbox-color-mode=dark] .list-group-item-pink-300,html[data-netbox-color-mode=light] .list-group-item-pink-300{color:#8a506d;background-color:#fae7f0}html .list-group-item-pink-300.list-group-item-action:hover,html .list-group-item-pink-300.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action:focus{color:#8a506d;background-color:#e1d0d8}html .list-group-item-pink-300.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-300.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-300.list-group-item-action.active{color:#fff;background-color:#8a506d;border-color:#8a506d}}@media print{html .list-group-item-pink-400,html[data-netbox-color-mode=dark] .list-group-item-pink-400,html[data-netbox-color-mode=light] .list-group-item-pink-400{color:#85375e;background-color:#f8deeb}html .list-group-item-pink-400.list-group-item-action:hover,html .list-group-item-pink-400.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action:focus{color:#85375e;background-color:#dfc8d4}html .list-group-item-pink-400.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-400.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-400.list-group-item-action.active{color:#fff;background-color:#85375e;border-color:#85375e}}@media print{html .list-group-item-pink-500,html[data-netbox-color-mode=dark] .list-group-item-pink-500,html[data-netbox-color-mode=light] .list-group-item-pink-500{color:#801f4f;background-color:#f7d6e6}html .list-group-item-pink-500.list-group-item-action:hover,html .list-group-item-pink-500.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action:focus{color:#801f4f;background-color:#dec1cf}html .list-group-item-pink-500.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-500.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-500.list-group-item-action.active{color:#fff;background-color:#801f4f;border-color:#801f4f}}@media print{html .list-group-item-pink-600,html[data-netbox-color-mode=dark] .list-group-item-pink-600,html[data-netbox-color-mode=light] .list-group-item-pink-600{color:#671940;background-color:#eed4e1}html .list-group-item-pink-600.list-group-item-action:hover,html .list-group-item-pink-600.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action:focus{color:#671940;background-color:#d6bfcb}html .list-group-item-pink-600.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-600.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-600.list-group-item-action.active{color:#fff;background-color:#671940;border-color:#671940}}@media print{html .list-group-item-pink-700,html[data-netbox-color-mode=dark] .list-group-item-pink-700,html[data-netbox-color-mode=light] .list-group-item-pink-700{color:#4d132f;background-color:#e6d2dc}html .list-group-item-pink-700.list-group-item-action:hover,html .list-group-item-pink-700.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action:focus{color:#4d132f;background-color:#cfbdc6}html .list-group-item-pink-700.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-700.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-700.list-group-item-action.active{color:#fff;background-color:#4d132f;border-color:#4d132f}}@media print{html .list-group-item-pink-800,html[data-netbox-color-mode=dark] .list-group-item-pink-800,html[data-netbox-color-mode=light] .list-group-item-pink-800{color:#340c20;background-color:#ddd0d7}html .list-group-item-pink-800.list-group-item-action:hover,html .list-group-item-pink-800.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action:focus{color:#340c20;background-color:#c7bbc2}html .list-group-item-pink-800.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-800.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-800.list-group-item-action.active{color:#fff;background-color:#340c20;border-color:#340c20}}@media print{html .list-group-item-pink-900,html[data-netbox-color-mode=dark] .list-group-item-pink-900,html[data-netbox-color-mode=light] .list-group-item-pink-900{color:#1a0610;background-color:#d5ced1}html .list-group-item-pink-900.list-group-item-action:hover,html .list-group-item-pink-900.list-group-item-action:focus,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action:focus,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action:hover,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action:focus{color:#1a0610;background-color:#c0b9bc}html .list-group-item-pink-900.list-group-item-action.active,html[data-netbox-color-mode=dark] .list-group-item-pink-900.list-group-item-action.active,html[data-netbox-color-mode=light] .list-group-item-pink-900.list-group-item-action.active{color:#fff;background-color:#1a0610;border-color:#1a0610}}@media print{html .btn-close,html[data-netbox-color-mode=dark] .btn-close,html[data-netbox-color-mode=light] .btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}html .btn-close:hover,html[data-netbox-color-mode=dark] .btn-close:hover,html[data-netbox-color-mode=light] .btn-close:hover{color:#000;text-decoration:none;opacity:.75}html .btn-close:focus,html[data-netbox-color-mode=dark] .btn-close:focus,html[data-netbox-color-mode=light] .btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}html .btn-close:disabled,html .btn-close.disabled,html[data-netbox-color-mode=dark] .btn-close:disabled,html[data-netbox-color-mode=dark] .btn-close.disabled,html[data-netbox-color-mode=light] .btn-close:disabled,html[data-netbox-color-mode=light] .btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}}@media print{html .btn-close-white,html[data-netbox-color-mode=dark] .btn-close-white,html[data-netbox-color-mode=light] .btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}}@media print{html .toast,html[data-netbox-color-mode=dark] .toast,html[data-netbox-color-mode=light] .toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:#ffffffd9;background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem #00000026;border-radius:.375rem}html .toast:not(.showing):not(.show),html[data-netbox-color-mode=dark] .toast:not(.showing):not(.show),html[data-netbox-color-mode=light] .toast:not(.showing):not(.show){opacity:0}html .toast.hide,html[data-netbox-color-mode=dark] .toast.hide,html[data-netbox-color-mode=light] .toast.hide{display:none}}@media print{html .toast-container,html[data-netbox-color-mode=dark] .toast-container,html[data-netbox-color-mode=light] .toast-container{width:max-content;max-width:100%;pointer-events:none}html .toast-container>:not(:last-child),html[data-netbox-color-mode=dark] .toast-container>:not(:last-child),html[data-netbox-color-mode=light] .toast-container>:not(:last-child){margin-bottom:.75rem}}@media print{html .toast-header,html[data-netbox-color-mode=dark] .toast-header,html[data-netbox-color-mode=light] .toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:#ffffffd9;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.375rem - 1px);border-top-right-radius:calc(.375rem - 1px)}html .toast-header .btn-close,html[data-netbox-color-mode=dark] .toast-header .btn-close,html[data-netbox-color-mode=light] .toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}}@media print{html .toast-body,html[data-netbox-color-mode=dark] .toast-body,html[data-netbox-color-mode=light] .toast-body{padding:.75rem;word-wrap:break-word}}@media print{html .modal,html[data-netbox-color-mode=dark] .modal,html[data-netbox-color-mode=light] .modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}}@media print{html .modal-dialog,html[data-netbox-color-mode=dark] .modal-dialog,html[data-netbox-color-mode=light] .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade html .modal-dialog,.modal.fade html[data-netbox-color-mode=dark] .modal-dialog,.modal.fade html[data-netbox-color-mode=light] .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}}@media print and (prefers-reduced-motion: reduce){.modal.fade html .modal-dialog,.modal.fade html[data-netbox-color-mode=dark] .modal-dialog,.modal.fade html[data-netbox-color-mode=light] .modal-dialog{transition:none}}@media print{.modal.show html .modal-dialog,.modal.show html[data-netbox-color-mode=dark] .modal-dialog,.modal.show html[data-netbox-color-mode=light] .modal-dialog{transform:none}}@media print{.modal.modal-static html .modal-dialog,.modal.modal-static html[data-netbox-color-mode=dark] .modal-dialog,.modal.modal-static html[data-netbox-color-mode=light] .modal-dialog{transform:scale(1.02)}}@media print{html .modal-dialog-scrollable,html[data-netbox-color-mode=dark] .modal-dialog-scrollable,html[data-netbox-color-mode=light] .modal-dialog-scrollable{height:calc(100% - 1rem)}html .modal-dialog-scrollable .modal-content,html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-content,html[data-netbox-color-mode=light] .modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}html .modal-dialog-scrollable .modal-body,html[data-netbox-color-mode=dark] .modal-dialog-scrollable .modal-body,html[data-netbox-color-mode=light] .modal-dialog-scrollable .modal-body{overflow-y:auto}}@media print{html .modal-dialog-centered,html[data-netbox-color-mode=dark] .modal-dialog-centered,html[data-netbox-color-mode=light] .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}}@media print{html .modal-content,html[data-netbox-color-mode=dark] .modal-content,html[data-netbox-color-mode=light] .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem;outline:0}}@media print{html .modal-backdrop,html[data-netbox-color-mode=dark] .modal-backdrop,html[data-netbox-color-mode=light] .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html .modal-backdrop.fade,html[data-netbox-color-mode=dark] .modal-backdrop.fade,html[data-netbox-color-mode=light] .modal-backdrop.fade{opacity:0}html .modal-backdrop.show,html[data-netbox-color-mode=dark] .modal-backdrop.show,html[data-netbox-color-mode=light] .modal-backdrop.show{opacity:.5}}@media print{html .modal-header,html[data-netbox-color-mode=dark] .modal-header,html[data-netbox-color-mode=light] .modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html .modal-header .btn-close,html[data-netbox-color-mode=dark] .modal-header .btn-close,html[data-netbox-color-mode=light] .modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}}@media print{html .modal-title,html[data-netbox-color-mode=dark] .modal-title,html[data-netbox-color-mode=light] .modal-title{margin-bottom:0;line-height:1.5}}@media print{html .modal-body,html[data-netbox-color-mode=dark] .modal-body,html[data-netbox-color-mode=light] .modal-body{position:relative;flex:1 1 auto;padding:1rem}}@media print{html .modal-footer,html[data-netbox-color-mode=dark] .modal-footer,html[data-netbox-color-mode=light] .modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.75rem - 1px);border-bottom-left-radius:calc(.75rem - 1px)}html .modal-footer>*,html[data-netbox-color-mode=dark] .modal-footer>*,html[data-netbox-color-mode=light] .modal-footer>*{margin:.25rem}}@media print and (min-width: 576px){html .modal-dialog,html[data-netbox-color-mode=dark] .modal-dialog,html[data-netbox-color-mode=light] .modal-dialog{max-width:500px;margin:1.75rem auto}html .modal-dialog-scrollable,html[data-netbox-color-mode=dark] .modal-dialog-scrollable,html[data-netbox-color-mode=light] .modal-dialog-scrollable{height:calc(100% - 3.5rem)}html .modal-dialog-centered,html[data-netbox-color-mode=dark] .modal-dialog-centered,html[data-netbox-color-mode=light] .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html .modal-sm,html[data-netbox-color-mode=dark] .modal-sm,html[data-netbox-color-mode=light] .modal-sm{max-width:300px}}@media print and (min-width: 992px){html .modal-lg,html .modal-xl,html[data-netbox-color-mode=dark] .modal-lg,html[data-netbox-color-mode=dark] .modal-xl,html[data-netbox-color-mode=light] .modal-lg,html[data-netbox-color-mode=light] .modal-xl{max-width:800px}}@media print and (min-width: 1200px){html .modal-xl,html[data-netbox-color-mode=dark] .modal-xl,html[data-netbox-color-mode=light] .modal-xl{max-width:1140px}}@media print{html .modal-fullscreen,html[data-netbox-color-mode=dark] .modal-fullscreen,html[data-netbox-color-mode=light] .modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen .modal-header{border-radius:0}html .modal-fullscreen .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen .modal-body{overflow-y:auto}html .modal-fullscreen .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen .modal-footer{border-radius:0}}@media print and (max-width: 575.98px){html .modal-fullscreen-sm-down,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-sm-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-sm-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-header{border-radius:0}html .modal-fullscreen-sm-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-body{overflow-y:auto}html .modal-fullscreen-sm-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-sm-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media print and (max-width: 767.98px){html .modal-fullscreen-md-down,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down,html[data-netbox-color-mode=light] .modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-md-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-md-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-header{border-radius:0}html .modal-fullscreen-md-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-body{overflow-y:auto}html .modal-fullscreen-md-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-md-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-md-down .modal-footer{border-radius:0}}@media print and (max-width: 991.98px){html .modal-fullscreen-lg-down,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-lg-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-lg-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-header{border-radius:0}html .modal-fullscreen-lg-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-body{overflow-y:auto}html .modal-fullscreen-lg-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-lg-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media print and (max-width: 1199.98px){html .modal-fullscreen-xl-down,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-xl-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-xl-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-header{border-radius:0}html .modal-fullscreen-xl-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-body{overflow-y:auto}html .modal-fullscreen-xl-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-xl-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media print and (max-width: 1399.98px){html .modal-fullscreen-xxl-down,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}html .modal-fullscreen-xxl-down .modal-content,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-content,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}html .modal-fullscreen-xxl-down .modal-header,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-header,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-header{border-radius:0}html .modal-fullscreen-xxl-down .modal-body,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-body,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-body{overflow-y:auto}html .modal-fullscreen-xxl-down .modal-footer,html[data-netbox-color-mode=dark] .modal-fullscreen-xxl-down .modal-footer,html[data-netbox-color-mode=light] .modal-fullscreen-xxl-down .modal-footer{border-radius:0}}@media print{html .tooltip,html[data-netbox-color-mode=dark] .tooltip,html[data-netbox-color-mode=light] .tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html .tooltip.show,html[data-netbox-color-mode=dark] .tooltip.show,html[data-netbox-color-mode=light] .tooltip.show{opacity:.9}html .tooltip .tooltip-arrow,html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow,html[data-netbox-color-mode=light] .tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}html .tooltip .tooltip-arrow:before,html[data-netbox-color-mode=dark] .tooltip .tooltip-arrow:before,html[data-netbox-color-mode=light] .tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}}@media print{html .bs-tooltip-top,html .bs-tooltip-auto[data-popper-placement^=top],html[data-netbox-color-mode=dark] .bs-tooltip-top,html[data-netbox-color-mode=light] .bs-tooltip-top{padding:.4rem 0}html .bs-tooltip-top .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-top .tooltip-arrow{bottom:0}html .bs-tooltip-top .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-top .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}}@media print{html .bs-tooltip-end,html .bs-tooltip-auto[data-popper-placement^=right],html[data-netbox-color-mode=dark] .bs-tooltip-end,html[data-netbox-color-mode=light] .bs-tooltip-end{padding:0 .4rem}html .bs-tooltip-end .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}html .bs-tooltip-end .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-end .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}}@media print{html .bs-tooltip-bottom,html .bs-tooltip-auto[data-popper-placement^=bottom],html[data-netbox-color-mode=dark] .bs-tooltip-bottom,html[data-netbox-color-mode=light] .bs-tooltip-bottom{padding:.4rem 0}html .bs-tooltip-bottom .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-bottom .tooltip-arrow{top:0}html .bs-tooltip-bottom .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-bottom .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}}@media print{html .bs-tooltip-start,html .bs-tooltip-auto[data-popper-placement^=left],html[data-netbox-color-mode=dark] .bs-tooltip-start,html[data-netbox-color-mode=light] .bs-tooltip-start{padding:0 .4rem}html .bs-tooltip-start .tooltip-arrow,html .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow,html[data-netbox-color-mode=light] .bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}html .bs-tooltip-start .tooltip-arrow:before,html .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,html[data-netbox-color-mode=dark] .bs-tooltip-start .tooltip-arrow:before,html[data-netbox-color-mode=light] .bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}}@media print{html .tooltip-inner,html[data-netbox-color-mode=dark] .tooltip-inner,html[data-netbox-color-mode=light] .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.375rem}}@media print{html .popover,html[data-netbox-color-mode=dark] .popover,html[data-netbox-color-mode=light] .popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem}html .popover .popover-arrow,html[data-netbox-color-mode=dark] .popover .popover-arrow,html[data-netbox-color-mode=light] .popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}html .popover .popover-arrow:before,html .popover .popover-arrow:after,html[data-netbox-color-mode=dark] .popover .popover-arrow:before,html[data-netbox-color-mode=dark] .popover .popover-arrow:after,html[data-netbox-color-mode=light] .popover .popover-arrow:before,html[data-netbox-color-mode=light] .popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}}@media print{html .bs-popover-top>.popover-arrow,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}html .bs-popover-top>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00000040}html .bs-popover-top>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-top>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}}@media print{html .bs-popover-end>.popover-arrow,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}html .bs-popover-end>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00000040}html .bs-popover-end>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-end>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}}@media print{html .bs-popover-bottom>.popover-arrow,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}html .bs-popover-bottom>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00000040}html .bs-popover-bottom>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-bottom>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}html .bs-popover-bottom .popover-header:before,html .bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,html[data-netbox-color-mode=dark] .bs-popover-bottom .popover-header:before,html[data-netbox-color-mode=light] .bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}}@media print{html .bs-popover-start>.popover-arrow,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}html .bs-popover-start>.popover-arrow:before,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:before,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00000040}html .bs-popover-start>.popover-arrow:after,html .bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,html[data-netbox-color-mode=dark] .bs-popover-start>.popover-arrow:after,html[data-netbox-color-mode=light] .bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}}@media print{html .popover-header,html[data-netbox-color-mode=dark] .popover-header,html[data-netbox-color-mode=light] .popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.75rem - 1px);border-top-right-radius:calc(.75rem - 1px)}html .popover-header:empty,html[data-netbox-color-mode=dark] .popover-header:empty,html[data-netbox-color-mode=light] .popover-header:empty{display:none}}@media print{html .popover-body,html[data-netbox-color-mode=dark] .popover-body,html[data-netbox-color-mode=light] .popover-body{padding:1rem;color:#212529}}@media print{html .carousel,html[data-netbox-color-mode=dark] .carousel,html[data-netbox-color-mode=light] .carousel{position:relative}}@media print{html .carousel.pointer-event,html[data-netbox-color-mode=dark] .carousel.pointer-event,html[data-netbox-color-mode=light] .carousel.pointer-event{touch-action:pan-y}}@media print{html .carousel-inner,html[data-netbox-color-mode=dark] .carousel-inner,html[data-netbox-color-mode=light] .carousel-inner{position:relative;width:100%;overflow:hidden}html .carousel-inner:after,html[data-netbox-color-mode=dark] .carousel-inner:after,html[data-netbox-color-mode=light] .carousel-inner:after{display:block;clear:both;content:""}}@media print{html .carousel-item,html[data-netbox-color-mode=dark] .carousel-item,html[data-netbox-color-mode=light] .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .carousel-item,html[data-netbox-color-mode=dark] .carousel-item,html[data-netbox-color-mode=light] .carousel-item{transition:none}}@media print{html .carousel-item.active,html .carousel-item-next,html .carousel-item-prev,html[data-netbox-color-mode=dark] .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-item-next,html[data-netbox-color-mode=dark] .carousel-item-prev,html[data-netbox-color-mode=light] .carousel-item.active,html[data-netbox-color-mode=light] .carousel-item-next,html[data-netbox-color-mode=light] .carousel-item-prev{display:block}}@media print{html .carousel-item-next:not(.carousel-item-start),html .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=dark] .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-item-next:not(.carousel-item-start),html[data-netbox-color-mode=light] .active.carousel-item-end{transform:translate(100%)}}@media print{html .carousel-item-prev:not(.carousel-item-end),html .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=dark] .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-item-prev:not(.carousel-item-end),html[data-netbox-color-mode=light] .active.carousel-item-start{transform:translate(-100%)}}@media print{html .carousel-fade .carousel-item,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item,html[data-netbox-color-mode=light] .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html .carousel-fade .carousel-item.active,html .carousel-fade .carousel-item-next.carousel-item-start,html .carousel-fade .carousel-item-prev.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .carousel-item-prev.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .carousel-item.active,html[data-netbox-color-mode=light] .carousel-fade .carousel-item-next.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}html .carousel-fade .active.carousel-item-start,html .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}}@media print and (prefers-reduced-motion: reduce){html .carousel-fade .active.carousel-item-start,html .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=dark] .carousel-fade .active.carousel-item-end,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-start,html[data-netbox-color-mode=light] .carousel-fade .active.carousel-item-end{transition:none}}@media print{html .carousel-control-prev,html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}}@media print and (prefers-reduced-motion: reduce){html .carousel-control-prev,html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-next{transition:none}}@media print{html .carousel-control-prev:hover,html .carousel-control-prev:focus,html .carousel-control-next:hover,html .carousel-control-next:focus,html[data-netbox-color-mode=dark] .carousel-control-prev:hover,html[data-netbox-color-mode=dark] .carousel-control-prev:focus,html[data-netbox-color-mode=dark] .carousel-control-next:hover,html[data-netbox-color-mode=dark] .carousel-control-next:focus,html[data-netbox-color-mode=light] .carousel-control-prev:hover,html[data-netbox-color-mode=light] .carousel-control-prev:focus,html[data-netbox-color-mode=light] .carousel-control-next:hover,html[data-netbox-color-mode=light] .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}}@media print{html .carousel-control-prev,html[data-netbox-color-mode=dark] .carousel-control-prev,html[data-netbox-color-mode=light] .carousel-control-prev{left:0}}@media print{html .carousel-control-next,html[data-netbox-color-mode=dark] .carousel-control-next,html[data-netbox-color-mode=light] .carousel-control-next{right:0}}@media print{html .carousel-control-prev-icon,html .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}}@media print{html .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}}@media print{html .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}}@media print{html .carousel-indicators,html[data-netbox-color-mode=dark] .carousel-indicators,html[data-netbox-color-mode=light] .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}html .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}}@media print and (prefers-reduced-motion: reduce){html .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-indicators [data-bs-target]{transition:none}}@media print{html .carousel-indicators .active,html[data-netbox-color-mode=dark] .carousel-indicators .active,html[data-netbox-color-mode=light] .carousel-indicators .active{opacity:1}}@media print{html .carousel-caption,html[data-netbox-color-mode=dark] .carousel-caption,html[data-netbox-color-mode=light] .carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}}@media print{html .carousel-dark .carousel-control-prev-icon,html .carousel-dark .carousel-control-next-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=dark] .carousel-dark .carousel-control-next-icon,html[data-netbox-color-mode=light] .carousel-dark .carousel-control-prev-icon,html[data-netbox-color-mode=light] .carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}html .carousel-dark .carousel-indicators [data-bs-target],html[data-netbox-color-mode=dark] .carousel-dark .carousel-indicators [data-bs-target],html[data-netbox-color-mode=light] .carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}html .carousel-dark .carousel-caption,html[data-netbox-color-mode=dark] .carousel-dark .carousel-caption,html[data-netbox-color-mode=light] .carousel-dark .carousel-caption{color:#000}}@media print{@keyframes spinner-border{to{transform:rotate(360deg)}}}@media print{html .spinner-border,html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=light] .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}}@media print{html .spinner-border-sm,html[data-netbox-color-mode=dark] .spinner-border-sm,html[data-netbox-color-mode=light] .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}}@media print{@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}}@media print{html .spinner-grow,html[data-netbox-color-mode=dark] .spinner-grow,html[data-netbox-color-mode=light] .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}}@media print{html .spinner-grow-sm,html[data-netbox-color-mode=dark] .spinner-grow-sm,html[data-netbox-color-mode=light] .spinner-grow-sm{width:1rem;height:1rem}}@media print and (prefers-reduced-motion: reduce){html .spinner-border,html .spinner-grow,html[data-netbox-color-mode=dark] .spinner-border,html[data-netbox-color-mode=dark] .spinner-grow,html[data-netbox-color-mode=light] .spinner-border,html[data-netbox-color-mode=light] .spinner-grow{animation-duration:1.5s}}@media print{html .clearfix:after,html[data-netbox-color-mode=dark] .clearfix:after,html[data-netbox-color-mode=light] .clearfix:after{display:block;clear:both;content:""}}@media print{html .link-primary,html[data-netbox-color-mode=dark] .link-primary,html[data-netbox-color-mode=light] .link-primary{color:#337ab7}html .link-primary:hover,html .link-primary:focus,html[data-netbox-color-mode=dark] .link-primary:hover,html[data-netbox-color-mode=dark] .link-primary:focus,html[data-netbox-color-mode=light] .link-primary:hover,html[data-netbox-color-mode=light] .link-primary:focus{color:#296292}}@media print{html .link-secondary,html[data-netbox-color-mode=dark] .link-secondary,html[data-netbox-color-mode=light] .link-secondary{color:#6c757d}html .link-secondary:hover,html .link-secondary:focus,html[data-netbox-color-mode=dark] .link-secondary:hover,html[data-netbox-color-mode=dark] .link-secondary:focus,html[data-netbox-color-mode=light] .link-secondary:hover,html[data-netbox-color-mode=light] .link-secondary:focus{color:#565e64}}@media print{html .link-success,html[data-netbox-color-mode=dark] .link-success,html[data-netbox-color-mode=light] .link-success{color:#198754}html .link-success:hover,html .link-success:focus,html[data-netbox-color-mode=dark] .link-success:hover,html[data-netbox-color-mode=dark] .link-success:focus,html[data-netbox-color-mode=light] .link-success:hover,html[data-netbox-color-mode=light] .link-success:focus{color:#146c43}}@media print{html .link-info,html[data-netbox-color-mode=dark] .link-info,html[data-netbox-color-mode=light] .link-info{color:#0dcaf0}html .link-info:hover,html .link-info:focus,html[data-netbox-color-mode=dark] .link-info:hover,html[data-netbox-color-mode=dark] .link-info:focus,html[data-netbox-color-mode=light] .link-info:hover,html[data-netbox-color-mode=light] .link-info:focus{color:#3dd5f3}}@media print{html .link-warning,html[data-netbox-color-mode=dark] .link-warning,html[data-netbox-color-mode=light] .link-warning{color:#ffc107}html .link-warning:hover,html .link-warning:focus,html[data-netbox-color-mode=dark] .link-warning:hover,html[data-netbox-color-mode=dark] .link-warning:focus,html[data-netbox-color-mode=light] .link-warning:hover,html[data-netbox-color-mode=light] .link-warning:focus{color:#ffcd39}}@media print{html .link-danger,html[data-netbox-color-mode=dark] .link-danger,html[data-netbox-color-mode=light] .link-danger{color:#dc3545}html .link-danger:hover,html .link-danger:focus,html[data-netbox-color-mode=dark] .link-danger:hover,html[data-netbox-color-mode=dark] .link-danger:focus,html[data-netbox-color-mode=light] .link-danger:hover,html[data-netbox-color-mode=light] .link-danger:focus{color:#b02a37}}@media print{html .link-light,html[data-netbox-color-mode=dark] .link-light,html[data-netbox-color-mode=light] .link-light{color:#f8f9fa}html .link-light:hover,html .link-light:focus,html[data-netbox-color-mode=dark] .link-light:hover,html[data-netbox-color-mode=dark] .link-light:focus,html[data-netbox-color-mode=light] .link-light:hover,html[data-netbox-color-mode=light] .link-light:focus{color:#f9fafb}}@media print{html .link-dark,html[data-netbox-color-mode=dark] .link-dark,html[data-netbox-color-mode=light] .link-dark{color:#212529}html .link-dark:hover,html .link-dark:focus,html[data-netbox-color-mode=dark] .link-dark:hover,html[data-netbox-color-mode=dark] .link-dark:focus,html[data-netbox-color-mode=light] .link-dark:hover,html[data-netbox-color-mode=light] .link-dark:focus{color:#1a1e21}}@media print{html .link-red,html[data-netbox-color-mode=dark] .link-red,html[data-netbox-color-mode=light] .link-red{color:#dc3545}html .link-red:hover,html .link-red:focus,html[data-netbox-color-mode=dark] .link-red:hover,html[data-netbox-color-mode=dark] .link-red:focus,html[data-netbox-color-mode=light] .link-red:hover,html[data-netbox-color-mode=light] .link-red:focus{color:#b02a37}}@media print{html .link-yellow,html[data-netbox-color-mode=dark] .link-yellow,html[data-netbox-color-mode=light] .link-yellow{color:#ffc107}html .link-yellow:hover,html .link-yellow:focus,html[data-netbox-color-mode=dark] .link-yellow:hover,html[data-netbox-color-mode=dark] .link-yellow:focus,html[data-netbox-color-mode=light] .link-yellow:hover,html[data-netbox-color-mode=light] .link-yellow:focus{color:#ffcd39}}@media print{html .link-green,html[data-netbox-color-mode=dark] .link-green,html[data-netbox-color-mode=light] .link-green{color:#198754}html .link-green:hover,html .link-green:focus,html[data-netbox-color-mode=dark] .link-green:hover,html[data-netbox-color-mode=dark] .link-green:focus,html[data-netbox-color-mode=light] .link-green:hover,html[data-netbox-color-mode=light] .link-green:focus{color:#146c43}}@media print{html .link-blue,html[data-netbox-color-mode=dark] .link-blue,html[data-netbox-color-mode=light] .link-blue{color:#0d6efd}html .link-blue:hover,html .link-blue:focus,html[data-netbox-color-mode=dark] .link-blue:hover,html[data-netbox-color-mode=dark] .link-blue:focus,html[data-netbox-color-mode=light] .link-blue:hover,html[data-netbox-color-mode=light] .link-blue:focus{color:#0a58ca}}@media print{html .link-cyan,html[data-netbox-color-mode=dark] .link-cyan,html[data-netbox-color-mode=light] .link-cyan{color:#0dcaf0}html .link-cyan:hover,html .link-cyan:focus,html[data-netbox-color-mode=dark] .link-cyan:hover,html[data-netbox-color-mode=dark] .link-cyan:focus,html[data-netbox-color-mode=light] .link-cyan:hover,html[data-netbox-color-mode=light] .link-cyan:focus{color:#3dd5f3}}@media print{html .link-indigo,html[data-netbox-color-mode=dark] .link-indigo,html[data-netbox-color-mode=light] .link-indigo{color:#6610f2}html .link-indigo:hover,html .link-indigo:focus,html[data-netbox-color-mode=dark] .link-indigo:hover,html[data-netbox-color-mode=dark] .link-indigo:focus,html[data-netbox-color-mode=light] .link-indigo:hover,html[data-netbox-color-mode=light] .link-indigo:focus{color:#520dc2}}@media print{html .link-purple,html[data-netbox-color-mode=dark] .link-purple,html[data-netbox-color-mode=light] .link-purple{color:#6f42c1}html .link-purple:hover,html .link-purple:focus,html[data-netbox-color-mode=dark] .link-purple:hover,html[data-netbox-color-mode=dark] .link-purple:focus,html[data-netbox-color-mode=light] .link-purple:hover,html[data-netbox-color-mode=light] .link-purple:focus{color:#59359a}}@media print{html .link-pink,html[data-netbox-color-mode=dark] .link-pink,html[data-netbox-color-mode=light] .link-pink{color:#d63384}html .link-pink:hover,html .link-pink:focus,html[data-netbox-color-mode=dark] .link-pink:hover,html[data-netbox-color-mode=dark] .link-pink:focus,html[data-netbox-color-mode=light] .link-pink:hover,html[data-netbox-color-mode=light] .link-pink:focus{color:#ab296a}}@media print{html .link-darker,html[data-netbox-color-mode=dark] .link-darker,html[data-netbox-color-mode=light] .link-darker{color:#1b1f22}html .link-darker:hover,html .link-darker:focus,html[data-netbox-color-mode=dark] .link-darker:hover,html[data-netbox-color-mode=dark] .link-darker:focus,html[data-netbox-color-mode=light] .link-darker:hover,html[data-netbox-color-mode=light] .link-darker:focus{color:#16191b}}@media print{html .link-darkest,html[data-netbox-color-mode=dark] .link-darkest,html[data-netbox-color-mode=light] .link-darkest{color:#171b1d}html .link-darkest:hover,html .link-darkest:focus,html[data-netbox-color-mode=dark] .link-darkest:hover,html[data-netbox-color-mode=dark] .link-darkest:focus,html[data-netbox-color-mode=light] .link-darkest:hover,html[data-netbox-color-mode=light] .link-darkest:focus{color:#121617}}@media print{html .link-gray,html[data-netbox-color-mode=dark] .link-gray,html[data-netbox-color-mode=light] .link-gray{color:#ced4da}html .link-gray:hover,html .link-gray:focus,html[data-netbox-color-mode=dark] .link-gray:hover,html[data-netbox-color-mode=dark] .link-gray:focus,html[data-netbox-color-mode=light] .link-gray:hover,html[data-netbox-color-mode=light] .link-gray:focus{color:#d8dde1}}@media print{html .link-gray-100,html[data-netbox-color-mode=dark] .link-gray-100,html[data-netbox-color-mode=light] .link-gray-100{color:#f8f9fa}html .link-gray-100:hover,html .link-gray-100:focus,html[data-netbox-color-mode=dark] .link-gray-100:hover,html[data-netbox-color-mode=dark] .link-gray-100:focus,html[data-netbox-color-mode=light] .link-gray-100:hover,html[data-netbox-color-mode=light] .link-gray-100:focus{color:#f9fafb}}@media print{html .link-gray-200,html[data-netbox-color-mode=dark] .link-gray-200,html[data-netbox-color-mode=light] .link-gray-200{color:#e9ecef}html .link-gray-200:hover,html .link-gray-200:focus,html[data-netbox-color-mode=dark] .link-gray-200:hover,html[data-netbox-color-mode=dark] .link-gray-200:focus,html[data-netbox-color-mode=light] .link-gray-200:hover,html[data-netbox-color-mode=light] .link-gray-200:focus{color:#edf0f2}}@media print{html .link-gray-300,html[data-netbox-color-mode=dark] .link-gray-300,html[data-netbox-color-mode=light] .link-gray-300{color:#dee2e6}html .link-gray-300:hover,html .link-gray-300:focus,html[data-netbox-color-mode=dark] .link-gray-300:hover,html[data-netbox-color-mode=dark] .link-gray-300:focus,html[data-netbox-color-mode=light] .link-gray-300:hover,html[data-netbox-color-mode=light] .link-gray-300:focus{color:#e5e8eb}}@media print{html .link-gray-400,html[data-netbox-color-mode=dark] .link-gray-400,html[data-netbox-color-mode=light] .link-gray-400{color:#ced4da}html .link-gray-400:hover,html .link-gray-400:focus,html[data-netbox-color-mode=dark] .link-gray-400:hover,html[data-netbox-color-mode=dark] .link-gray-400:focus,html[data-netbox-color-mode=light] .link-gray-400:hover,html[data-netbox-color-mode=light] .link-gray-400:focus{color:#d8dde1}}@media print{html .link-gray-500,html[data-netbox-color-mode=dark] .link-gray-500,html[data-netbox-color-mode=light] .link-gray-500{color:#adb5bd}html .link-gray-500:hover,html .link-gray-500:focus,html[data-netbox-color-mode=dark] .link-gray-500:hover,html[data-netbox-color-mode=dark] .link-gray-500:focus,html[data-netbox-color-mode=light] .link-gray-500:hover,html[data-netbox-color-mode=light] .link-gray-500:focus{color:#bdc4ca}}@media print{html .link-gray-600,html[data-netbox-color-mode=dark] .link-gray-600,html[data-netbox-color-mode=light] .link-gray-600{color:#6c757d}html .link-gray-600:hover,html .link-gray-600:focus,html[data-netbox-color-mode=dark] .link-gray-600:hover,html[data-netbox-color-mode=dark] .link-gray-600:focus,html[data-netbox-color-mode=light] .link-gray-600:hover,html[data-netbox-color-mode=light] .link-gray-600:focus{color:#565e64}}@media print{html .link-gray-700,html[data-netbox-color-mode=dark] .link-gray-700,html[data-netbox-color-mode=light] .link-gray-700{color:#495057}html .link-gray-700:hover,html .link-gray-700:focus,html[data-netbox-color-mode=dark] .link-gray-700:hover,html[data-netbox-color-mode=dark] .link-gray-700:focus,html[data-netbox-color-mode=light] .link-gray-700:hover,html[data-netbox-color-mode=light] .link-gray-700:focus{color:#3a4046}}@media print{html .link-gray-800,html[data-netbox-color-mode=dark] .link-gray-800,html[data-netbox-color-mode=light] .link-gray-800{color:#343a40}html .link-gray-800:hover,html .link-gray-800:focus,html[data-netbox-color-mode=dark] .link-gray-800:hover,html[data-netbox-color-mode=dark] .link-gray-800:focus,html[data-netbox-color-mode=light] .link-gray-800:hover,html[data-netbox-color-mode=light] .link-gray-800:focus{color:#2a2e33}}@media print{html .link-gray-900,html[data-netbox-color-mode=dark] .link-gray-900,html[data-netbox-color-mode=light] .link-gray-900{color:#212529}html .link-gray-900:hover,html .link-gray-900:focus,html[data-netbox-color-mode=dark] .link-gray-900:hover,html[data-netbox-color-mode=dark] .link-gray-900:focus,html[data-netbox-color-mode=light] .link-gray-900:hover,html[data-netbox-color-mode=light] .link-gray-900:focus{color:#1a1e21}}@media print{html .link-red-100,html[data-netbox-color-mode=dark] .link-red-100,html[data-netbox-color-mode=light] .link-red-100{color:#f8d7da}html .link-red-100:hover,html .link-red-100:focus,html[data-netbox-color-mode=dark] .link-red-100:hover,html[data-netbox-color-mode=dark] .link-red-100:focus,html[data-netbox-color-mode=light] .link-red-100:hover,html[data-netbox-color-mode=light] .link-red-100:focus{color:#f9dfe1}}@media print{html .link-red-200,html[data-netbox-color-mode=dark] .link-red-200,html[data-netbox-color-mode=light] .link-red-200{color:#f1aeb5}html .link-red-200:hover,html .link-red-200:focus,html[data-netbox-color-mode=dark] .link-red-200:hover,html[data-netbox-color-mode=dark] .link-red-200:focus,html[data-netbox-color-mode=light] .link-red-200:hover,html[data-netbox-color-mode=light] .link-red-200:focus{color:#f4bec4}}@media print{html .link-red-300,html[data-netbox-color-mode=dark] .link-red-300,html[data-netbox-color-mode=light] .link-red-300{color:#ea868f}html .link-red-300:hover,html .link-red-300:focus,html[data-netbox-color-mode=dark] .link-red-300:hover,html[data-netbox-color-mode=dark] .link-red-300:focus,html[data-netbox-color-mode=light] .link-red-300:hover,html[data-netbox-color-mode=light] .link-red-300:focus{color:#ee9ea5}}@media print{html .link-red-400,html[data-netbox-color-mode=dark] .link-red-400,html[data-netbox-color-mode=light] .link-red-400{color:#e35d6a}html .link-red-400:hover,html .link-red-400:focus,html[data-netbox-color-mode=dark] .link-red-400:hover,html[data-netbox-color-mode=dark] .link-red-400:focus,html[data-netbox-color-mode=light] .link-red-400:hover,html[data-netbox-color-mode=light] .link-red-400:focus{color:#e97d88}}@media print{html .link-red-500,html[data-netbox-color-mode=dark] .link-red-500,html[data-netbox-color-mode=light] .link-red-500{color:#dc3545}html .link-red-500:hover,html .link-red-500:focus,html[data-netbox-color-mode=dark] .link-red-500:hover,html[data-netbox-color-mode=dark] .link-red-500:focus,html[data-netbox-color-mode=light] .link-red-500:hover,html[data-netbox-color-mode=light] .link-red-500:focus{color:#b02a37}}@media print{html .link-red-600,html[data-netbox-color-mode=dark] .link-red-600,html[data-netbox-color-mode=light] .link-red-600{color:#b02a37}html .link-red-600:hover,html .link-red-600:focus,html[data-netbox-color-mode=dark] .link-red-600:hover,html[data-netbox-color-mode=dark] .link-red-600:focus,html[data-netbox-color-mode=light] .link-red-600:hover,html[data-netbox-color-mode=light] .link-red-600:focus{color:#8d222c}}@media print{html .link-red-700,html[data-netbox-color-mode=dark] .link-red-700,html[data-netbox-color-mode=light] .link-red-700{color:#842029}html .link-red-700:hover,html .link-red-700:focus,html[data-netbox-color-mode=dark] .link-red-700:hover,html[data-netbox-color-mode=dark] .link-red-700:focus,html[data-netbox-color-mode=light] .link-red-700:hover,html[data-netbox-color-mode=light] .link-red-700:focus{color:#6a1a21}}@media print{html .link-red-800,html[data-netbox-color-mode=dark] .link-red-800,html[data-netbox-color-mode=light] .link-red-800{color:#58151c}html .link-red-800:hover,html .link-red-800:focus,html[data-netbox-color-mode=dark] .link-red-800:hover,html[data-netbox-color-mode=dark] .link-red-800:focus,html[data-netbox-color-mode=light] .link-red-800:hover,html[data-netbox-color-mode=light] .link-red-800:focus{color:#461116}}@media print{html .link-red-900,html[data-netbox-color-mode=dark] .link-red-900,html[data-netbox-color-mode=light] .link-red-900{color:#2c0b0e}html .link-red-900:hover,html .link-red-900:focus,html[data-netbox-color-mode=dark] .link-red-900:hover,html[data-netbox-color-mode=dark] .link-red-900:focus,html[data-netbox-color-mode=light] .link-red-900:hover,html[data-netbox-color-mode=light] .link-red-900:focus{color:#23090b}}@media print{html .link-yellow-100,html[data-netbox-color-mode=dark] .link-yellow-100,html[data-netbox-color-mode=light] .link-yellow-100{color:#fff3cd}html .link-yellow-100:hover,html .link-yellow-100:focus,html[data-netbox-color-mode=dark] .link-yellow-100:hover,html[data-netbox-color-mode=dark] .link-yellow-100:focus,html[data-netbox-color-mode=light] .link-yellow-100:hover,html[data-netbox-color-mode=light] .link-yellow-100:focus{color:#fff5d7}}@media print{html .link-yellow-200,html[data-netbox-color-mode=dark] .link-yellow-200,html[data-netbox-color-mode=light] .link-yellow-200{color:#ffe69c}html .link-yellow-200:hover,html .link-yellow-200:focus,html[data-netbox-color-mode=dark] .link-yellow-200:hover,html[data-netbox-color-mode=dark] .link-yellow-200:focus,html[data-netbox-color-mode=light] .link-yellow-200:hover,html[data-netbox-color-mode=light] .link-yellow-200:focus{color:#ffebb0}}@media print{html .link-yellow-300,html[data-netbox-color-mode=dark] .link-yellow-300,html[data-netbox-color-mode=light] .link-yellow-300{color:#ffda6a}html .link-yellow-300:hover,html .link-yellow-300:focus,html[data-netbox-color-mode=dark] .link-yellow-300:hover,html[data-netbox-color-mode=dark] .link-yellow-300:focus,html[data-netbox-color-mode=light] .link-yellow-300:hover,html[data-netbox-color-mode=light] .link-yellow-300:focus{color:#ffe188}}@media print{html .link-yellow-400,html[data-netbox-color-mode=dark] .link-yellow-400,html[data-netbox-color-mode=light] .link-yellow-400{color:#ffcd39}html .link-yellow-400:hover,html .link-yellow-400:focus,html[data-netbox-color-mode=dark] .link-yellow-400:hover,html[data-netbox-color-mode=dark] .link-yellow-400:focus,html[data-netbox-color-mode=light] .link-yellow-400:hover,html[data-netbox-color-mode=light] .link-yellow-400:focus{color:#ffd761}}@media print{html .link-yellow-500,html[data-netbox-color-mode=dark] .link-yellow-500,html[data-netbox-color-mode=light] .link-yellow-500{color:#ffc107}html .link-yellow-500:hover,html .link-yellow-500:focus,html[data-netbox-color-mode=dark] .link-yellow-500:hover,html[data-netbox-color-mode=dark] .link-yellow-500:focus,html[data-netbox-color-mode=light] .link-yellow-500:hover,html[data-netbox-color-mode=light] .link-yellow-500:focus{color:#ffcd39}}@media print{html .link-yellow-600,html[data-netbox-color-mode=dark] .link-yellow-600,html[data-netbox-color-mode=light] .link-yellow-600{color:#cc9a06}html .link-yellow-600:hover,html .link-yellow-600:focus,html[data-netbox-color-mode=dark] .link-yellow-600:hover,html[data-netbox-color-mode=dark] .link-yellow-600:focus,html[data-netbox-color-mode=light] .link-yellow-600:hover,html[data-netbox-color-mode=light] .link-yellow-600:focus{color:#d6ae38}}@media print{html .link-yellow-700,html[data-netbox-color-mode=dark] .link-yellow-700,html[data-netbox-color-mode=light] .link-yellow-700{color:#997404}html .link-yellow-700:hover,html .link-yellow-700:focus,html[data-netbox-color-mode=dark] .link-yellow-700:hover,html[data-netbox-color-mode=dark] .link-yellow-700:focus,html[data-netbox-color-mode=light] .link-yellow-700:hover,html[data-netbox-color-mode=light] .link-yellow-700:focus{color:#ad9036}}@media print{html .link-yellow-800,html[data-netbox-color-mode=dark] .link-yellow-800,html[data-netbox-color-mode=light] .link-yellow-800{color:#664d03}html .link-yellow-800:hover,html .link-yellow-800:focus,html[data-netbox-color-mode=dark] .link-yellow-800:hover,html[data-netbox-color-mode=dark] .link-yellow-800:focus,html[data-netbox-color-mode=light] .link-yellow-800:hover,html[data-netbox-color-mode=light] .link-yellow-800:focus{color:#523e02}}@media print{html .link-yellow-900,html[data-netbox-color-mode=dark] .link-yellow-900,html[data-netbox-color-mode=light] .link-yellow-900{color:#332701}html .link-yellow-900:hover,html .link-yellow-900:focus,html[data-netbox-color-mode=dark] .link-yellow-900:hover,html[data-netbox-color-mode=dark] .link-yellow-900:focus,html[data-netbox-color-mode=light] .link-yellow-900:hover,html[data-netbox-color-mode=light] .link-yellow-900:focus{color:#291f01}}@media print{html .link-green-100,html[data-netbox-color-mode=dark] .link-green-100,html[data-netbox-color-mode=light] .link-green-100{color:#d1e7dd}html .link-green-100:hover,html .link-green-100:focus,html[data-netbox-color-mode=dark] .link-green-100:hover,html[data-netbox-color-mode=dark] .link-green-100:focus,html[data-netbox-color-mode=light] .link-green-100:hover,html[data-netbox-color-mode=light] .link-green-100:focus{color:#daece4}}@media print{html .link-green-200,html[data-netbox-color-mode=dark] .link-green-200,html[data-netbox-color-mode=light] .link-green-200{color:#a3cfbb}html .link-green-200:hover,html .link-green-200:focus,html[data-netbox-color-mode=dark] .link-green-200:hover,html[data-netbox-color-mode=dark] .link-green-200:focus,html[data-netbox-color-mode=light] .link-green-200:hover,html[data-netbox-color-mode=light] .link-green-200:focus{color:#b5d9c9}}@media print{html .link-green-300,html[data-netbox-color-mode=dark] .link-green-300,html[data-netbox-color-mode=light] .link-green-300{color:#75b798}html .link-green-300:hover,html .link-green-300:focus,html[data-netbox-color-mode=dark] .link-green-300:hover,html[data-netbox-color-mode=dark] .link-green-300:focus,html[data-netbox-color-mode=light] .link-green-300:hover,html[data-netbox-color-mode=light] .link-green-300:focus{color:#91c5ad}}@media print{html .link-green-400,html[data-netbox-color-mode=dark] .link-green-400,html[data-netbox-color-mode=light] .link-green-400{color:#479f76}html .link-green-400:hover,html .link-green-400:focus,html[data-netbox-color-mode=dark] .link-green-400:hover,html[data-netbox-color-mode=dark] .link-green-400:focus,html[data-netbox-color-mode=light] .link-green-400:hover,html[data-netbox-color-mode=light] .link-green-400:focus{color:#6cb291}}@media print{html .link-green-500,html[data-netbox-color-mode=dark] .link-green-500,html[data-netbox-color-mode=light] .link-green-500{color:#198754}html .link-green-500:hover,html .link-green-500:focus,html[data-netbox-color-mode=dark] .link-green-500:hover,html[data-netbox-color-mode=dark] .link-green-500:focus,html[data-netbox-color-mode=light] .link-green-500:hover,html[data-netbox-color-mode=light] .link-green-500:focus{color:#146c43}}@media print{html .link-green-600,html[data-netbox-color-mode=dark] .link-green-600,html[data-netbox-color-mode=light] .link-green-600{color:#146c43}html .link-green-600:hover,html .link-green-600:focus,html[data-netbox-color-mode=dark] .link-green-600:hover,html[data-netbox-color-mode=dark] .link-green-600:focus,html[data-netbox-color-mode=light] .link-green-600:hover,html[data-netbox-color-mode=light] .link-green-600:focus{color:#105636}}@media print{html .link-green-700,html[data-netbox-color-mode=dark] .link-green-700,html[data-netbox-color-mode=light] .link-green-700{color:#0f5132}html .link-green-700:hover,html .link-green-700:focus,html[data-netbox-color-mode=dark] .link-green-700:hover,html[data-netbox-color-mode=dark] .link-green-700:focus,html[data-netbox-color-mode=light] .link-green-700:hover,html[data-netbox-color-mode=light] .link-green-700:focus{color:#0c4128}}@media print{html .link-green-800,html[data-netbox-color-mode=dark] .link-green-800,html[data-netbox-color-mode=light] .link-green-800{color:#0a3622}html .link-green-800:hover,html .link-green-800:focus,html[data-netbox-color-mode=dark] .link-green-800:hover,html[data-netbox-color-mode=dark] .link-green-800:focus,html[data-netbox-color-mode=light] .link-green-800:hover,html[data-netbox-color-mode=light] .link-green-800:focus{color:#082b1b}}@media print{html .link-green-900,html[data-netbox-color-mode=dark] .link-green-900,html[data-netbox-color-mode=light] .link-green-900{color:#051b11}html .link-green-900:hover,html .link-green-900:focus,html[data-netbox-color-mode=dark] .link-green-900:hover,html[data-netbox-color-mode=dark] .link-green-900:focus,html[data-netbox-color-mode=light] .link-green-900:hover,html[data-netbox-color-mode=light] .link-green-900:focus{color:#04160e}}@media print{html .link-blue-100,html[data-netbox-color-mode=dark] .link-blue-100,html[data-netbox-color-mode=light] .link-blue-100{color:#cfe2ff}html .link-blue-100:hover,html .link-blue-100:focus,html[data-netbox-color-mode=dark] .link-blue-100:hover,html[data-netbox-color-mode=dark] .link-blue-100:focus,html[data-netbox-color-mode=light] .link-blue-100:hover,html[data-netbox-color-mode=light] .link-blue-100:focus{color:#d9e8ff}}@media print{html .link-blue-200,html[data-netbox-color-mode=dark] .link-blue-200,html[data-netbox-color-mode=light] .link-blue-200{color:#9ec5fe}html .link-blue-200:hover,html .link-blue-200:focus,html[data-netbox-color-mode=dark] .link-blue-200:hover,html[data-netbox-color-mode=dark] .link-blue-200:focus,html[data-netbox-color-mode=light] .link-blue-200:hover,html[data-netbox-color-mode=light] .link-blue-200:focus{color:#b1d1fe}}@media print{html .link-blue-300,html[data-netbox-color-mode=dark] .link-blue-300,html[data-netbox-color-mode=light] .link-blue-300{color:#6ea8fe}html .link-blue-300:hover,html .link-blue-300:focus,html[data-netbox-color-mode=dark] .link-blue-300:hover,html[data-netbox-color-mode=dark] .link-blue-300:focus,html[data-netbox-color-mode=light] .link-blue-300:hover,html[data-netbox-color-mode=light] .link-blue-300:focus{color:#8bb9fe}}@media print{html .link-blue-400,html[data-netbox-color-mode=dark] .link-blue-400,html[data-netbox-color-mode=light] .link-blue-400{color:#3d8bfd}html .link-blue-400:hover,html .link-blue-400:focus,html[data-netbox-color-mode=dark] .link-blue-400:hover,html[data-netbox-color-mode=dark] .link-blue-400:focus,html[data-netbox-color-mode=light] .link-blue-400:hover,html[data-netbox-color-mode=light] .link-blue-400:focus{color:#64a2fd}}@media print{html .link-blue-500,html[data-netbox-color-mode=dark] .link-blue-500,html[data-netbox-color-mode=light] .link-blue-500{color:#0d6efd}html .link-blue-500:hover,html .link-blue-500:focus,html[data-netbox-color-mode=dark] .link-blue-500:hover,html[data-netbox-color-mode=dark] .link-blue-500:focus,html[data-netbox-color-mode=light] .link-blue-500:hover,html[data-netbox-color-mode=light] .link-blue-500:focus{color:#0a58ca}}@media print{html .link-blue-600,html[data-netbox-color-mode=dark] .link-blue-600,html[data-netbox-color-mode=light] .link-blue-600{color:#0a58ca}html .link-blue-600:hover,html .link-blue-600:focus,html[data-netbox-color-mode=dark] .link-blue-600:hover,html[data-netbox-color-mode=dark] .link-blue-600:focus,html[data-netbox-color-mode=light] .link-blue-600:hover,html[data-netbox-color-mode=light] .link-blue-600:focus{color:#0846a2}}@media print{html .link-blue-700,html[data-netbox-color-mode=dark] .link-blue-700,html[data-netbox-color-mode=light] .link-blue-700{color:#084298}html .link-blue-700:hover,html .link-blue-700:focus,html[data-netbox-color-mode=dark] .link-blue-700:hover,html[data-netbox-color-mode=dark] .link-blue-700:focus,html[data-netbox-color-mode=light] .link-blue-700:hover,html[data-netbox-color-mode=light] .link-blue-700:focus{color:#06357a}}@media print{html .link-blue-800,html[data-netbox-color-mode=dark] .link-blue-800,html[data-netbox-color-mode=light] .link-blue-800{color:#052c65}html .link-blue-800:hover,html .link-blue-800:focus,html[data-netbox-color-mode=dark] .link-blue-800:hover,html[data-netbox-color-mode=dark] .link-blue-800:focus,html[data-netbox-color-mode=light] .link-blue-800:hover,html[data-netbox-color-mode=light] .link-blue-800:focus{color:#042351}}@media print{html .link-blue-900,html[data-netbox-color-mode=dark] .link-blue-900,html[data-netbox-color-mode=light] .link-blue-900{color:#031633}html .link-blue-900:hover,html .link-blue-900:focus,html[data-netbox-color-mode=dark] .link-blue-900:hover,html[data-netbox-color-mode=dark] .link-blue-900:focus,html[data-netbox-color-mode=light] .link-blue-900:hover,html[data-netbox-color-mode=light] .link-blue-900:focus{color:#021229}}@media print{html .link-cyan-100,html[data-netbox-color-mode=dark] .link-cyan-100,html[data-netbox-color-mode=light] .link-cyan-100{color:#cff4fc}html .link-cyan-100:hover,html .link-cyan-100:focus,html[data-netbox-color-mode=dark] .link-cyan-100:hover,html[data-netbox-color-mode=dark] .link-cyan-100:focus,html[data-netbox-color-mode=light] .link-cyan-100:hover,html[data-netbox-color-mode=light] .link-cyan-100:focus{color:#d9f6fd}}@media print{html .link-cyan-200,html[data-netbox-color-mode=dark] .link-cyan-200,html[data-netbox-color-mode=light] .link-cyan-200{color:#9eeaf9}html .link-cyan-200:hover,html .link-cyan-200:focus,html[data-netbox-color-mode=dark] .link-cyan-200:hover,html[data-netbox-color-mode=dark] .link-cyan-200:focus,html[data-netbox-color-mode=light] .link-cyan-200:hover,html[data-netbox-color-mode=light] .link-cyan-200:focus{color:#b1eefa}}@media print{html .link-cyan-300,html[data-netbox-color-mode=dark] .link-cyan-300,html[data-netbox-color-mode=light] .link-cyan-300{color:#6edff6}html .link-cyan-300:hover,html .link-cyan-300:focus,html[data-netbox-color-mode=dark] .link-cyan-300:hover,html[data-netbox-color-mode=dark] .link-cyan-300:focus,html[data-netbox-color-mode=light] .link-cyan-300:hover,html[data-netbox-color-mode=light] .link-cyan-300:focus{color:#8be5f8}}@media print{html .link-cyan-400,html[data-netbox-color-mode=dark] .link-cyan-400,html[data-netbox-color-mode=light] .link-cyan-400{color:#3dd5f3}html .link-cyan-400:hover,html .link-cyan-400:focus,html[data-netbox-color-mode=dark] .link-cyan-400:hover,html[data-netbox-color-mode=dark] .link-cyan-400:focus,html[data-netbox-color-mode=light] .link-cyan-400:hover,html[data-netbox-color-mode=light] .link-cyan-400:focus{color:#64ddf5}}@media print{html .link-cyan-500,html[data-netbox-color-mode=dark] .link-cyan-500,html[data-netbox-color-mode=light] .link-cyan-500{color:#0dcaf0}html .link-cyan-500:hover,html .link-cyan-500:focus,html[data-netbox-color-mode=dark] .link-cyan-500:hover,html[data-netbox-color-mode=dark] .link-cyan-500:focus,html[data-netbox-color-mode=light] .link-cyan-500:hover,html[data-netbox-color-mode=light] .link-cyan-500:focus{color:#3dd5f3}}@media print{html .link-cyan-600,html[data-netbox-color-mode=dark] .link-cyan-600,html[data-netbox-color-mode=light] .link-cyan-600{color:#0aa2c0}html .link-cyan-600:hover,html .link-cyan-600:focus,html[data-netbox-color-mode=dark] .link-cyan-600:hover,html[data-netbox-color-mode=dark] .link-cyan-600:focus,html[data-netbox-color-mode=light] .link-cyan-600:hover,html[data-netbox-color-mode=light] .link-cyan-600:focus{color:#3bb5cd}}@media print{html .link-cyan-700,html[data-netbox-color-mode=dark] .link-cyan-700,html[data-netbox-color-mode=light] .link-cyan-700{color:#087990}html .link-cyan-700:hover,html .link-cyan-700:focus,html[data-netbox-color-mode=dark] .link-cyan-700:hover,html[data-netbox-color-mode=dark] .link-cyan-700:focus,html[data-netbox-color-mode=light] .link-cyan-700:hover,html[data-netbox-color-mode=light] .link-cyan-700:focus{color:#066173}}@media print{html .link-cyan-800,html[data-netbox-color-mode=dark] .link-cyan-800,html[data-netbox-color-mode=light] .link-cyan-800{color:#055160}html .link-cyan-800:hover,html .link-cyan-800:focus,html[data-netbox-color-mode=dark] .link-cyan-800:hover,html[data-netbox-color-mode=dark] .link-cyan-800:focus,html[data-netbox-color-mode=light] .link-cyan-800:hover,html[data-netbox-color-mode=light] .link-cyan-800:focus{color:#04414d}}@media print{html .link-cyan-900,html[data-netbox-color-mode=dark] .link-cyan-900,html[data-netbox-color-mode=light] .link-cyan-900{color:#032830}html .link-cyan-900:hover,html .link-cyan-900:focus,html[data-netbox-color-mode=dark] .link-cyan-900:hover,html[data-netbox-color-mode=dark] .link-cyan-900:focus,html[data-netbox-color-mode=light] .link-cyan-900:hover,html[data-netbox-color-mode=light] .link-cyan-900:focus{color:#022026}}@media print{html .link-indigo-100,html[data-netbox-color-mode=dark] .link-indigo-100,html[data-netbox-color-mode=light] .link-indigo-100{color:#e0cffc}html .link-indigo-100:hover,html .link-indigo-100:focus,html[data-netbox-color-mode=dark] .link-indigo-100:hover,html[data-netbox-color-mode=dark] .link-indigo-100:focus,html[data-netbox-color-mode=light] .link-indigo-100:hover,html[data-netbox-color-mode=light] .link-indigo-100:focus{color:#e6d9fd}}@media print{html .link-indigo-200,html[data-netbox-color-mode=dark] .link-indigo-200,html[data-netbox-color-mode=light] .link-indigo-200{color:#c29ffa}html .link-indigo-200:hover,html .link-indigo-200:focus,html[data-netbox-color-mode=dark] .link-indigo-200:hover,html[data-netbox-color-mode=dark] .link-indigo-200:focus,html[data-netbox-color-mode=light] .link-indigo-200:hover,html[data-netbox-color-mode=light] .link-indigo-200:focus{color:#ceb2fb}}@media print{html .link-indigo-300,html[data-netbox-color-mode=dark] .link-indigo-300,html[data-netbox-color-mode=light] .link-indigo-300{color:#a370f7}html .link-indigo-300:hover,html .link-indigo-300:focus,html[data-netbox-color-mode=dark] .link-indigo-300:hover,html[data-netbox-color-mode=dark] .link-indigo-300:focus,html[data-netbox-color-mode=light] .link-indigo-300:hover,html[data-netbox-color-mode=light] .link-indigo-300:focus{color:#b58df9}}@media print{html .link-indigo-400,html[data-netbox-color-mode=dark] .link-indigo-400,html[data-netbox-color-mode=light] .link-indigo-400{color:#8540f5}html .link-indigo-400:hover,html .link-indigo-400:focus,html[data-netbox-color-mode=dark] .link-indigo-400:hover,html[data-netbox-color-mode=dark] .link-indigo-400:focus,html[data-netbox-color-mode=light] .link-indigo-400:hover,html[data-netbox-color-mode=light] .link-indigo-400:focus{color:#6a33c4}}@media print{html .link-indigo-500,html[data-netbox-color-mode=dark] .link-indigo-500,html[data-netbox-color-mode=light] .link-indigo-500{color:#6610f2}html .link-indigo-500:hover,html .link-indigo-500:focus,html[data-netbox-color-mode=dark] .link-indigo-500:hover,html[data-netbox-color-mode=dark] .link-indigo-500:focus,html[data-netbox-color-mode=light] .link-indigo-500:hover,html[data-netbox-color-mode=light] .link-indigo-500:focus{color:#520dc2}}@media print{html .link-indigo-600,html[data-netbox-color-mode=dark] .link-indigo-600,html[data-netbox-color-mode=light] .link-indigo-600{color:#520dc2}html .link-indigo-600:hover,html .link-indigo-600:focus,html[data-netbox-color-mode=dark] .link-indigo-600:hover,html[data-netbox-color-mode=dark] .link-indigo-600:focus,html[data-netbox-color-mode=light] .link-indigo-600:hover,html[data-netbox-color-mode=light] .link-indigo-600:focus{color:#420a9b}}@media print{html .link-indigo-700,html[data-netbox-color-mode=dark] .link-indigo-700,html[data-netbox-color-mode=light] .link-indigo-700{color:#3d0a91}html .link-indigo-700:hover,html .link-indigo-700:focus,html[data-netbox-color-mode=dark] .link-indigo-700:hover,html[data-netbox-color-mode=dark] .link-indigo-700:focus,html[data-netbox-color-mode=light] .link-indigo-700:hover,html[data-netbox-color-mode=light] .link-indigo-700:focus{color:#310874}}@media print{html .link-indigo-800,html[data-netbox-color-mode=dark] .link-indigo-800,html[data-netbox-color-mode=light] .link-indigo-800{color:#290661}html .link-indigo-800:hover,html .link-indigo-800:focus,html[data-netbox-color-mode=dark] .link-indigo-800:hover,html[data-netbox-color-mode=dark] .link-indigo-800:focus,html[data-netbox-color-mode=light] .link-indigo-800:hover,html[data-netbox-color-mode=light] .link-indigo-800:focus{color:#21054e}}@media print{html .link-indigo-900,html[data-netbox-color-mode=dark] .link-indigo-900,html[data-netbox-color-mode=light] .link-indigo-900{color:#140330}html .link-indigo-900:hover,html .link-indigo-900:focus,html[data-netbox-color-mode=dark] .link-indigo-900:hover,html[data-netbox-color-mode=dark] .link-indigo-900:focus,html[data-netbox-color-mode=light] .link-indigo-900:hover,html[data-netbox-color-mode=light] .link-indigo-900:focus{color:#100226}}@media print{html .link-purple-100,html[data-netbox-color-mode=dark] .link-purple-100,html[data-netbox-color-mode=light] .link-purple-100{color:#e2d9f3}html .link-purple-100:hover,html .link-purple-100:focus,html[data-netbox-color-mode=dark] .link-purple-100:hover,html[data-netbox-color-mode=dark] .link-purple-100:focus,html[data-netbox-color-mode=light] .link-purple-100:hover,html[data-netbox-color-mode=light] .link-purple-100:focus{color:#e8e1f5}}@media print{html .link-purple-200,html[data-netbox-color-mode=dark] .link-purple-200,html[data-netbox-color-mode=light] .link-purple-200{color:#c5b3e6}html .link-purple-200:hover,html .link-purple-200:focus,html[data-netbox-color-mode=dark] .link-purple-200:hover,html[data-netbox-color-mode=dark] .link-purple-200:focus,html[data-netbox-color-mode=light] .link-purple-200:hover,html[data-netbox-color-mode=light] .link-purple-200:focus{color:#d1c2eb}}@media print{html .link-purple-300,html[data-netbox-color-mode=dark] .link-purple-300,html[data-netbox-color-mode=light] .link-purple-300{color:#a98eda}html .link-purple-300:hover,html .link-purple-300:focus,html[data-netbox-color-mode=dark] .link-purple-300:hover,html[data-netbox-color-mode=dark] .link-purple-300:focus,html[data-netbox-color-mode=light] .link-purple-300:hover,html[data-netbox-color-mode=light] .link-purple-300:focus{color:#baa5e1}}@media print{html .link-purple-400,html[data-netbox-color-mode=dark] .link-purple-400,html[data-netbox-color-mode=light] .link-purple-400{color:#8c68cd}html .link-purple-400:hover,html .link-purple-400:focus,html[data-netbox-color-mode=dark] .link-purple-400:hover,html[data-netbox-color-mode=dark] .link-purple-400:focus,html[data-netbox-color-mode=light] .link-purple-400:hover,html[data-netbox-color-mode=light] .link-purple-400:focus{color:#a386d7}}@media print{html .link-purple-500,html[data-netbox-color-mode=dark] .link-purple-500,html[data-netbox-color-mode=light] .link-purple-500{color:#6f42c1}html .link-purple-500:hover,html .link-purple-500:focus,html[data-netbox-color-mode=dark] .link-purple-500:hover,html[data-netbox-color-mode=dark] .link-purple-500:focus,html[data-netbox-color-mode=light] .link-purple-500:hover,html[data-netbox-color-mode=light] .link-purple-500:focus{color:#59359a}}@media print{html .link-purple-600,html[data-netbox-color-mode=dark] .link-purple-600,html[data-netbox-color-mode=light] .link-purple-600{color:#59359a}html .link-purple-600:hover,html .link-purple-600:focus,html[data-netbox-color-mode=dark] .link-purple-600:hover,html[data-netbox-color-mode=dark] .link-purple-600:focus,html[data-netbox-color-mode=light] .link-purple-600:hover,html[data-netbox-color-mode=light] .link-purple-600:focus{color:#472a7b}}@media print{html .link-purple-700,html[data-netbox-color-mode=dark] .link-purple-700,html[data-netbox-color-mode=light] .link-purple-700{color:#432874}html .link-purple-700:hover,html .link-purple-700:focus,html[data-netbox-color-mode=dark] .link-purple-700:hover,html[data-netbox-color-mode=dark] .link-purple-700:focus,html[data-netbox-color-mode=light] .link-purple-700:hover,html[data-netbox-color-mode=light] .link-purple-700:focus{color:#36205d}}@media print{html .link-purple-800,html[data-netbox-color-mode=dark] .link-purple-800,html[data-netbox-color-mode=light] .link-purple-800{color:#2c1a4d}html .link-purple-800:hover,html .link-purple-800:focus,html[data-netbox-color-mode=dark] .link-purple-800:hover,html[data-netbox-color-mode=dark] .link-purple-800:focus,html[data-netbox-color-mode=light] .link-purple-800:hover,html[data-netbox-color-mode=light] .link-purple-800:focus{color:#23153e}}@media print{html .link-purple-900,html[data-netbox-color-mode=dark] .link-purple-900,html[data-netbox-color-mode=light] .link-purple-900{color:#160d27}html .link-purple-900:hover,html .link-purple-900:focus,html[data-netbox-color-mode=dark] .link-purple-900:hover,html[data-netbox-color-mode=dark] .link-purple-900:focus,html[data-netbox-color-mode=light] .link-purple-900:hover,html[data-netbox-color-mode=light] .link-purple-900:focus{color:#120a1f}}@media print{html .link-pink-100,html[data-netbox-color-mode=dark] .link-pink-100,html[data-netbox-color-mode=light] .link-pink-100{color:#f7d6e6}html .link-pink-100:hover,html .link-pink-100:focus,html[data-netbox-color-mode=dark] .link-pink-100:hover,html[data-netbox-color-mode=dark] .link-pink-100:focus,html[data-netbox-color-mode=light] .link-pink-100:hover,html[data-netbox-color-mode=light] .link-pink-100:focus{color:#f9deeb}}@media print{html .link-pink-200,html[data-netbox-color-mode=dark] .link-pink-200,html[data-netbox-color-mode=light] .link-pink-200{color:#efadce}html .link-pink-200:hover,html .link-pink-200:focus,html[data-netbox-color-mode=dark] .link-pink-200:hover,html[data-netbox-color-mode=dark] .link-pink-200:focus,html[data-netbox-color-mode=light] .link-pink-200:hover,html[data-netbox-color-mode=light] .link-pink-200:focus{color:#f2bdd8}}@media print{html .link-pink-300,html[data-netbox-color-mode=dark] .link-pink-300,html[data-netbox-color-mode=light] .link-pink-300{color:#e685b5}html .link-pink-300:hover,html .link-pink-300:focus,html[data-netbox-color-mode=dark] .link-pink-300:hover,html[data-netbox-color-mode=dark] .link-pink-300:focus,html[data-netbox-color-mode=light] .link-pink-300:hover,html[data-netbox-color-mode=light] .link-pink-300:focus{color:#eb9dc4}}@media print{html .link-pink-400,html[data-netbox-color-mode=dark] .link-pink-400,html[data-netbox-color-mode=light] .link-pink-400{color:#de5c9d}html .link-pink-400:hover,html .link-pink-400:focus,html[data-netbox-color-mode=dark] .link-pink-400:hover,html[data-netbox-color-mode=dark] .link-pink-400:focus,html[data-netbox-color-mode=light] .link-pink-400:hover,html[data-netbox-color-mode=light] .link-pink-400:focus{color:#e57db1}}@media print{html .link-pink-500,html[data-netbox-color-mode=dark] .link-pink-500,html[data-netbox-color-mode=light] .link-pink-500{color:#d63384}html .link-pink-500:hover,html .link-pink-500:focus,html[data-netbox-color-mode=dark] .link-pink-500:hover,html[data-netbox-color-mode=dark] .link-pink-500:focus,html[data-netbox-color-mode=light] .link-pink-500:hover,html[data-netbox-color-mode=light] .link-pink-500:focus{color:#ab296a}}@media print{html .link-pink-600,html[data-netbox-color-mode=dark] .link-pink-600,html[data-netbox-color-mode=light] .link-pink-600{color:#ab296a}html .link-pink-600:hover,html .link-pink-600:focus,html[data-netbox-color-mode=dark] .link-pink-600:hover,html[data-netbox-color-mode=dark] .link-pink-600:focus,html[data-netbox-color-mode=light] .link-pink-600:hover,html[data-netbox-color-mode=light] .link-pink-600:focus{color:#892155}}@media print{html .link-pink-700,html[data-netbox-color-mode=dark] .link-pink-700,html[data-netbox-color-mode=light] .link-pink-700{color:#801f4f}html .link-pink-700:hover,html .link-pink-700:focus,html[data-netbox-color-mode=dark] .link-pink-700:hover,html[data-netbox-color-mode=dark] .link-pink-700:focus,html[data-netbox-color-mode=light] .link-pink-700:hover,html[data-netbox-color-mode=light] .link-pink-700:focus{color:#66193f}}@media print{html .link-pink-800,html[data-netbox-color-mode=dark] .link-pink-800,html[data-netbox-color-mode=light] .link-pink-800{color:#561435}html .link-pink-800:hover,html .link-pink-800:focus,html[data-netbox-color-mode=dark] .link-pink-800:hover,html[data-netbox-color-mode=dark] .link-pink-800:focus,html[data-netbox-color-mode=light] .link-pink-800:hover,html[data-netbox-color-mode=light] .link-pink-800:focus{color:#45102a}}@media print{html .link-pink-900,html[data-netbox-color-mode=dark] .link-pink-900,html[data-netbox-color-mode=light] .link-pink-900{color:#2b0a1a}html .link-pink-900:hover,html .link-pink-900:focus,html[data-netbox-color-mode=dark] .link-pink-900:hover,html[data-netbox-color-mode=dark] .link-pink-900:focus,html[data-netbox-color-mode=light] .link-pink-900:hover,html[data-netbox-color-mode=light] .link-pink-900:focus{color:#220815}}@media print{html .ratio,html[data-netbox-color-mode=dark] .ratio,html[data-netbox-color-mode=light] .ratio{position:relative;width:100%}html .ratio:before,html[data-netbox-color-mode=dark] .ratio:before,html[data-netbox-color-mode=light] .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:""}html .ratio>*,html[data-netbox-color-mode=dark] .ratio>*,html[data-netbox-color-mode=light] .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}}@media print{html .ratio-1x1,html[data-netbox-color-mode=dark] .ratio-1x1,html[data-netbox-color-mode=light] .ratio-1x1{--bs-aspect-ratio: 100%}}@media print{html .ratio-4x3,html[data-netbox-color-mode=dark] .ratio-4x3,html[data-netbox-color-mode=light] .ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}}@media print{html .ratio-16x9,html[data-netbox-color-mode=dark] .ratio-16x9,html[data-netbox-color-mode=light] .ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}}@media print{html .ratio-21x9,html[data-netbox-color-mode=dark] .ratio-21x9,html[data-netbox-color-mode=light] .ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}}@media print{html .fixed-top,html[data-netbox-color-mode=dark] .fixed-top,html[data-netbox-color-mode=light] .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}}@media print{html .fixed-bottom,html[data-netbox-color-mode=dark] .fixed-bottom,html[data-netbox-color-mode=light] .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}}@media print{html .sticky-top,html[data-netbox-color-mode=dark] .sticky-top,html[data-netbox-color-mode=light] .sticky-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 576px){html .sticky-sm-top,html[data-netbox-color-mode=dark] .sticky-sm-top,html[data-netbox-color-mode=light] .sticky-sm-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 768px){html .sticky-md-top,html[data-netbox-color-mode=dark] .sticky-md-top,html[data-netbox-color-mode=light] .sticky-md-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 992px){html .sticky-lg-top,html[data-netbox-color-mode=dark] .sticky-lg-top,html[data-netbox-color-mode=light] .sticky-lg-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 1200px){html .sticky-xl-top,html[data-netbox-color-mode=dark] .sticky-xl-top,html[data-netbox-color-mode=light] .sticky-xl-top{position:sticky;top:0;z-index:1020}}@media print and (min-width: 1400px){html .sticky-xxl-top,html[data-netbox-color-mode=dark] .sticky-xxl-top,html[data-netbox-color-mode=light] .sticky-xxl-top{position:sticky;top:0;z-index:1020}}@media print{html .visually-hidden,html .visually-hidden-focusable:not(:focus):not(:focus-within),html[data-netbox-color-mode=dark] .visually-hidden,html[data-netbox-color-mode=dark] .visually-hidden-focusable:not(:focus):not(:focus-within),html[data-netbox-color-mode=light] .visually-hidden,html[data-netbox-color-mode=light] .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}}@media print{html .stretched-link:after,html[data-netbox-color-mode=dark] .stretched-link:after,html[data-netbox-color-mode=light] .stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}}@media print{html .text-truncate,html[data-netbox-color-mode=dark] .text-truncate,html[data-netbox-color-mode=light] .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}@media print{html .align-baseline,html[data-netbox-color-mode=dark] .align-baseline,html[data-netbox-color-mode=light] .align-baseline{vertical-align:baseline!important}}@media print{html .align-top,html[data-netbox-color-mode=dark] .align-top,html[data-netbox-color-mode=light] .align-top{vertical-align:top!important}}@media print{html .align-middle,html[data-netbox-color-mode=dark] .align-middle,html[data-netbox-color-mode=light] .align-middle{vertical-align:middle!important}}@media print{html .align-bottom,html[data-netbox-color-mode=dark] .align-bottom,html[data-netbox-color-mode=light] .align-bottom{vertical-align:bottom!important}}@media print{html .align-text-bottom,html[data-netbox-color-mode=dark] .align-text-bottom,html[data-netbox-color-mode=light] .align-text-bottom{vertical-align:text-bottom!important}}@media print{html .align-text-top,html[data-netbox-color-mode=dark] .align-text-top,html[data-netbox-color-mode=light] .align-text-top{vertical-align:text-top!important}}@media print{html .float-start,html[data-netbox-color-mode=dark] .float-start,html[data-netbox-color-mode=light] .float-start{float:left!important}}@media print{html .float-end,html[data-netbox-color-mode=dark] .float-end,html[data-netbox-color-mode=light] .float-end{float:right!important}}@media print{html .float-none,html[data-netbox-color-mode=dark] .float-none,html[data-netbox-color-mode=light] .float-none{float:none!important}}@media print{html .overflow-auto,html[data-netbox-color-mode=dark] .overflow-auto,html[data-netbox-color-mode=light] .overflow-auto{overflow:auto!important}}@media print{html .overflow-hidden,html[data-netbox-color-mode=dark] .overflow-hidden,html[data-netbox-color-mode=light] .overflow-hidden{overflow:hidden!important}}@media print{html .overflow-visible,html[data-netbox-color-mode=dark] .overflow-visible,html[data-netbox-color-mode=light] .overflow-visible{overflow:visible!important}}@media print{html .overflow-scroll,html[data-netbox-color-mode=dark] .overflow-scroll,html[data-netbox-color-mode=light] .overflow-scroll{overflow:scroll!important}}@media print{html .d-inline,html[data-netbox-color-mode=dark] .d-inline,html[data-netbox-color-mode=light] .d-inline{display:inline!important}}@media print{html .d-inline-block,html[data-netbox-color-mode=dark] .d-inline-block,html[data-netbox-color-mode=light] .d-inline-block{display:inline-block!important}}@media print{html .d-block,html[data-netbox-color-mode=dark] .d-block,html[data-netbox-color-mode=light] .d-block{display:block!important}}@media print{html .d-grid,html[data-netbox-color-mode=dark] .d-grid,html[data-netbox-color-mode=light] .d-grid{display:grid!important}}@media print{html .d-table,html[data-netbox-color-mode=dark] .d-table,html[data-netbox-color-mode=light] .d-table{display:table!important}}@media print{html .d-table-row,html[data-netbox-color-mode=dark] .d-table-row,html[data-netbox-color-mode=light] .d-table-row{display:table-row!important}}@media print{html .d-table-cell,html[data-netbox-color-mode=dark] .d-table-cell,html[data-netbox-color-mode=light] .d-table-cell{display:table-cell!important}}@media print{html .d-flex,html[data-netbox-color-mode=dark] .d-flex,html[data-netbox-color-mode=light] .d-flex{display:flex!important}}@media print{html .d-inline-flex,html[data-netbox-color-mode=dark] .d-inline-flex,html[data-netbox-color-mode=light] .d-inline-flex{display:inline-flex!important}}@media print{html .d-none,html[data-netbox-color-mode=dark] .d-none,html[data-netbox-color-mode=light] .d-none{display:none!important}}@media print{html .shadow,html[data-netbox-color-mode=dark] .shadow,html[data-netbox-color-mode=light] .shadow{box-shadow:0 .5rem 1rem #00000026!important}}@media print{html .shadow-sm,html[data-netbox-color-mode=dark] .shadow-sm,html[data-netbox-color-mode=light] .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}}@media print{html .shadow-lg,html[data-netbox-color-mode=dark] .shadow-lg,html[data-netbox-color-mode=light] .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}}@media print{html .shadow-none,html[data-netbox-color-mode=dark] .shadow-none,html[data-netbox-color-mode=light] .shadow-none{box-shadow:none!important}}@media print{html .position-static,html[data-netbox-color-mode=dark] .position-static,html[data-netbox-color-mode=light] .position-static{position:static!important}}@media print{html .position-relative,html[data-netbox-color-mode=dark] .position-relative,html[data-netbox-color-mode=light] .position-relative{position:relative!important}}@media print{html .position-absolute,html[data-netbox-color-mode=dark] .position-absolute,html[data-netbox-color-mode=light] .position-absolute{position:absolute!important}}@media print{html .position-fixed,html[data-netbox-color-mode=dark] .position-fixed,html[data-netbox-color-mode=light] .position-fixed{position:fixed!important}}@media print{html .position-sticky,html[data-netbox-color-mode=dark] .position-sticky,html[data-netbox-color-mode=light] .position-sticky{position:sticky!important}}@media print{html .top-0,html[data-netbox-color-mode=dark] .top-0,html[data-netbox-color-mode=light] .top-0{top:0!important}}@media print{html .top-50,html[data-netbox-color-mode=dark] .top-50,html[data-netbox-color-mode=light] .top-50{top:50%!important}}@media print{html .top-100,html[data-netbox-color-mode=dark] .top-100,html[data-netbox-color-mode=light] .top-100{top:100%!important}}@media print{html .bottom-0,html[data-netbox-color-mode=dark] .bottom-0,html[data-netbox-color-mode=light] .bottom-0{bottom:0!important}}@media print{html .bottom-50,html[data-netbox-color-mode=dark] .bottom-50,html[data-netbox-color-mode=light] .bottom-50{bottom:50%!important}}@media print{html .bottom-100,html[data-netbox-color-mode=dark] .bottom-100,html[data-netbox-color-mode=light] .bottom-100{bottom:100%!important}}@media print{html .start-0,html[data-netbox-color-mode=dark] .start-0,html[data-netbox-color-mode=light] .start-0{left:0!important}}@media print{html .start-50,html[data-netbox-color-mode=dark] .start-50,html[data-netbox-color-mode=light] .start-50{left:50%!important}}@media print{html .start-100,html[data-netbox-color-mode=dark] .start-100,html[data-netbox-color-mode=light] .start-100{left:100%!important}}@media print{html .end-0,html[data-netbox-color-mode=dark] .end-0,html[data-netbox-color-mode=light] .end-0{right:0!important}}@media print{html .end-50,html[data-netbox-color-mode=dark] .end-50,html[data-netbox-color-mode=light] .end-50{right:50%!important}}@media print{html .end-100,html[data-netbox-color-mode=dark] .end-100,html[data-netbox-color-mode=light] .end-100{right:100%!important}}@media print{html .translate-middle,html[data-netbox-color-mode=dark] .translate-middle,html[data-netbox-color-mode=light] .translate-middle{transform:translate(-50%,-50%)!important}}@media print{html .translate-middle-x,html[data-netbox-color-mode=dark] .translate-middle-x,html[data-netbox-color-mode=light] .translate-middle-x{transform:translate(-50%)!important}}@media print{html .translate-middle-y,html[data-netbox-color-mode=dark] .translate-middle-y,html[data-netbox-color-mode=light] .translate-middle-y{transform:translateY(-50%)!important}}@media print{html .border,html[data-netbox-color-mode=dark] .border,html[data-netbox-color-mode=light] .border{border:1px solid #dee2e6!important}}@media print{html .border-0,html[data-netbox-color-mode=dark] .border-0,html[data-netbox-color-mode=light] .border-0{border:0!important}}@media print{html .border-top,html[data-netbox-color-mode=dark] .border-top,html[data-netbox-color-mode=light] .border-top{border-top:1px solid #dee2e6!important}}@media print{html .border-top-0,html[data-netbox-color-mode=dark] .border-top-0,html[data-netbox-color-mode=light] .border-top-0{border-top:0!important}}@media print{html .border-end,html[data-netbox-color-mode=dark] .border-end,html[data-netbox-color-mode=light] .border-end{border-right:1px solid #dee2e6!important}}@media print{html .border-end-0,html[data-netbox-color-mode=dark] .border-end-0,html[data-netbox-color-mode=light] .border-end-0{border-right:0!important}}@media print{html .border-bottom,html[data-netbox-color-mode=dark] .border-bottom,html[data-netbox-color-mode=light] .border-bottom{border-bottom:1px solid #dee2e6!important}}@media print{html .border-bottom-0,html[data-netbox-color-mode=dark] .border-bottom-0,html[data-netbox-color-mode=light] .border-bottom-0{border-bottom:0!important}}@media print{html .border-start,html[data-netbox-color-mode=dark] .border-start,html[data-netbox-color-mode=light] .border-start{border-left:1px solid #dee2e6!important}}@media print{html .border-start-0,html[data-netbox-color-mode=dark] .border-start-0,html[data-netbox-color-mode=light] .border-start-0{border-left:0!important}}@media print{html .border-primary,html[data-netbox-color-mode=dark] .border-primary,html[data-netbox-color-mode=light] .border-primary{border-color:#337ab7!important}}@media print{html .border-secondary,html[data-netbox-color-mode=dark] .border-secondary,html[data-netbox-color-mode=light] .border-secondary{border-color:#6c757d!important}}@media print{html .border-success,html[data-netbox-color-mode=dark] .border-success,html[data-netbox-color-mode=light] .border-success{border-color:#198754!important}}@media print{html .border-info,html[data-netbox-color-mode=dark] .border-info,html[data-netbox-color-mode=light] .border-info{border-color:#0dcaf0!important}}@media print{html .border-warning,html[data-netbox-color-mode=dark] .border-warning,html[data-netbox-color-mode=light] .border-warning{border-color:#ffc107!important}}@media print{html .border-danger,html[data-netbox-color-mode=dark] .border-danger,html[data-netbox-color-mode=light] .border-danger{border-color:#dc3545!important}}@media print{html .border-light,html[data-netbox-color-mode=dark] .border-light,html[data-netbox-color-mode=light] .border-light{border-color:#f8f9fa!important}}@media print{html .border-dark,html[data-netbox-color-mode=dark] .border-dark,html[data-netbox-color-mode=light] .border-dark{border-color:#212529!important}}@media print{html .border-red,html[data-netbox-color-mode=dark] .border-red,html[data-netbox-color-mode=light] .border-red{border-color:#dc3545!important}}@media print{html .border-yellow,html[data-netbox-color-mode=dark] .border-yellow,html[data-netbox-color-mode=light] .border-yellow{border-color:#ffc107!important}}@media print{html .border-green,html[data-netbox-color-mode=dark] .border-green,html[data-netbox-color-mode=light] .border-green{border-color:#198754!important}}@media print{html .border-blue,html[data-netbox-color-mode=dark] .border-blue,html[data-netbox-color-mode=light] .border-blue{border-color:#0d6efd!important}}@media print{html .border-cyan,html[data-netbox-color-mode=dark] .border-cyan,html[data-netbox-color-mode=light] .border-cyan{border-color:#0dcaf0!important}}@media print{html .border-indigo,html[data-netbox-color-mode=dark] .border-indigo,html[data-netbox-color-mode=light] .border-indigo{border-color:#6610f2!important}}@media print{html .border-purple,html[data-netbox-color-mode=dark] .border-purple,html[data-netbox-color-mode=light] .border-purple{border-color:#6f42c1!important}}@media print{html .border-pink,html[data-netbox-color-mode=dark] .border-pink,html[data-netbox-color-mode=light] .border-pink{border-color:#d63384!important}}@media print{html .border-darker,html[data-netbox-color-mode=dark] .border-darker,html[data-netbox-color-mode=light] .border-darker{border-color:#1b1f22!important}}@media print{html .border-darkest,html[data-netbox-color-mode=dark] .border-darkest,html[data-netbox-color-mode=light] .border-darkest{border-color:#171b1d!important}}@media print{html .border-gray,html[data-netbox-color-mode=dark] .border-gray,html[data-netbox-color-mode=light] .border-gray{border-color:#ced4da!important}}@media print{html .border-gray-100,html[data-netbox-color-mode=dark] .border-gray-100,html[data-netbox-color-mode=light] .border-gray-100{border-color:#f8f9fa!important}}@media print{html .border-gray-200,html[data-netbox-color-mode=dark] .border-gray-200,html[data-netbox-color-mode=light] .border-gray-200{border-color:#e9ecef!important}}@media print{html .border-gray-300,html[data-netbox-color-mode=dark] .border-gray-300,html[data-netbox-color-mode=light] .border-gray-300{border-color:#dee2e6!important}}@media print{html .border-gray-400,html[data-netbox-color-mode=dark] .border-gray-400,html[data-netbox-color-mode=light] .border-gray-400{border-color:#ced4da!important}}@media print{html .border-gray-500,html[data-netbox-color-mode=dark] .border-gray-500,html[data-netbox-color-mode=light] .border-gray-500{border-color:#adb5bd!important}}@media print{html .border-gray-600,html[data-netbox-color-mode=dark] .border-gray-600,html[data-netbox-color-mode=light] .border-gray-600{border-color:#6c757d!important}}@media print{html .border-gray-700,html[data-netbox-color-mode=dark] .border-gray-700,html[data-netbox-color-mode=light] .border-gray-700{border-color:#495057!important}}@media print{html .border-gray-800,html[data-netbox-color-mode=dark] .border-gray-800,html[data-netbox-color-mode=light] .border-gray-800{border-color:#343a40!important}}@media print{html .border-gray-900,html[data-netbox-color-mode=dark] .border-gray-900,html[data-netbox-color-mode=light] .border-gray-900{border-color:#212529!important}}@media print{html .border-red-100,html[data-netbox-color-mode=dark] .border-red-100,html[data-netbox-color-mode=light] .border-red-100{border-color:#f8d7da!important}}@media print{html .border-red-200,html[data-netbox-color-mode=dark] .border-red-200,html[data-netbox-color-mode=light] .border-red-200{border-color:#f1aeb5!important}}@media print{html .border-red-300,html[data-netbox-color-mode=dark] .border-red-300,html[data-netbox-color-mode=light] .border-red-300{border-color:#ea868f!important}}@media print{html .border-red-400,html[data-netbox-color-mode=dark] .border-red-400,html[data-netbox-color-mode=light] .border-red-400{border-color:#e35d6a!important}}@media print{html .border-red-500,html[data-netbox-color-mode=dark] .border-red-500,html[data-netbox-color-mode=light] .border-red-500{border-color:#dc3545!important}}@media print{html .border-red-600,html[data-netbox-color-mode=dark] .border-red-600,html[data-netbox-color-mode=light] .border-red-600{border-color:#b02a37!important}}@media print{html .border-red-700,html[data-netbox-color-mode=dark] .border-red-700,html[data-netbox-color-mode=light] .border-red-700{border-color:#842029!important}}@media print{html .border-red-800,html[data-netbox-color-mode=dark] .border-red-800,html[data-netbox-color-mode=light] .border-red-800{border-color:#58151c!important}}@media print{html .border-red-900,html[data-netbox-color-mode=dark] .border-red-900,html[data-netbox-color-mode=light] .border-red-900{border-color:#2c0b0e!important}}@media print{html .border-yellow-100,html[data-netbox-color-mode=dark] .border-yellow-100,html[data-netbox-color-mode=light] .border-yellow-100{border-color:#fff3cd!important}}@media print{html .border-yellow-200,html[data-netbox-color-mode=dark] .border-yellow-200,html[data-netbox-color-mode=light] .border-yellow-200{border-color:#ffe69c!important}}@media print{html .border-yellow-300,html[data-netbox-color-mode=dark] .border-yellow-300,html[data-netbox-color-mode=light] .border-yellow-300{border-color:#ffda6a!important}}@media print{html .border-yellow-400,html[data-netbox-color-mode=dark] .border-yellow-400,html[data-netbox-color-mode=light] .border-yellow-400{border-color:#ffcd39!important}}@media print{html .border-yellow-500,html[data-netbox-color-mode=dark] .border-yellow-500,html[data-netbox-color-mode=light] .border-yellow-500{border-color:#ffc107!important}}@media print{html .border-yellow-600,html[data-netbox-color-mode=dark] .border-yellow-600,html[data-netbox-color-mode=light] .border-yellow-600{border-color:#cc9a06!important}}@media print{html .border-yellow-700,html[data-netbox-color-mode=dark] .border-yellow-700,html[data-netbox-color-mode=light] .border-yellow-700{border-color:#997404!important}}@media print{html .border-yellow-800,html[data-netbox-color-mode=dark] .border-yellow-800,html[data-netbox-color-mode=light] .border-yellow-800{border-color:#664d03!important}}@media print{html .border-yellow-900,html[data-netbox-color-mode=dark] .border-yellow-900,html[data-netbox-color-mode=light] .border-yellow-900{border-color:#332701!important}}@media print{html .border-green-100,html[data-netbox-color-mode=dark] .border-green-100,html[data-netbox-color-mode=light] .border-green-100{border-color:#d1e7dd!important}}@media print{html .border-green-200,html[data-netbox-color-mode=dark] .border-green-200,html[data-netbox-color-mode=light] .border-green-200{border-color:#a3cfbb!important}}@media print{html .border-green-300,html[data-netbox-color-mode=dark] .border-green-300,html[data-netbox-color-mode=light] .border-green-300{border-color:#75b798!important}}@media print{html .border-green-400,html[data-netbox-color-mode=dark] .border-green-400,html[data-netbox-color-mode=light] .border-green-400{border-color:#479f76!important}}@media print{html .border-green-500,html[data-netbox-color-mode=dark] .border-green-500,html[data-netbox-color-mode=light] .border-green-500{border-color:#198754!important}}@media print{html .border-green-600,html[data-netbox-color-mode=dark] .border-green-600,html[data-netbox-color-mode=light] .border-green-600{border-color:#146c43!important}}@media print{html .border-green-700,html[data-netbox-color-mode=dark] .border-green-700,html[data-netbox-color-mode=light] .border-green-700{border-color:#0f5132!important}}@media print{html .border-green-800,html[data-netbox-color-mode=dark] .border-green-800,html[data-netbox-color-mode=light] .border-green-800{border-color:#0a3622!important}}@media print{html .border-green-900,html[data-netbox-color-mode=dark] .border-green-900,html[data-netbox-color-mode=light] .border-green-900{border-color:#051b11!important}}@media print{html .border-blue-100,html[data-netbox-color-mode=dark] .border-blue-100,html[data-netbox-color-mode=light] .border-blue-100{border-color:#cfe2ff!important}}@media print{html .border-blue-200,html[data-netbox-color-mode=dark] .border-blue-200,html[data-netbox-color-mode=light] .border-blue-200{border-color:#9ec5fe!important}}@media print{html .border-blue-300,html[data-netbox-color-mode=dark] .border-blue-300,html[data-netbox-color-mode=light] .border-blue-300{border-color:#6ea8fe!important}}@media print{html .border-blue-400,html[data-netbox-color-mode=dark] .border-blue-400,html[data-netbox-color-mode=light] .border-blue-400{border-color:#3d8bfd!important}}@media print{html .border-blue-500,html[data-netbox-color-mode=dark] .border-blue-500,html[data-netbox-color-mode=light] .border-blue-500{border-color:#0d6efd!important}}@media print{html .border-blue-600,html[data-netbox-color-mode=dark] .border-blue-600,html[data-netbox-color-mode=light] .border-blue-600{border-color:#0a58ca!important}}@media print{html .border-blue-700,html[data-netbox-color-mode=dark] .border-blue-700,html[data-netbox-color-mode=light] .border-blue-700{border-color:#084298!important}}@media print{html .border-blue-800,html[data-netbox-color-mode=dark] .border-blue-800,html[data-netbox-color-mode=light] .border-blue-800{border-color:#052c65!important}}@media print{html .border-blue-900,html[data-netbox-color-mode=dark] .border-blue-900,html[data-netbox-color-mode=light] .border-blue-900{border-color:#031633!important}}@media print{html .border-cyan-100,html[data-netbox-color-mode=dark] .border-cyan-100,html[data-netbox-color-mode=light] .border-cyan-100{border-color:#cff4fc!important}}@media print{html .border-cyan-200,html[data-netbox-color-mode=dark] .border-cyan-200,html[data-netbox-color-mode=light] .border-cyan-200{border-color:#9eeaf9!important}}@media print{html .border-cyan-300,html[data-netbox-color-mode=dark] .border-cyan-300,html[data-netbox-color-mode=light] .border-cyan-300{border-color:#6edff6!important}}@media print{html .border-cyan-400,html[data-netbox-color-mode=dark] .border-cyan-400,html[data-netbox-color-mode=light] .border-cyan-400{border-color:#3dd5f3!important}}@media print{html .border-cyan-500,html[data-netbox-color-mode=dark] .border-cyan-500,html[data-netbox-color-mode=light] .border-cyan-500{border-color:#0dcaf0!important}}@media print{html .border-cyan-600,html[data-netbox-color-mode=dark] .border-cyan-600,html[data-netbox-color-mode=light] .border-cyan-600{border-color:#0aa2c0!important}}@media print{html .border-cyan-700,html[data-netbox-color-mode=dark] .border-cyan-700,html[data-netbox-color-mode=light] .border-cyan-700{border-color:#087990!important}}@media print{html .border-cyan-800,html[data-netbox-color-mode=dark] .border-cyan-800,html[data-netbox-color-mode=light] .border-cyan-800{border-color:#055160!important}}@media print{html .border-cyan-900,html[data-netbox-color-mode=dark] .border-cyan-900,html[data-netbox-color-mode=light] .border-cyan-900{border-color:#032830!important}}@media print{html .border-indigo-100,html[data-netbox-color-mode=dark] .border-indigo-100,html[data-netbox-color-mode=light] .border-indigo-100{border-color:#e0cffc!important}}@media print{html .border-indigo-200,html[data-netbox-color-mode=dark] .border-indigo-200,html[data-netbox-color-mode=light] .border-indigo-200{border-color:#c29ffa!important}}@media print{html .border-indigo-300,html[data-netbox-color-mode=dark] .border-indigo-300,html[data-netbox-color-mode=light] .border-indigo-300{border-color:#a370f7!important}}@media print{html .border-indigo-400,html[data-netbox-color-mode=dark] .border-indigo-400,html[data-netbox-color-mode=light] .border-indigo-400{border-color:#8540f5!important}}@media print{html .border-indigo-500,html[data-netbox-color-mode=dark] .border-indigo-500,html[data-netbox-color-mode=light] .border-indigo-500{border-color:#6610f2!important}}@media print{html .border-indigo-600,html[data-netbox-color-mode=dark] .border-indigo-600,html[data-netbox-color-mode=light] .border-indigo-600{border-color:#520dc2!important}}@media print{html .border-indigo-700,html[data-netbox-color-mode=dark] .border-indigo-700,html[data-netbox-color-mode=light] .border-indigo-700{border-color:#3d0a91!important}}@media print{html .border-indigo-800,html[data-netbox-color-mode=dark] .border-indigo-800,html[data-netbox-color-mode=light] .border-indigo-800{border-color:#290661!important}}@media print{html .border-indigo-900,html[data-netbox-color-mode=dark] .border-indigo-900,html[data-netbox-color-mode=light] .border-indigo-900{border-color:#140330!important}}@media print{html .border-purple-100,html[data-netbox-color-mode=dark] .border-purple-100,html[data-netbox-color-mode=light] .border-purple-100{border-color:#e2d9f3!important}}@media print{html .border-purple-200,html[data-netbox-color-mode=dark] .border-purple-200,html[data-netbox-color-mode=light] .border-purple-200{border-color:#c5b3e6!important}}@media print{html .border-purple-300,html[data-netbox-color-mode=dark] .border-purple-300,html[data-netbox-color-mode=light] .border-purple-300{border-color:#a98eda!important}}@media print{html .border-purple-400,html[data-netbox-color-mode=dark] .border-purple-400,html[data-netbox-color-mode=light] .border-purple-400{border-color:#8c68cd!important}}@media print{html .border-purple-500,html[data-netbox-color-mode=dark] .border-purple-500,html[data-netbox-color-mode=light] .border-purple-500{border-color:#6f42c1!important}}@media print{html .border-purple-600,html[data-netbox-color-mode=dark] .border-purple-600,html[data-netbox-color-mode=light] .border-purple-600{border-color:#59359a!important}}@media print{html .border-purple-700,html[data-netbox-color-mode=dark] .border-purple-700,html[data-netbox-color-mode=light] .border-purple-700{border-color:#432874!important}}@media print{html .border-purple-800,html[data-netbox-color-mode=dark] .border-purple-800,html[data-netbox-color-mode=light] .border-purple-800{border-color:#2c1a4d!important}}@media print{html .border-purple-900,html[data-netbox-color-mode=dark] .border-purple-900,html[data-netbox-color-mode=light] .border-purple-900{border-color:#160d27!important}}@media print{html .border-pink-100,html[data-netbox-color-mode=dark] .border-pink-100,html[data-netbox-color-mode=light] .border-pink-100{border-color:#f7d6e6!important}}@media print{html .border-pink-200,html[data-netbox-color-mode=dark] .border-pink-200,html[data-netbox-color-mode=light] .border-pink-200{border-color:#efadce!important}}@media print{html .border-pink-300,html[data-netbox-color-mode=dark] .border-pink-300,html[data-netbox-color-mode=light] .border-pink-300{border-color:#e685b5!important}}@media print{html .border-pink-400,html[data-netbox-color-mode=dark] .border-pink-400,html[data-netbox-color-mode=light] .border-pink-400{border-color:#de5c9d!important}}@media print{html .border-pink-500,html[data-netbox-color-mode=dark] .border-pink-500,html[data-netbox-color-mode=light] .border-pink-500{border-color:#d63384!important}}@media print{html .border-pink-600,html[data-netbox-color-mode=dark] .border-pink-600,html[data-netbox-color-mode=light] .border-pink-600{border-color:#ab296a!important}}@media print{html .border-pink-700,html[data-netbox-color-mode=dark] .border-pink-700,html[data-netbox-color-mode=light] .border-pink-700{border-color:#801f4f!important}}@media print{html .border-pink-800,html[data-netbox-color-mode=dark] .border-pink-800,html[data-netbox-color-mode=light] .border-pink-800{border-color:#561435!important}}@media print{html .border-pink-900,html[data-netbox-color-mode=dark] .border-pink-900,html[data-netbox-color-mode=light] .border-pink-900{border-color:#2b0a1a!important}}@media print{html .border-white,html[data-netbox-color-mode=dark] .border-white,html[data-netbox-color-mode=light] .border-white{border-color:#fff!important}}@media print{html .border-1,html[data-netbox-color-mode=dark] .border-1,html[data-netbox-color-mode=light] .border-1{border-width:1px!important}}@media print{html .border-2,html[data-netbox-color-mode=dark] .border-2,html[data-netbox-color-mode=light] .border-2{border-width:2px!important}}@media print{html .border-3,html[data-netbox-color-mode=dark] .border-3,html[data-netbox-color-mode=light] .border-3{border-width:3px!important}}@media print{html .border-4,html[data-netbox-color-mode=dark] .border-4,html[data-netbox-color-mode=light] .border-4{border-width:4px!important}}@media print{html .border-5,html[data-netbox-color-mode=dark] .border-5,html[data-netbox-color-mode=light] .border-5{border-width:5px!important}}@media print{html .w-25,html[data-netbox-color-mode=dark] .w-25,html[data-netbox-color-mode=light] .w-25{width:25%!important}}@media print{html .w-50,html[data-netbox-color-mode=dark] .w-50,html[data-netbox-color-mode=light] .w-50{width:50%!important}}@media print{html .w-75,html[data-netbox-color-mode=dark] .w-75,html[data-netbox-color-mode=light] .w-75{width:75%!important}}@media print{html .w-100,html[data-netbox-color-mode=dark] .w-100,html[data-netbox-color-mode=light] .w-100{width:100%!important}}@media print{html .w-auto,html[data-netbox-color-mode=dark] .w-auto,html[data-netbox-color-mode=light] .w-auto{width:auto!important}}@media print{html .mw-100,html[data-netbox-color-mode=dark] .mw-100,html[data-netbox-color-mode=light] .mw-100{max-width:100%!important}}@media print{html .vw-100,html[data-netbox-color-mode=dark] .vw-100,html[data-netbox-color-mode=light] .vw-100{width:100vw!important}}@media print{html .min-vw-100,html[data-netbox-color-mode=dark] .min-vw-100,html[data-netbox-color-mode=light] .min-vw-100{min-width:100vw!important}}@media print{html .h-25,html[data-netbox-color-mode=dark] .h-25,html[data-netbox-color-mode=light] .h-25{height:25%!important}}@media print{html .h-50,html[data-netbox-color-mode=dark] .h-50,html[data-netbox-color-mode=light] .h-50{height:50%!important}}@media print{html .h-75,html[data-netbox-color-mode=dark] .h-75,html[data-netbox-color-mode=light] .h-75{height:75%!important}}@media print{html .h-100,html[data-netbox-color-mode=dark] .h-100,html[data-netbox-color-mode=light] .h-100{height:100%!important}}@media print{html .h-auto,html[data-netbox-color-mode=dark] .h-auto,html[data-netbox-color-mode=light] .h-auto{height:auto!important}}@media print{html .mh-100,html[data-netbox-color-mode=dark] .mh-100,html[data-netbox-color-mode=light] .mh-100{max-height:100%!important}}@media print{html .vh-100,html[data-netbox-color-mode=dark] .vh-100,html[data-netbox-color-mode=light] .vh-100{height:100vh!important}}@media print{html .min-vh-100,html[data-netbox-color-mode=dark] .min-vh-100,html[data-netbox-color-mode=light] .min-vh-100{min-height:100vh!important}}@media print{html .flex-fill,html[data-netbox-color-mode=dark] .flex-fill,html[data-netbox-color-mode=light] .flex-fill{flex:1 1 auto!important}}@media print{html .flex-row,html[data-netbox-color-mode=dark] .flex-row,html[data-netbox-color-mode=light] .flex-row{flex-direction:row!important}}@media print{html .flex-column,html[data-netbox-color-mode=dark] .flex-column,html[data-netbox-color-mode=light] .flex-column{flex-direction:column!important}}@media print{html .flex-row-reverse,html[data-netbox-color-mode=dark] .flex-row-reverse,html[data-netbox-color-mode=light] .flex-row-reverse{flex-direction:row-reverse!important}}@media print{html .flex-column-reverse,html[data-netbox-color-mode=dark] .flex-column-reverse,html[data-netbox-color-mode=light] .flex-column-reverse{flex-direction:column-reverse!important}}@media print{html .flex-grow-0,html[data-netbox-color-mode=dark] .flex-grow-0,html[data-netbox-color-mode=light] .flex-grow-0{flex-grow:0!important}}@media print{html .flex-grow-1,html[data-netbox-color-mode=dark] .flex-grow-1,html[data-netbox-color-mode=light] .flex-grow-1{flex-grow:1!important}}@media print{html .flex-shrink-0,html[data-netbox-color-mode=dark] .flex-shrink-0,html[data-netbox-color-mode=light] .flex-shrink-0{flex-shrink:0!important}}@media print{html .flex-shrink-1,html[data-netbox-color-mode=dark] .flex-shrink-1,html[data-netbox-color-mode=light] .flex-shrink-1{flex-shrink:1!important}}@media print{html .flex-wrap,html[data-netbox-color-mode=dark] .flex-wrap,html[data-netbox-color-mode=light] .flex-wrap{flex-wrap:wrap!important}}@media print{html .flex-nowrap,html[data-netbox-color-mode=dark] .flex-nowrap,html[data-netbox-color-mode=light] .flex-nowrap{flex-wrap:nowrap!important}}@media print{html .flex-wrap-reverse,html[data-netbox-color-mode=dark] .flex-wrap-reverse,html[data-netbox-color-mode=light] .flex-wrap-reverse{flex-wrap:wrap-reverse!important}}@media print{html .gap-0,html[data-netbox-color-mode=dark] .gap-0,html[data-netbox-color-mode=light] .gap-0{gap:0!important}}@media print{html .gap-1,html[data-netbox-color-mode=dark] .gap-1,html[data-netbox-color-mode=light] .gap-1{gap:.25rem!important}}@media print{html .gap-2,html[data-netbox-color-mode=dark] .gap-2,html[data-netbox-color-mode=light] .gap-2{gap:.5rem!important}}@media print{html .gap-3,html[data-netbox-color-mode=dark] .gap-3,html[data-netbox-color-mode=light] .gap-3{gap:1rem!important}}@media print{html .gap-4,html[data-netbox-color-mode=dark] .gap-4,html[data-netbox-color-mode=light] .gap-4{gap:1.5rem!important}}@media print{html .gap-5,html[data-netbox-color-mode=dark] .gap-5,html[data-netbox-color-mode=light] .gap-5{gap:3rem!important}}@media print{html .justify-content-start,html[data-netbox-color-mode=dark] .justify-content-start,html[data-netbox-color-mode=light] .justify-content-start{justify-content:flex-start!important}}@media print{html .justify-content-end,html[data-netbox-color-mode=dark] .justify-content-end,html[data-netbox-color-mode=light] .justify-content-end{justify-content:flex-end!important}}@media print{html .justify-content-center,html[data-netbox-color-mode=dark] .justify-content-center,html[data-netbox-color-mode=light] .justify-content-center{justify-content:center!important}}@media print{html .justify-content-between,html[data-netbox-color-mode=dark] .justify-content-between,html[data-netbox-color-mode=light] .justify-content-between{justify-content:space-between!important}}@media print{html .justify-content-around,html[data-netbox-color-mode=dark] .justify-content-around,html[data-netbox-color-mode=light] .justify-content-around{justify-content:space-around!important}}@media print{html .justify-content-evenly,html[data-netbox-color-mode=dark] .justify-content-evenly,html[data-netbox-color-mode=light] .justify-content-evenly{justify-content:space-evenly!important}}@media print{html .align-items-start,html[data-netbox-color-mode=dark] .align-items-start,html[data-netbox-color-mode=light] .align-items-start{align-items:flex-start!important}}@media print{html .align-items-end,html[data-netbox-color-mode=dark] .align-items-end,html[data-netbox-color-mode=light] .align-items-end{align-items:flex-end!important}}@media print{html .align-items-center,html[data-netbox-color-mode=dark] .align-items-center,html[data-netbox-color-mode=light] .align-items-center{align-items:center!important}}@media print{html .align-items-baseline,html[data-netbox-color-mode=dark] .align-items-baseline,html[data-netbox-color-mode=light] .align-items-baseline{align-items:baseline!important}}@media print{html .align-items-stretch,html[data-netbox-color-mode=dark] .align-items-stretch,html[data-netbox-color-mode=light] .align-items-stretch{align-items:stretch!important}}@media print{html .align-content-start,html[data-netbox-color-mode=dark] .align-content-start,html[data-netbox-color-mode=light] .align-content-start{align-content:flex-start!important}}@media print{html .align-content-end,html[data-netbox-color-mode=dark] .align-content-end,html[data-netbox-color-mode=light] .align-content-end{align-content:flex-end!important}}@media print{html .align-content-center,html[data-netbox-color-mode=dark] .align-content-center,html[data-netbox-color-mode=light] .align-content-center{align-content:center!important}}@media print{html .align-content-between,html[data-netbox-color-mode=dark] .align-content-between,html[data-netbox-color-mode=light] .align-content-between{align-content:space-between!important}}@media print{html .align-content-around,html[data-netbox-color-mode=dark] .align-content-around,html[data-netbox-color-mode=light] .align-content-around{align-content:space-around!important}}@media print{html .align-content-stretch,html[data-netbox-color-mode=dark] .align-content-stretch,html[data-netbox-color-mode=light] .align-content-stretch{align-content:stretch!important}}@media print{html .align-self-auto,html[data-netbox-color-mode=dark] .align-self-auto,html[data-netbox-color-mode=light] .align-self-auto{align-self:auto!important}}@media print{html .align-self-start,html[data-netbox-color-mode=dark] .align-self-start,html[data-netbox-color-mode=light] .align-self-start{align-self:flex-start!important}}@media print{html .align-self-end,html[data-netbox-color-mode=dark] .align-self-end,html[data-netbox-color-mode=light] .align-self-end{align-self:flex-end!important}}@media print{html .align-self-center,html[data-netbox-color-mode=dark] .align-self-center,html[data-netbox-color-mode=light] .align-self-center{align-self:center!important}}@media print{html .align-self-baseline,html[data-netbox-color-mode=dark] .align-self-baseline,html[data-netbox-color-mode=light] .align-self-baseline{align-self:baseline!important}}@media print{html .align-self-stretch,html[data-netbox-color-mode=dark] .align-self-stretch,html[data-netbox-color-mode=light] .align-self-stretch{align-self:stretch!important}}@media print{html .order-first,html[data-netbox-color-mode=dark] .order-first,html[data-netbox-color-mode=light] .order-first{order:-1!important}}@media print{html .order-0,html[data-netbox-color-mode=dark] .order-0,html[data-netbox-color-mode=light] .order-0{order:0!important}}@media print{html .order-1,html[data-netbox-color-mode=dark] .order-1,html[data-netbox-color-mode=light] .order-1{order:1!important}}@media print{html .order-2,html[data-netbox-color-mode=dark] .order-2,html[data-netbox-color-mode=light] .order-2{order:2!important}}@media print{html .order-3,html[data-netbox-color-mode=dark] .order-3,html[data-netbox-color-mode=light] .order-3{order:3!important}}@media print{html .order-4,html[data-netbox-color-mode=dark] .order-4,html[data-netbox-color-mode=light] .order-4{order:4!important}}@media print{html .order-5,html[data-netbox-color-mode=dark] .order-5,html[data-netbox-color-mode=light] .order-5{order:5!important}}@media print{html .order-last,html[data-netbox-color-mode=dark] .order-last,html[data-netbox-color-mode=light] .order-last{order:6!important}}@media print{html .m-0,html[data-netbox-color-mode=dark] .m-0,html[data-netbox-color-mode=light] .m-0{margin:0!important}}@media print{html .m-1,html[data-netbox-color-mode=dark] .m-1,html[data-netbox-color-mode=light] .m-1{margin:.25rem!important}}@media print{html .m-2,html[data-netbox-color-mode=dark] .m-2,html[data-netbox-color-mode=light] .m-2{margin:.5rem!important}}@media print{html .m-3,html[data-netbox-color-mode=dark] .m-3,html[data-netbox-color-mode=light] .m-3{margin:1rem!important}}@media print{html .m-4,html[data-netbox-color-mode=dark] .m-4,html[data-netbox-color-mode=light] .m-4{margin:1.5rem!important}}@media print{html .m-5,html[data-netbox-color-mode=dark] .m-5,html[data-netbox-color-mode=light] .m-5{margin:3rem!important}}@media print{html .m-auto,html[data-netbox-color-mode=dark] .m-auto,html[data-netbox-color-mode=light] .m-auto{margin:auto!important}}@media print{html .mx-0,html[data-netbox-color-mode=dark] .mx-0,html[data-netbox-color-mode=light] .mx-0{margin-right:0!important;margin-left:0!important}}@media print{html .mx-1,html[data-netbox-color-mode=dark] .mx-1,html[data-netbox-color-mode=light] .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}}@media print{html .mx-2,html[data-netbox-color-mode=dark] .mx-2,html[data-netbox-color-mode=light] .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}}@media print{html .mx-3,html[data-netbox-color-mode=dark] .mx-3,html[data-netbox-color-mode=light] .mx-3{margin-right:1rem!important;margin-left:1rem!important}}@media print{html .mx-4,html[data-netbox-color-mode=dark] .mx-4,html[data-netbox-color-mode=light] .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}}@media print{html .mx-5,html[data-netbox-color-mode=dark] .mx-5,html[data-netbox-color-mode=light] .mx-5{margin-right:3rem!important;margin-left:3rem!important}}@media print{html .mx-auto,html[data-netbox-color-mode=dark] .mx-auto,html[data-netbox-color-mode=light] .mx-auto{margin-right:auto!important;margin-left:auto!important}}@media print{html .my-0,html[data-netbox-color-mode=dark] .my-0,html[data-netbox-color-mode=light] .my-0{margin-top:0!important;margin-bottom:0!important}}@media print{html .my-1,html[data-netbox-color-mode=dark] .my-1,html[data-netbox-color-mode=light] .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}}@media print{html .my-2,html[data-netbox-color-mode=dark] .my-2,html[data-netbox-color-mode=light] .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}}@media print{html .my-3,html[data-netbox-color-mode=dark] .my-3,html[data-netbox-color-mode=light] .my-3{margin-top:1rem!important;margin-bottom:1rem!important}}@media print{html .my-4,html[data-netbox-color-mode=dark] .my-4,html[data-netbox-color-mode=light] .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}}@media print{html .my-5,html[data-netbox-color-mode=dark] .my-5,html[data-netbox-color-mode=light] .my-5{margin-top:3rem!important;margin-bottom:3rem!important}}@media print{html .my-auto,html[data-netbox-color-mode=dark] .my-auto,html[data-netbox-color-mode=light] .my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media print{html .mt-0,html[data-netbox-color-mode=dark] .mt-0,html[data-netbox-color-mode=light] .mt-0{margin-top:0!important}}@media print{html .mt-1,html[data-netbox-color-mode=dark] .mt-1,html[data-netbox-color-mode=light] .mt-1{margin-top:.25rem!important}}@media print{html .mt-2,html[data-netbox-color-mode=dark] .mt-2,html[data-netbox-color-mode=light] .mt-2{margin-top:.5rem!important}}@media print{html .mt-3,html[data-netbox-color-mode=dark] .mt-3,html[data-netbox-color-mode=light] .mt-3{margin-top:1rem!important}}@media print{html .mt-4,html[data-netbox-color-mode=dark] .mt-4,html[data-netbox-color-mode=light] .mt-4{margin-top:1.5rem!important}}@media print{html .mt-5,html[data-netbox-color-mode=dark] .mt-5,html[data-netbox-color-mode=light] .mt-5{margin-top:3rem!important}}@media print{html .mt-auto,html[data-netbox-color-mode=dark] .mt-auto,html[data-netbox-color-mode=light] .mt-auto{margin-top:auto!important}}@media print{html .me-0,html[data-netbox-color-mode=dark] .me-0,html[data-netbox-color-mode=light] .me-0{margin-right:0!important}}@media print{html .me-1,html[data-netbox-color-mode=dark] .me-1,html[data-netbox-color-mode=light] .me-1{margin-right:.25rem!important}}@media print{html .me-2,html[data-netbox-color-mode=dark] .me-2,html[data-netbox-color-mode=light] .me-2{margin-right:.5rem!important}}@media print{html .me-3,html[data-netbox-color-mode=dark] .me-3,html[data-netbox-color-mode=light] .me-3{margin-right:1rem!important}}@media print{html .me-4,html[data-netbox-color-mode=dark] .me-4,html[data-netbox-color-mode=light] .me-4{margin-right:1.5rem!important}}@media print{html .me-5,html[data-netbox-color-mode=dark] .me-5,html[data-netbox-color-mode=light] .me-5{margin-right:3rem!important}}@media print{html .me-auto,html[data-netbox-color-mode=dark] .me-auto,html[data-netbox-color-mode=light] .me-auto{margin-right:auto!important}}@media print{html .mb-0,html[data-netbox-color-mode=dark] .mb-0,html[data-netbox-color-mode=light] .mb-0{margin-bottom:0!important}}@media print{html .mb-1,html[data-netbox-color-mode=dark] .mb-1,html[data-netbox-color-mode=light] .mb-1{margin-bottom:.25rem!important}}@media print{html .mb-2,html[data-netbox-color-mode=dark] .mb-2,html[data-netbox-color-mode=light] .mb-2{margin-bottom:.5rem!important}}@media print{html .mb-3,html[data-netbox-color-mode=dark] .mb-3,html[data-netbox-color-mode=light] .mb-3{margin-bottom:1rem!important}}@media print{html .mb-4,html[data-netbox-color-mode=dark] .mb-4,html[data-netbox-color-mode=light] .mb-4{margin-bottom:1.5rem!important}}@media print{html .mb-5,html[data-netbox-color-mode=dark] .mb-5,html[data-netbox-color-mode=light] .mb-5{margin-bottom:3rem!important}}@media print{html .mb-auto,html[data-netbox-color-mode=dark] .mb-auto,html[data-netbox-color-mode=light] .mb-auto{margin-bottom:auto!important}}@media print{html .ms-0,html[data-netbox-color-mode=dark] .ms-0,html[data-netbox-color-mode=light] .ms-0{margin-left:0!important}}@media print{html .ms-1,html[data-netbox-color-mode=dark] .ms-1,html[data-netbox-color-mode=light] .ms-1{margin-left:.25rem!important}}@media print{html .ms-2,html[data-netbox-color-mode=dark] .ms-2,html[data-netbox-color-mode=light] .ms-2{margin-left:.5rem!important}}@media print{html .ms-3,html[data-netbox-color-mode=dark] .ms-3,html[data-netbox-color-mode=light] .ms-3{margin-left:1rem!important}}@media print{html .ms-4,html[data-netbox-color-mode=dark] .ms-4,html[data-netbox-color-mode=light] .ms-4{margin-left:1.5rem!important}}@media print{html .ms-5,html[data-netbox-color-mode=dark] .ms-5,html[data-netbox-color-mode=light] .ms-5{margin-left:3rem!important}}@media print{html .ms-auto,html[data-netbox-color-mode=dark] .ms-auto,html[data-netbox-color-mode=light] .ms-auto{margin-left:auto!important}}@media print{html .p-0,html[data-netbox-color-mode=dark] .p-0,html[data-netbox-color-mode=light] .p-0{padding:0!important}}@media print{html .p-1,html[data-netbox-color-mode=dark] .p-1,html[data-netbox-color-mode=light] .p-1{padding:.25rem!important}}@media print{html .p-2,html[data-netbox-color-mode=dark] .p-2,html[data-netbox-color-mode=light] .p-2{padding:.5rem!important}}@media print{html .p-3,html[data-netbox-color-mode=dark] .p-3,html[data-netbox-color-mode=light] .p-3{padding:1rem!important}}@media print{html .p-4,html[data-netbox-color-mode=dark] .p-4,html[data-netbox-color-mode=light] .p-4{padding:1.5rem!important}}@media print{html .p-5,html[data-netbox-color-mode=dark] .p-5,html[data-netbox-color-mode=light] .p-5{padding:3rem!important}}@media print{html .px-0,html[data-netbox-color-mode=dark] .px-0,html[data-netbox-color-mode=light] .px-0{padding-right:0!important;padding-left:0!important}}@media print{html .px-1,html[data-netbox-color-mode=dark] .px-1,html[data-netbox-color-mode=light] .px-1{padding-right:.25rem!important;padding-left:.25rem!important}}@media print{html .px-2,html[data-netbox-color-mode=dark] .px-2,html[data-netbox-color-mode=light] .px-2{padding-right:.5rem!important;padding-left:.5rem!important}}@media print{html .px-3,html[data-netbox-color-mode=dark] .px-3,html[data-netbox-color-mode=light] .px-3{padding-right:1rem!important;padding-left:1rem!important}}@media print{html .px-4,html[data-netbox-color-mode=dark] .px-4,html[data-netbox-color-mode=light] .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}}@media print{html .px-5,html[data-netbox-color-mode=dark] .px-5,html[data-netbox-color-mode=light] .px-5{padding-right:3rem!important;padding-left:3rem!important}}@media print{html .py-0,html[data-netbox-color-mode=dark] .py-0,html[data-netbox-color-mode=light] .py-0{padding-top:0!important;padding-bottom:0!important}}@media print{html .py-1,html[data-netbox-color-mode=dark] .py-1,html[data-netbox-color-mode=light] .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}}@media print{html .py-2,html[data-netbox-color-mode=dark] .py-2,html[data-netbox-color-mode=light] .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}}@media print{html .py-3,html[data-netbox-color-mode=dark] .py-3,html[data-netbox-color-mode=light] .py-3{padding-top:1rem!important;padding-bottom:1rem!important}}@media print{html .py-4,html[data-netbox-color-mode=dark] .py-4,html[data-netbox-color-mode=light] .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}}@media print{html .py-5,html[data-netbox-color-mode=dark] .py-5,html[data-netbox-color-mode=light] .py-5{padding-top:3rem!important;padding-bottom:3rem!important}}@media print{html .pt-0,html[data-netbox-color-mode=dark] .pt-0,html[data-netbox-color-mode=light] .pt-0{padding-top:0!important}}@media print{html .pt-1,html[data-netbox-color-mode=dark] .pt-1,html[data-netbox-color-mode=light] .pt-1{padding-top:.25rem!important}}@media print{html .pt-2,html[data-netbox-color-mode=dark] .pt-2,html[data-netbox-color-mode=light] .pt-2{padding-top:.5rem!important}}@media print{html .pt-3,html[data-netbox-color-mode=dark] .pt-3,html[data-netbox-color-mode=light] .pt-3{padding-top:1rem!important}}@media print{html .pt-4,html[data-netbox-color-mode=dark] .pt-4,html[data-netbox-color-mode=light] .pt-4{padding-top:1.5rem!important}}@media print{html .pt-5,html[data-netbox-color-mode=dark] .pt-5,html[data-netbox-color-mode=light] .pt-5{padding-top:3rem!important}}@media print{html .pe-0,html[data-netbox-color-mode=dark] .pe-0,html[data-netbox-color-mode=light] .pe-0{padding-right:0!important}}@media print{html .pe-1,html[data-netbox-color-mode=dark] .pe-1,html[data-netbox-color-mode=light] .pe-1{padding-right:.25rem!important}}@media print{html .pe-2,html[data-netbox-color-mode=dark] .pe-2,html[data-netbox-color-mode=light] .pe-2{padding-right:.5rem!important}}@media print{html .pe-3,html[data-netbox-color-mode=dark] .pe-3,html[data-netbox-color-mode=light] .pe-3{padding-right:1rem!important}}@media print{html .pe-4,html[data-netbox-color-mode=dark] .pe-4,html[data-netbox-color-mode=light] .pe-4{padding-right:1.5rem!important}}@media print{html .pe-5,html[data-netbox-color-mode=dark] .pe-5,html[data-netbox-color-mode=light] .pe-5{padding-right:3rem!important}}@media print{html .pb-0,html[data-netbox-color-mode=dark] .pb-0,html[data-netbox-color-mode=light] .pb-0{padding-bottom:0!important}}@media print{html .pb-1,html[data-netbox-color-mode=dark] .pb-1,html[data-netbox-color-mode=light] .pb-1{padding-bottom:.25rem!important}}@media print{html .pb-2,html[data-netbox-color-mode=dark] .pb-2,html[data-netbox-color-mode=light] .pb-2{padding-bottom:.5rem!important}}@media print{html .pb-3,html[data-netbox-color-mode=dark] .pb-3,html[data-netbox-color-mode=light] .pb-3{padding-bottom:1rem!important}}@media print{html .pb-4,html[data-netbox-color-mode=dark] .pb-4,html[data-netbox-color-mode=light] .pb-4{padding-bottom:1.5rem!important}}@media print{html .pb-5,html[data-netbox-color-mode=dark] .pb-5,html[data-netbox-color-mode=light] .pb-5{padding-bottom:3rem!important}}@media print{html .ps-0,html[data-netbox-color-mode=dark] .ps-0,html[data-netbox-color-mode=light] .ps-0{padding-left:0!important}}@media print{html .ps-1,html[data-netbox-color-mode=dark] .ps-1,html[data-netbox-color-mode=light] .ps-1{padding-left:.25rem!important}}@media print{html .ps-2,html[data-netbox-color-mode=dark] .ps-2,html[data-netbox-color-mode=light] .ps-2{padding-left:.5rem!important}}@media print{html .ps-3,html[data-netbox-color-mode=dark] .ps-3,html[data-netbox-color-mode=light] .ps-3{padding-left:1rem!important}}@media print{html .ps-4,html[data-netbox-color-mode=dark] .ps-4,html[data-netbox-color-mode=light] .ps-4{padding-left:1.5rem!important}}@media print{html .ps-5,html[data-netbox-color-mode=dark] .ps-5,html[data-netbox-color-mode=light] .ps-5{padding-left:3rem!important}}@media print{html .font-monospace,html[data-netbox-color-mode=dark] .font-monospace,html[data-netbox-color-mode=light] .font-monospace{font-family:var(--bs-font-monospace)!important}}@media print{html .fs-1,html[data-netbox-color-mode=dark] .fs-1,html[data-netbox-color-mode=light] .fs-1{font-size:calc(1.375rem + 1.5vw)!important}}@media print{html .fs-2,html[data-netbox-color-mode=dark] .fs-2,html[data-netbox-color-mode=light] .fs-2{font-size:calc(1.325rem + .9vw)!important}}@media print{html .fs-3,html[data-netbox-color-mode=dark] .fs-3,html[data-netbox-color-mode=light] .fs-3{font-size:calc(1.3rem + .6vw)!important}}@media print{html .fs-4,html[data-netbox-color-mode=dark] .fs-4,html[data-netbox-color-mode=light] .fs-4{font-size:calc(1.275rem + .3vw)!important}}@media print{html .fs-5,html[data-netbox-color-mode=dark] .fs-5,html[data-netbox-color-mode=light] .fs-5{font-size:1.25rem!important}}@media print{html .fs-6,html[data-netbox-color-mode=dark] .fs-6,html[data-netbox-color-mode=light] .fs-6{font-size:1rem!important}}@media print{html .fst-italic,html[data-netbox-color-mode=dark] .fst-italic,html[data-netbox-color-mode=light] .fst-italic{font-style:italic!important}}@media print{html .fst-normal,html[data-netbox-color-mode=dark] .fst-normal,html[data-netbox-color-mode=light] .fst-normal{font-style:normal!important}}@media print{html .fw-light,html[data-netbox-color-mode=dark] .fw-light,html[data-netbox-color-mode=light] .fw-light{font-weight:300!important}}@media print{html .fw-lighter,html[data-netbox-color-mode=dark] .fw-lighter,html[data-netbox-color-mode=light] .fw-lighter{font-weight:200!important}}@media print{html .fw-normal,html[data-netbox-color-mode=dark] .fw-normal,html[data-netbox-color-mode=light] .fw-normal{font-weight:400!important}}@media print{html .fw-bold,html[data-netbox-color-mode=dark] .fw-bold,html[data-netbox-color-mode=light] .fw-bold{font-weight:700!important}}@media print{html .fw-bolder,html[data-netbox-color-mode=dark] .fw-bolder,html[data-netbox-color-mode=light] .fw-bolder{font-weight:800!important}}@media print{html .lh-1,html[data-netbox-color-mode=dark] .lh-1,html[data-netbox-color-mode=light] .lh-1{line-height:1!important}}@media print{html .lh-sm,html[data-netbox-color-mode=dark] .lh-sm,html[data-netbox-color-mode=light] .lh-sm{line-height:1.25!important}}@media print{html .lh-base,html[data-netbox-color-mode=dark] .lh-base,html[data-netbox-color-mode=light] .lh-base{line-height:1.5!important}}@media print{html .lh-lg,html[data-netbox-color-mode=dark] .lh-lg,html[data-netbox-color-mode=light] .lh-lg{line-height:1.75!important}}@media print{html .text-start,html[data-netbox-color-mode=dark] .text-start,html[data-netbox-color-mode=light] .text-start{text-align:left!important}}@media print{html .text-end,html[data-netbox-color-mode=dark] .text-end,html[data-netbox-color-mode=light] .text-end{text-align:right!important}}@media print{html .text-center,html[data-netbox-color-mode=dark] .text-center,html[data-netbox-color-mode=light] .text-center{text-align:center!important}}@media print{html .text-decoration-none,html[data-netbox-color-mode=dark] .text-decoration-none,html[data-netbox-color-mode=light] .text-decoration-none{text-decoration:none!important}}@media print{html .text-decoration-underline,html[data-netbox-color-mode=dark] .text-decoration-underline,html[data-netbox-color-mode=light] .text-decoration-underline{text-decoration:underline!important}}@media print{html .text-decoration-line-through,html[data-netbox-color-mode=dark] .text-decoration-line-through,html[data-netbox-color-mode=light] .text-decoration-line-through{text-decoration:line-through!important}}@media print{html .text-lowercase,html[data-netbox-color-mode=dark] .text-lowercase,html[data-netbox-color-mode=light] .text-lowercase{text-transform:lowercase!important}}@media print{html .text-uppercase,html[data-netbox-color-mode=dark] .text-uppercase,html[data-netbox-color-mode=light] .text-uppercase{text-transform:uppercase!important}}@media print{html .text-capitalize,html[data-netbox-color-mode=dark] .text-capitalize,html[data-netbox-color-mode=light] .text-capitalize{text-transform:capitalize!important}}@media print{html .text-wrap,html[data-netbox-color-mode=dark] .text-wrap,html[data-netbox-color-mode=light] .text-wrap{white-space:normal!important}}@media print{html .text-nowrap,html[data-netbox-color-mode=dark] .text-nowrap,html[data-netbox-color-mode=light] .text-nowrap{white-space:nowrap!important}}@media print{html .text-break,html[data-netbox-color-mode=dark] .text-break,html[data-netbox-color-mode=light] .text-break{word-wrap:break-word!important;word-break:break-word!important}}@media print{html .text-primary,html[data-netbox-color-mode=dark] .text-primary,html[data-netbox-color-mode=light] .text-primary{color:#337ab7!important}}@media print{html .text-secondary,html[data-netbox-color-mode=dark] .text-secondary,html[data-netbox-color-mode=light] .text-secondary{color:#6c757d!important}}@media print{html .text-success,html[data-netbox-color-mode=dark] .text-success,html[data-netbox-color-mode=light] .text-success{color:#198754!important}}@media print{html .text-info,html[data-netbox-color-mode=dark] .text-info,html[data-netbox-color-mode=light] .text-info{color:#0dcaf0!important}}@media print{html .text-warning,html[data-netbox-color-mode=dark] .text-warning,html[data-netbox-color-mode=light] .text-warning{color:#ffc107!important}}@media print{html .text-danger,html[data-netbox-color-mode=dark] .text-danger,html[data-netbox-color-mode=light] .text-danger{color:#dc3545!important}}@media print{html .text-light,html[data-netbox-color-mode=dark] .text-light,html[data-netbox-color-mode=light] .text-light{color:#f8f9fa!important}}@media print{html .text-dark,html[data-netbox-color-mode=dark] .text-dark,html[data-netbox-color-mode=light] .text-dark{color:#212529!important}}@media print{html .text-red,html[data-netbox-color-mode=dark] .text-red,html[data-netbox-color-mode=light] .text-red{color:#dc3545!important}}@media print{html .text-yellow,html[data-netbox-color-mode=dark] .text-yellow,html[data-netbox-color-mode=light] .text-yellow{color:#ffc107!important}}@media print{html .text-green,html[data-netbox-color-mode=dark] .text-green,html[data-netbox-color-mode=light] .text-green{color:#198754!important}}@media print{html .text-blue,html[data-netbox-color-mode=dark] .text-blue,html[data-netbox-color-mode=light] .text-blue{color:#0d6efd!important}}@media print{html .text-cyan,html[data-netbox-color-mode=dark] .text-cyan,html[data-netbox-color-mode=light] .text-cyan{color:#0dcaf0!important}}@media print{html .text-indigo,html[data-netbox-color-mode=dark] .text-indigo,html[data-netbox-color-mode=light] .text-indigo{color:#6610f2!important}}@media print{html .text-purple,html[data-netbox-color-mode=dark] .text-purple,html[data-netbox-color-mode=light] .text-purple{color:#6f42c1!important}}@media print{html .text-pink,html[data-netbox-color-mode=dark] .text-pink,html[data-netbox-color-mode=light] .text-pink{color:#d63384!important}}@media print{html .text-darker,html[data-netbox-color-mode=dark] .text-darker,html[data-netbox-color-mode=light] .text-darker{color:#1b1f22!important}}@media print{html .text-darkest,html[data-netbox-color-mode=dark] .text-darkest,html[data-netbox-color-mode=light] .text-darkest{color:#171b1d!important}}@media print{html .text-gray,html[data-netbox-color-mode=dark] .text-gray,html[data-netbox-color-mode=light] .text-gray{color:#ced4da!important}}@media print{html .text-gray-100,html[data-netbox-color-mode=dark] .text-gray-100,html[data-netbox-color-mode=light] .text-gray-100{color:#f8f9fa!important}}@media print{html .text-gray-200,html[data-netbox-color-mode=dark] .text-gray-200,html[data-netbox-color-mode=light] .text-gray-200{color:#e9ecef!important}}@media print{html .text-gray-300,html[data-netbox-color-mode=dark] .text-gray-300,html[data-netbox-color-mode=light] .text-gray-300{color:#dee2e6!important}}@media print{html .text-gray-400,html[data-netbox-color-mode=dark] .text-gray-400,html[data-netbox-color-mode=light] .text-gray-400{color:#ced4da!important}}@media print{html .text-gray-500,html[data-netbox-color-mode=dark] .text-gray-500,html[data-netbox-color-mode=light] .text-gray-500{color:#adb5bd!important}}@media print{html .text-gray-600,html[data-netbox-color-mode=dark] .text-gray-600,html[data-netbox-color-mode=light] .text-gray-600{color:#6c757d!important}}@media print{html .text-gray-700,html[data-netbox-color-mode=dark] .text-gray-700,html[data-netbox-color-mode=light] .text-gray-700{color:#495057!important}}@media print{html .text-gray-800,html[data-netbox-color-mode=dark] .text-gray-800,html[data-netbox-color-mode=light] .text-gray-800{color:#343a40!important}}@media print{html .text-gray-900,html[data-netbox-color-mode=dark] .text-gray-900,html[data-netbox-color-mode=light] .text-gray-900{color:#212529!important}}@media print{html .text-red-100,html[data-netbox-color-mode=dark] .text-red-100,html[data-netbox-color-mode=light] .text-red-100{color:#f8d7da!important}}@media print{html .text-red-200,html[data-netbox-color-mode=dark] .text-red-200,html[data-netbox-color-mode=light] .text-red-200{color:#f1aeb5!important}}@media print{html .text-red-300,html[data-netbox-color-mode=dark] .text-red-300,html[data-netbox-color-mode=light] .text-red-300{color:#ea868f!important}}@media print{html .text-red-400,html[data-netbox-color-mode=dark] .text-red-400,html[data-netbox-color-mode=light] .text-red-400{color:#e35d6a!important}}@media print{html .text-red-500,html[data-netbox-color-mode=dark] .text-red-500,html[data-netbox-color-mode=light] .text-red-500{color:#dc3545!important}}@media print{html .text-red-600,html[data-netbox-color-mode=dark] .text-red-600,html[data-netbox-color-mode=light] .text-red-600{color:#b02a37!important}}@media print{html .text-red-700,html[data-netbox-color-mode=dark] .text-red-700,html[data-netbox-color-mode=light] .text-red-700{color:#842029!important}}@media print{html .text-red-800,html[data-netbox-color-mode=dark] .text-red-800,html[data-netbox-color-mode=light] .text-red-800{color:#58151c!important}}@media print{html .text-red-900,html[data-netbox-color-mode=dark] .text-red-900,html[data-netbox-color-mode=light] .text-red-900{color:#2c0b0e!important}}@media print{html .text-yellow-100,html[data-netbox-color-mode=dark] .text-yellow-100,html[data-netbox-color-mode=light] .text-yellow-100{color:#fff3cd!important}}@media print{html .text-yellow-200,html[data-netbox-color-mode=dark] .text-yellow-200,html[data-netbox-color-mode=light] .text-yellow-200{color:#ffe69c!important}}@media print{html .text-yellow-300,html[data-netbox-color-mode=dark] .text-yellow-300,html[data-netbox-color-mode=light] .text-yellow-300{color:#ffda6a!important}}@media print{html .text-yellow-400,html[data-netbox-color-mode=dark] .text-yellow-400,html[data-netbox-color-mode=light] .text-yellow-400{color:#ffcd39!important}}@media print{html .text-yellow-500,html[data-netbox-color-mode=dark] .text-yellow-500,html[data-netbox-color-mode=light] .text-yellow-500{color:#ffc107!important}}@media print{html .text-yellow-600,html[data-netbox-color-mode=dark] .text-yellow-600,html[data-netbox-color-mode=light] .text-yellow-600{color:#cc9a06!important}}@media print{html .text-yellow-700,html[data-netbox-color-mode=dark] .text-yellow-700,html[data-netbox-color-mode=light] .text-yellow-700{color:#997404!important}}@media print{html .text-yellow-800,html[data-netbox-color-mode=dark] .text-yellow-800,html[data-netbox-color-mode=light] .text-yellow-800{color:#664d03!important}}@media print{html .text-yellow-900,html[data-netbox-color-mode=dark] .text-yellow-900,html[data-netbox-color-mode=light] .text-yellow-900{color:#332701!important}}@media print{html .text-green-100,html[data-netbox-color-mode=dark] .text-green-100,html[data-netbox-color-mode=light] .text-green-100{color:#d1e7dd!important}}@media print{html .text-green-200,html[data-netbox-color-mode=dark] .text-green-200,html[data-netbox-color-mode=light] .text-green-200{color:#a3cfbb!important}}@media print{html .text-green-300,html[data-netbox-color-mode=dark] .text-green-300,html[data-netbox-color-mode=light] .text-green-300{color:#75b798!important}}@media print{html .text-green-400,html[data-netbox-color-mode=dark] .text-green-400,html[data-netbox-color-mode=light] .text-green-400{color:#479f76!important}}@media print{html .text-green-500,html[data-netbox-color-mode=dark] .text-green-500,html[data-netbox-color-mode=light] .text-green-500{color:#198754!important}}@media print{html .text-green-600,html[data-netbox-color-mode=dark] .text-green-600,html[data-netbox-color-mode=light] .text-green-600{color:#146c43!important}}@media print{html .text-green-700,html[data-netbox-color-mode=dark] .text-green-700,html[data-netbox-color-mode=light] .text-green-700{color:#0f5132!important}}@media print{html .text-green-800,html[data-netbox-color-mode=dark] .text-green-800,html[data-netbox-color-mode=light] .text-green-800{color:#0a3622!important}}@media print{html .text-green-900,html[data-netbox-color-mode=dark] .text-green-900,html[data-netbox-color-mode=light] .text-green-900{color:#051b11!important}}@media print{html .text-blue-100,html[data-netbox-color-mode=dark] .text-blue-100,html[data-netbox-color-mode=light] .text-blue-100{color:#cfe2ff!important}}@media print{html .text-blue-200,html[data-netbox-color-mode=dark] .text-blue-200,html[data-netbox-color-mode=light] .text-blue-200{color:#9ec5fe!important}}@media print{html .text-blue-300,html[data-netbox-color-mode=dark] .text-blue-300,html[data-netbox-color-mode=light] .text-blue-300{color:#6ea8fe!important}}@media print{html .text-blue-400,html[data-netbox-color-mode=dark] .text-blue-400,html[data-netbox-color-mode=light] .text-blue-400{color:#3d8bfd!important}}@media print{html .text-blue-500,html[data-netbox-color-mode=dark] .text-blue-500,html[data-netbox-color-mode=light] .text-blue-500{color:#0d6efd!important}}@media print{html .text-blue-600,html[data-netbox-color-mode=dark] .text-blue-600,html[data-netbox-color-mode=light] .text-blue-600{color:#0a58ca!important}}@media print{html .text-blue-700,html[data-netbox-color-mode=dark] .text-blue-700,html[data-netbox-color-mode=light] .text-blue-700{color:#084298!important}}@media print{html .text-blue-800,html[data-netbox-color-mode=dark] .text-blue-800,html[data-netbox-color-mode=light] .text-blue-800{color:#052c65!important}}@media print{html .text-blue-900,html[data-netbox-color-mode=dark] .text-blue-900,html[data-netbox-color-mode=light] .text-blue-900{color:#031633!important}}@media print{html .text-cyan-100,html[data-netbox-color-mode=dark] .text-cyan-100,html[data-netbox-color-mode=light] .text-cyan-100{color:#cff4fc!important}}@media print{html .text-cyan-200,html[data-netbox-color-mode=dark] .text-cyan-200,html[data-netbox-color-mode=light] .text-cyan-200{color:#9eeaf9!important}}@media print{html .text-cyan-300,html[data-netbox-color-mode=dark] .text-cyan-300,html[data-netbox-color-mode=light] .text-cyan-300{color:#6edff6!important}}@media print{html .text-cyan-400,html[data-netbox-color-mode=dark] .text-cyan-400,html[data-netbox-color-mode=light] .text-cyan-400{color:#3dd5f3!important}}@media print{html .text-cyan-500,html[data-netbox-color-mode=dark] .text-cyan-500,html[data-netbox-color-mode=light] .text-cyan-500{color:#0dcaf0!important}}@media print{html .text-cyan-600,html[data-netbox-color-mode=dark] .text-cyan-600,html[data-netbox-color-mode=light] .text-cyan-600{color:#0aa2c0!important}}@media print{html .text-cyan-700,html[data-netbox-color-mode=dark] .text-cyan-700,html[data-netbox-color-mode=light] .text-cyan-700{color:#087990!important}}@media print{html .text-cyan-800,html[data-netbox-color-mode=dark] .text-cyan-800,html[data-netbox-color-mode=light] .text-cyan-800{color:#055160!important}}@media print{html .text-cyan-900,html[data-netbox-color-mode=dark] .text-cyan-900,html[data-netbox-color-mode=light] .text-cyan-900{color:#032830!important}}@media print{html .text-indigo-100,html[data-netbox-color-mode=dark] .text-indigo-100,html[data-netbox-color-mode=light] .text-indigo-100{color:#e0cffc!important}}@media print{html .text-indigo-200,html[data-netbox-color-mode=dark] .text-indigo-200,html[data-netbox-color-mode=light] .text-indigo-200{color:#c29ffa!important}}@media print{html .text-indigo-300,html[data-netbox-color-mode=dark] .text-indigo-300,html[data-netbox-color-mode=light] .text-indigo-300{color:#a370f7!important}}@media print{html .text-indigo-400,html[data-netbox-color-mode=dark] .text-indigo-400,html[data-netbox-color-mode=light] .text-indigo-400{color:#8540f5!important}}@media print{html .text-indigo-500,html[data-netbox-color-mode=dark] .text-indigo-500,html[data-netbox-color-mode=light] .text-indigo-500{color:#6610f2!important}}@media print{html .text-indigo-600,html[data-netbox-color-mode=dark] .text-indigo-600,html[data-netbox-color-mode=light] .text-indigo-600{color:#520dc2!important}}@media print{html .text-indigo-700,html[data-netbox-color-mode=dark] .text-indigo-700,html[data-netbox-color-mode=light] .text-indigo-700{color:#3d0a91!important}}@media print{html .text-indigo-800,html[data-netbox-color-mode=dark] .text-indigo-800,html[data-netbox-color-mode=light] .text-indigo-800{color:#290661!important}}@media print{html .text-indigo-900,html[data-netbox-color-mode=dark] .text-indigo-900,html[data-netbox-color-mode=light] .text-indigo-900{color:#140330!important}}@media print{html .text-purple-100,html[data-netbox-color-mode=dark] .text-purple-100,html[data-netbox-color-mode=light] .text-purple-100{color:#e2d9f3!important}}@media print{html .text-purple-200,html[data-netbox-color-mode=dark] .text-purple-200,html[data-netbox-color-mode=light] .text-purple-200{color:#c5b3e6!important}}@media print{html .text-purple-300,html[data-netbox-color-mode=dark] .text-purple-300,html[data-netbox-color-mode=light] .text-purple-300{color:#a98eda!important}}@media print{html .text-purple-400,html[data-netbox-color-mode=dark] .text-purple-400,html[data-netbox-color-mode=light] .text-purple-400{color:#8c68cd!important}}@media print{html .text-purple-500,html[data-netbox-color-mode=dark] .text-purple-500,html[data-netbox-color-mode=light] .text-purple-500{color:#6f42c1!important}}@media print{html .text-purple-600,html[data-netbox-color-mode=dark] .text-purple-600,html[data-netbox-color-mode=light] .text-purple-600{color:#59359a!important}}@media print{html .text-purple-700,html[data-netbox-color-mode=dark] .text-purple-700,html[data-netbox-color-mode=light] .text-purple-700{color:#432874!important}}@media print{html .text-purple-800,html[data-netbox-color-mode=dark] .text-purple-800,html[data-netbox-color-mode=light] .text-purple-800{color:#2c1a4d!important}}@media print{html .text-purple-900,html[data-netbox-color-mode=dark] .text-purple-900,html[data-netbox-color-mode=light] .text-purple-900{color:#160d27!important}}@media print{html .text-pink-100,html[data-netbox-color-mode=dark] .text-pink-100,html[data-netbox-color-mode=light] .text-pink-100{color:#f7d6e6!important}}@media print{html .text-pink-200,html[data-netbox-color-mode=dark] .text-pink-200,html[data-netbox-color-mode=light] .text-pink-200{color:#efadce!important}}@media print{html .text-pink-300,html[data-netbox-color-mode=dark] .text-pink-300,html[data-netbox-color-mode=light] .text-pink-300{color:#e685b5!important}}@media print{html .text-pink-400,html[data-netbox-color-mode=dark] .text-pink-400,html[data-netbox-color-mode=light] .text-pink-400{color:#de5c9d!important}}@media print{html .text-pink-500,html[data-netbox-color-mode=dark] .text-pink-500,html[data-netbox-color-mode=light] .text-pink-500{color:#d63384!important}}@media print{html .text-pink-600,html[data-netbox-color-mode=dark] .text-pink-600,html[data-netbox-color-mode=light] .text-pink-600{color:#ab296a!important}}@media print{html .text-pink-700,html[data-netbox-color-mode=dark] .text-pink-700,html[data-netbox-color-mode=light] .text-pink-700{color:#801f4f!important}}@media print{html .text-pink-800,html[data-netbox-color-mode=dark] .text-pink-800,html[data-netbox-color-mode=light] .text-pink-800{color:#561435!important}}@media print{html .text-pink-900,html[data-netbox-color-mode=dark] .text-pink-900,html[data-netbox-color-mode=light] .text-pink-900{color:#2b0a1a!important}}@media print{html .text-white,html[data-netbox-color-mode=dark] .text-white,html[data-netbox-color-mode=light] .text-white{color:#fff!important}}@media print{html .text-body,html[data-netbox-color-mode=dark] .text-body,html[data-netbox-color-mode=light] .text-body{color:#212529!important}}@media print{html .text-muted,html[data-netbox-color-mode=dark] .text-muted,html[data-netbox-color-mode=light] .text-muted{color:#6c757d!important}}@media print{html .text-black-50,html[data-netbox-color-mode=dark] .text-black-50,html[data-netbox-color-mode=light] .text-black-50{color:#00000080!important}}@media print{html .text-white-50,html[data-netbox-color-mode=dark] .text-white-50,html[data-netbox-color-mode=light] .text-white-50{color:#ffffff80!important}}@media print{html .text-reset,html[data-netbox-color-mode=dark] .text-reset,html[data-netbox-color-mode=light] .text-reset{color:inherit!important}}@media print{html .bg-primary,html[data-netbox-color-mode=dark] .bg-primary,html[data-netbox-color-mode=light] .bg-primary{background-color:#337ab7!important}}@media print{html .bg-secondary,html[data-netbox-color-mode=dark] .bg-secondary,html[data-netbox-color-mode=light] .bg-secondary{background-color:#6c757d!important}}@media print{html .bg-success,html[data-netbox-color-mode=dark] .bg-success,html[data-netbox-color-mode=light] .bg-success{background-color:#198754!important}}@media print{html .bg-info,html[data-netbox-color-mode=dark] .bg-info,html[data-netbox-color-mode=light] .bg-info{background-color:#0dcaf0!important}}@media print{html .bg-warning,html[data-netbox-color-mode=dark] .bg-warning,html[data-netbox-color-mode=light] .bg-warning{background-color:#ffc107!important}}@media print{html .bg-danger,html[data-netbox-color-mode=dark] .bg-danger,html[data-netbox-color-mode=light] .bg-danger{background-color:#dc3545!important}}@media print{html .bg-light,html[data-netbox-color-mode=dark] .bg-light,html[data-netbox-color-mode=light] .bg-light{background-color:#f8f9fa!important}}@media print{html .bg-dark,html[data-netbox-color-mode=dark] .bg-dark,html[data-netbox-color-mode=light] .bg-dark{background-color:#212529!important}}@media print{html .bg-red,html[data-netbox-color-mode=dark] .bg-red,html[data-netbox-color-mode=light] .bg-red{background-color:#dc3545!important}}@media print{html .bg-yellow,html[data-netbox-color-mode=dark] .bg-yellow,html[data-netbox-color-mode=light] .bg-yellow{background-color:#ffc107!important}}@media print{html .bg-green,html[data-netbox-color-mode=dark] .bg-green,html[data-netbox-color-mode=light] .bg-green{background-color:#198754!important}}@media print{html .bg-blue,html[data-netbox-color-mode=dark] .bg-blue,html[data-netbox-color-mode=light] .bg-blue{background-color:#0d6efd!important}}@media print{html .bg-cyan,html[data-netbox-color-mode=dark] .bg-cyan,html[data-netbox-color-mode=light] .bg-cyan{background-color:#0dcaf0!important}}@media print{html .bg-indigo,html[data-netbox-color-mode=dark] .bg-indigo,html[data-netbox-color-mode=light] .bg-indigo{background-color:#6610f2!important}}@media print{html .bg-purple,html[data-netbox-color-mode=dark] .bg-purple,html[data-netbox-color-mode=light] .bg-purple{background-color:#6f42c1!important}}@media print{html .bg-pink,html[data-netbox-color-mode=dark] .bg-pink,html[data-netbox-color-mode=light] .bg-pink{background-color:#d63384!important}}@media print{html .bg-darker,html[data-netbox-color-mode=dark] .bg-darker,html[data-netbox-color-mode=light] .bg-darker{background-color:#1b1f22!important}}@media print{html .bg-darkest,html[data-netbox-color-mode=dark] .bg-darkest,html[data-netbox-color-mode=light] .bg-darkest{background-color:#171b1d!important}}@media print{html .bg-gray,html[data-netbox-color-mode=dark] .bg-gray,html[data-netbox-color-mode=light] .bg-gray{background-color:#ced4da!important}}@media print{html .bg-gray-100,html[data-netbox-color-mode=dark] .bg-gray-100,html[data-netbox-color-mode=light] .bg-gray-100{background-color:#f8f9fa!important}}@media print{html .bg-gray-200,html[data-netbox-color-mode=dark] .bg-gray-200,html[data-netbox-color-mode=light] .bg-gray-200{background-color:#e9ecef!important}}@media print{html .bg-gray-300,html[data-netbox-color-mode=dark] .bg-gray-300,html[data-netbox-color-mode=light] .bg-gray-300{background-color:#dee2e6!important}}@media print{html .bg-gray-400,html[data-netbox-color-mode=dark] .bg-gray-400,html[data-netbox-color-mode=light] .bg-gray-400{background-color:#ced4da!important}}@media print{html .bg-gray-500,html[data-netbox-color-mode=dark] .bg-gray-500,html[data-netbox-color-mode=light] .bg-gray-500{background-color:#adb5bd!important}}@media print{html .bg-gray-600,html[data-netbox-color-mode=dark] .bg-gray-600,html[data-netbox-color-mode=light] .bg-gray-600{background-color:#6c757d!important}}@media print{html .bg-gray-700,html[data-netbox-color-mode=dark] .bg-gray-700,html[data-netbox-color-mode=light] .bg-gray-700{background-color:#495057!important}}@media print{html .bg-gray-800,html[data-netbox-color-mode=dark] .bg-gray-800,html[data-netbox-color-mode=light] .bg-gray-800{background-color:#343a40!important}}@media print{html .bg-gray-900,html[data-netbox-color-mode=dark] .bg-gray-900,html[data-netbox-color-mode=light] .bg-gray-900{background-color:#212529!important}}@media print{html .bg-red-100,html[data-netbox-color-mode=dark] .bg-red-100,html[data-netbox-color-mode=light] .bg-red-100{background-color:#f8d7da!important}}@media print{html .bg-red-200,html[data-netbox-color-mode=dark] .bg-red-200,html[data-netbox-color-mode=light] .bg-red-200{background-color:#f1aeb5!important}}@media print{html .bg-red-300,html[data-netbox-color-mode=dark] .bg-red-300,html[data-netbox-color-mode=light] .bg-red-300{background-color:#ea868f!important}}@media print{html .bg-red-400,html[data-netbox-color-mode=dark] .bg-red-400,html[data-netbox-color-mode=light] .bg-red-400{background-color:#e35d6a!important}}@media print{html .bg-red-500,html[data-netbox-color-mode=dark] .bg-red-500,html[data-netbox-color-mode=light] .bg-red-500{background-color:#dc3545!important}}@media print{html .bg-red-600,html[data-netbox-color-mode=dark] .bg-red-600,html[data-netbox-color-mode=light] .bg-red-600{background-color:#b02a37!important}}@media print{html .bg-red-700,html[data-netbox-color-mode=dark] .bg-red-700,html[data-netbox-color-mode=light] .bg-red-700{background-color:#842029!important}}@media print{html .bg-red-800,html[data-netbox-color-mode=dark] .bg-red-800,html[data-netbox-color-mode=light] .bg-red-800{background-color:#58151c!important}}@media print{html .bg-red-900,html[data-netbox-color-mode=dark] .bg-red-900,html[data-netbox-color-mode=light] .bg-red-900{background-color:#2c0b0e!important}}@media print{html .bg-yellow-100,html[data-netbox-color-mode=dark] .bg-yellow-100,html[data-netbox-color-mode=light] .bg-yellow-100{background-color:#fff3cd!important}}@media print{html .bg-yellow-200,html[data-netbox-color-mode=dark] .bg-yellow-200,html[data-netbox-color-mode=light] .bg-yellow-200{background-color:#ffe69c!important}}@media print{html .bg-yellow-300,html[data-netbox-color-mode=dark] .bg-yellow-300,html[data-netbox-color-mode=light] .bg-yellow-300{background-color:#ffda6a!important}}@media print{html .bg-yellow-400,html[data-netbox-color-mode=dark] .bg-yellow-400,html[data-netbox-color-mode=light] .bg-yellow-400{background-color:#ffcd39!important}}@media print{html .bg-yellow-500,html[data-netbox-color-mode=dark] .bg-yellow-500,html[data-netbox-color-mode=light] .bg-yellow-500{background-color:#ffc107!important}}@media print{html .bg-yellow-600,html[data-netbox-color-mode=dark] .bg-yellow-600,html[data-netbox-color-mode=light] .bg-yellow-600{background-color:#cc9a06!important}}@media print{html .bg-yellow-700,html[data-netbox-color-mode=dark] .bg-yellow-700,html[data-netbox-color-mode=light] .bg-yellow-700{background-color:#997404!important}}@media print{html .bg-yellow-800,html[data-netbox-color-mode=dark] .bg-yellow-800,html[data-netbox-color-mode=light] .bg-yellow-800{background-color:#664d03!important}}@media print{html .bg-yellow-900,html[data-netbox-color-mode=dark] .bg-yellow-900,html[data-netbox-color-mode=light] .bg-yellow-900{background-color:#332701!important}}@media print{html .bg-green-100,html[data-netbox-color-mode=dark] .bg-green-100,html[data-netbox-color-mode=light] .bg-green-100{background-color:#d1e7dd!important}}@media print{html .bg-green-200,html[data-netbox-color-mode=dark] .bg-green-200,html[data-netbox-color-mode=light] .bg-green-200{background-color:#a3cfbb!important}}@media print{html .bg-green-300,html[data-netbox-color-mode=dark] .bg-green-300,html[data-netbox-color-mode=light] .bg-green-300{background-color:#75b798!important}}@media print{html .bg-green-400,html[data-netbox-color-mode=dark] .bg-green-400,html[data-netbox-color-mode=light] .bg-green-400{background-color:#479f76!important}}@media print{html .bg-green-500,html[data-netbox-color-mode=dark] .bg-green-500,html[data-netbox-color-mode=light] .bg-green-500{background-color:#198754!important}}@media print{html .bg-green-600,html[data-netbox-color-mode=dark] .bg-green-600,html[data-netbox-color-mode=light] .bg-green-600{background-color:#146c43!important}}@media print{html .bg-green-700,html[data-netbox-color-mode=dark] .bg-green-700,html[data-netbox-color-mode=light] .bg-green-700{background-color:#0f5132!important}}@media print{html .bg-green-800,html[data-netbox-color-mode=dark] .bg-green-800,html[data-netbox-color-mode=light] .bg-green-800{background-color:#0a3622!important}}@media print{html .bg-green-900,html[data-netbox-color-mode=dark] .bg-green-900,html[data-netbox-color-mode=light] .bg-green-900{background-color:#051b11!important}}@media print{html .bg-blue-100,html[data-netbox-color-mode=dark] .bg-blue-100,html[data-netbox-color-mode=light] .bg-blue-100{background-color:#cfe2ff!important}}@media print{html .bg-blue-200,html[data-netbox-color-mode=dark] .bg-blue-200,html[data-netbox-color-mode=light] .bg-blue-200{background-color:#9ec5fe!important}}@media print{html .bg-blue-300,html[data-netbox-color-mode=dark] .bg-blue-300,html[data-netbox-color-mode=light] .bg-blue-300{background-color:#6ea8fe!important}}@media print{html .bg-blue-400,html[data-netbox-color-mode=dark] .bg-blue-400,html[data-netbox-color-mode=light] .bg-blue-400{background-color:#3d8bfd!important}}@media print{html .bg-blue-500,html[data-netbox-color-mode=dark] .bg-blue-500,html[data-netbox-color-mode=light] .bg-blue-500{background-color:#0d6efd!important}}@media print{html .bg-blue-600,html[data-netbox-color-mode=dark] .bg-blue-600,html[data-netbox-color-mode=light] .bg-blue-600{background-color:#0a58ca!important}}@media print{html .bg-blue-700,html[data-netbox-color-mode=dark] .bg-blue-700,html[data-netbox-color-mode=light] .bg-blue-700{background-color:#084298!important}}@media print{html .bg-blue-800,html[data-netbox-color-mode=dark] .bg-blue-800,html[data-netbox-color-mode=light] .bg-blue-800{background-color:#052c65!important}}@media print{html .bg-blue-900,html[data-netbox-color-mode=dark] .bg-blue-900,html[data-netbox-color-mode=light] .bg-blue-900{background-color:#031633!important}}@media print{html .bg-cyan-100,html[data-netbox-color-mode=dark] .bg-cyan-100,html[data-netbox-color-mode=light] .bg-cyan-100{background-color:#cff4fc!important}}@media print{html .bg-cyan-200,html[data-netbox-color-mode=dark] .bg-cyan-200,html[data-netbox-color-mode=light] .bg-cyan-200{background-color:#9eeaf9!important}}@media print{html .bg-cyan-300,html[data-netbox-color-mode=dark] .bg-cyan-300,html[data-netbox-color-mode=light] .bg-cyan-300{background-color:#6edff6!important}}@media print{html .bg-cyan-400,html[data-netbox-color-mode=dark] .bg-cyan-400,html[data-netbox-color-mode=light] .bg-cyan-400{background-color:#3dd5f3!important}}@media print{html .bg-cyan-500,html[data-netbox-color-mode=dark] .bg-cyan-500,html[data-netbox-color-mode=light] .bg-cyan-500{background-color:#0dcaf0!important}}@media print{html .bg-cyan-600,html[data-netbox-color-mode=dark] .bg-cyan-600,html[data-netbox-color-mode=light] .bg-cyan-600{background-color:#0aa2c0!important}}@media print{html .bg-cyan-700,html[data-netbox-color-mode=dark] .bg-cyan-700,html[data-netbox-color-mode=light] .bg-cyan-700{background-color:#087990!important}}@media print{html .bg-cyan-800,html[data-netbox-color-mode=dark] .bg-cyan-800,html[data-netbox-color-mode=light] .bg-cyan-800{background-color:#055160!important}}@media print{html .bg-cyan-900,html[data-netbox-color-mode=dark] .bg-cyan-900,html[data-netbox-color-mode=light] .bg-cyan-900{background-color:#032830!important}}@media print{html .bg-indigo-100,html[data-netbox-color-mode=dark] .bg-indigo-100,html[data-netbox-color-mode=light] .bg-indigo-100{background-color:#e0cffc!important}}@media print{html .bg-indigo-200,html[data-netbox-color-mode=dark] .bg-indigo-200,html[data-netbox-color-mode=light] .bg-indigo-200{background-color:#c29ffa!important}}@media print{html .bg-indigo-300,html[data-netbox-color-mode=dark] .bg-indigo-300,html[data-netbox-color-mode=light] .bg-indigo-300{background-color:#a370f7!important}}@media print{html .bg-indigo-400,html[data-netbox-color-mode=dark] .bg-indigo-400,html[data-netbox-color-mode=light] .bg-indigo-400{background-color:#8540f5!important}}@media print{html .bg-indigo-500,html[data-netbox-color-mode=dark] .bg-indigo-500,html[data-netbox-color-mode=light] .bg-indigo-500{background-color:#6610f2!important}}@media print{html .bg-indigo-600,html[data-netbox-color-mode=dark] .bg-indigo-600,html[data-netbox-color-mode=light] .bg-indigo-600{background-color:#520dc2!important}}@media print{html .bg-indigo-700,html[data-netbox-color-mode=dark] .bg-indigo-700,html[data-netbox-color-mode=light] .bg-indigo-700{background-color:#3d0a91!important}}@media print{html .bg-indigo-800,html[data-netbox-color-mode=dark] .bg-indigo-800,html[data-netbox-color-mode=light] .bg-indigo-800{background-color:#290661!important}}@media print{html .bg-indigo-900,html[data-netbox-color-mode=dark] .bg-indigo-900,html[data-netbox-color-mode=light] .bg-indigo-900{background-color:#140330!important}}@media print{html .bg-purple-100,html[data-netbox-color-mode=dark] .bg-purple-100,html[data-netbox-color-mode=light] .bg-purple-100{background-color:#e2d9f3!important}}@media print{html .bg-purple-200,html[data-netbox-color-mode=dark] .bg-purple-200,html[data-netbox-color-mode=light] .bg-purple-200{background-color:#c5b3e6!important}}@media print{html .bg-purple-300,html[data-netbox-color-mode=dark] .bg-purple-300,html[data-netbox-color-mode=light] .bg-purple-300{background-color:#a98eda!important}}@media print{html .bg-purple-400,html[data-netbox-color-mode=dark] .bg-purple-400,html[data-netbox-color-mode=light] .bg-purple-400{background-color:#8c68cd!important}}@media print{html .bg-purple-500,html[data-netbox-color-mode=dark] .bg-purple-500,html[data-netbox-color-mode=light] .bg-purple-500{background-color:#6f42c1!important}}@media print{html .bg-purple-600,html[data-netbox-color-mode=dark] .bg-purple-600,html[data-netbox-color-mode=light] .bg-purple-600{background-color:#59359a!important}}@media print{html .bg-purple-700,html[data-netbox-color-mode=dark] .bg-purple-700,html[data-netbox-color-mode=light] .bg-purple-700{background-color:#432874!important}}@media print{html .bg-purple-800,html[data-netbox-color-mode=dark] .bg-purple-800,html[data-netbox-color-mode=light] .bg-purple-800{background-color:#2c1a4d!important}}@media print{html .bg-purple-900,html[data-netbox-color-mode=dark] .bg-purple-900,html[data-netbox-color-mode=light] .bg-purple-900{background-color:#160d27!important}}@media print{html .bg-pink-100,html[data-netbox-color-mode=dark] .bg-pink-100,html[data-netbox-color-mode=light] .bg-pink-100{background-color:#f7d6e6!important}}@media print{html .bg-pink-200,html[data-netbox-color-mode=dark] .bg-pink-200,html[data-netbox-color-mode=light] .bg-pink-200{background-color:#efadce!important}}@media print{html .bg-pink-300,html[data-netbox-color-mode=dark] .bg-pink-300,html[data-netbox-color-mode=light] .bg-pink-300{background-color:#e685b5!important}}@media print{html .bg-pink-400,html[data-netbox-color-mode=dark] .bg-pink-400,html[data-netbox-color-mode=light] .bg-pink-400{background-color:#de5c9d!important}}@media print{html .bg-pink-500,html[data-netbox-color-mode=dark] .bg-pink-500,html[data-netbox-color-mode=light] .bg-pink-500{background-color:#d63384!important}}@media print{html .bg-pink-600,html[data-netbox-color-mode=dark] .bg-pink-600,html[data-netbox-color-mode=light] .bg-pink-600{background-color:#ab296a!important}}@media print{html .bg-pink-700,html[data-netbox-color-mode=dark] .bg-pink-700,html[data-netbox-color-mode=light] .bg-pink-700{background-color:#801f4f!important}}@media print{html .bg-pink-800,html[data-netbox-color-mode=dark] .bg-pink-800,html[data-netbox-color-mode=light] .bg-pink-800{background-color:#561435!important}}@media print{html .bg-pink-900,html[data-netbox-color-mode=dark] .bg-pink-900,html[data-netbox-color-mode=light] .bg-pink-900{background-color:#2b0a1a!important}}@media print{html .bg-body,html[data-netbox-color-mode=dark] .bg-body,html[data-netbox-color-mode=light] .bg-body{background-color:#fff!important}}@media print{html .bg-white,html[data-netbox-color-mode=dark] .bg-white,html[data-netbox-color-mode=light] .bg-white{background-color:#fff!important}}@media print{html .bg-transparent,html[data-netbox-color-mode=dark] .bg-transparent,html[data-netbox-color-mode=light] .bg-transparent{background-color:transparent!important}}@media print{html .bg-gradient,html[data-netbox-color-mode=dark] .bg-gradient,html[data-netbox-color-mode=light] .bg-gradient{background-image:var(--bs-gradient)!important}}@media print{html .user-select-all,html[data-netbox-color-mode=dark] .user-select-all,html[data-netbox-color-mode=light] .user-select-all{user-select:all!important}}@media print{html .user-select-auto,html[data-netbox-color-mode=dark] .user-select-auto,html[data-netbox-color-mode=light] .user-select-auto{user-select:auto!important}}@media print{html .user-select-none,html[data-netbox-color-mode=dark] .user-select-none,html[data-netbox-color-mode=light] .user-select-none{user-select:none!important}}@media print{html .pe-none,html[data-netbox-color-mode=dark] .pe-none,html[data-netbox-color-mode=light] .pe-none{pointer-events:none!important}}@media print{html .pe-auto,html[data-netbox-color-mode=dark] .pe-auto,html[data-netbox-color-mode=light] .pe-auto{pointer-events:auto!important}}@media print{html .rounded,html[data-netbox-color-mode=dark] .rounded,html[data-netbox-color-mode=light] .rounded{border-radius:.375rem!important}}@media print{html .rounded-0,html[data-netbox-color-mode=dark] .rounded-0,html[data-netbox-color-mode=light] .rounded-0{border-radius:0!important}}@media print{html .rounded-1,html[data-netbox-color-mode=dark] .rounded-1,html[data-netbox-color-mode=light] .rounded-1{border-radius:.375rem!important}}@media print{html .rounded-2,html[data-netbox-color-mode=dark] .rounded-2,html[data-netbox-color-mode=light] .rounded-2{border-radius:.375rem!important}}@media print{html .rounded-3,html[data-netbox-color-mode=dark] .rounded-3,html[data-netbox-color-mode=light] .rounded-3{border-radius:.75rem!important}}@media print{html .rounded-circle,html[data-netbox-color-mode=dark] .rounded-circle,html[data-netbox-color-mode=light] .rounded-circle{border-radius:50%!important}}@media print{html .rounded-pill,html[data-netbox-color-mode=dark] .rounded-pill,html[data-netbox-color-mode=light] .rounded-pill{border-radius:50rem!important}}@media print{html .rounded-top,html[data-netbox-color-mode=dark] .rounded-top,html[data-netbox-color-mode=light] .rounded-top{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}}@media print{html .rounded-end,html[data-netbox-color-mode=dark] .rounded-end,html[data-netbox-color-mode=light] .rounded-end{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}}@media print{html .rounded-bottom,html[data-netbox-color-mode=dark] .rounded-bottom,html[data-netbox-color-mode=light] .rounded-bottom{border-bottom-right-radius:.375rem!important;border-bottom-left-radius:.375rem!important}}@media print{html .rounded-start,html[data-netbox-color-mode=dark] .rounded-start,html[data-netbox-color-mode=light] .rounded-start{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}}@media print{html .visible,html[data-netbox-color-mode=dark] .visible,html[data-netbox-color-mode=light] .visible{visibility:visible!important}}@media print{html .invisible,html[data-netbox-color-mode=dark] .invisible,html[data-netbox-color-mode=light] .invisible{visibility:hidden!important}}@media print and (min-width: 576px){html .float-sm-start,html[data-netbox-color-mode=dark] .float-sm-start,html[data-netbox-color-mode=light] .float-sm-start{float:left!important}html .float-sm-end,html[data-netbox-color-mode=dark] .float-sm-end,html[data-netbox-color-mode=light] .float-sm-end{float:right!important}html .float-sm-none,html[data-netbox-color-mode=dark] .float-sm-none,html[data-netbox-color-mode=light] .float-sm-none{float:none!important}html .d-sm-inline,html[data-netbox-color-mode=dark] .d-sm-inline,html[data-netbox-color-mode=light] .d-sm-inline{display:inline!important}html .d-sm-inline-block,html[data-netbox-color-mode=dark] .d-sm-inline-block,html[data-netbox-color-mode=light] .d-sm-inline-block{display:inline-block!important}html .d-sm-block,html[data-netbox-color-mode=dark] .d-sm-block,html[data-netbox-color-mode=light] .d-sm-block{display:block!important}html .d-sm-grid,html[data-netbox-color-mode=dark] .d-sm-grid,html[data-netbox-color-mode=light] .d-sm-grid{display:grid!important}html .d-sm-table,html[data-netbox-color-mode=dark] .d-sm-table,html[data-netbox-color-mode=light] .d-sm-table{display:table!important}html .d-sm-table-row,html[data-netbox-color-mode=dark] .d-sm-table-row,html[data-netbox-color-mode=light] .d-sm-table-row{display:table-row!important}html .d-sm-table-cell,html[data-netbox-color-mode=dark] .d-sm-table-cell,html[data-netbox-color-mode=light] .d-sm-table-cell{display:table-cell!important}html .d-sm-flex,html[data-netbox-color-mode=dark] .d-sm-flex,html[data-netbox-color-mode=light] .d-sm-flex{display:flex!important}html .d-sm-inline-flex,html[data-netbox-color-mode=dark] .d-sm-inline-flex,html[data-netbox-color-mode=light] .d-sm-inline-flex{display:inline-flex!important}html .d-sm-none,html[data-netbox-color-mode=dark] .d-sm-none,html[data-netbox-color-mode=light] .d-sm-none{display:none!important}html .flex-sm-fill,html[data-netbox-color-mode=dark] .flex-sm-fill,html[data-netbox-color-mode=light] .flex-sm-fill{flex:1 1 auto!important}html .flex-sm-row,html[data-netbox-color-mode=dark] .flex-sm-row,html[data-netbox-color-mode=light] .flex-sm-row{flex-direction:row!important}html .flex-sm-column,html[data-netbox-color-mode=dark] .flex-sm-column,html[data-netbox-color-mode=light] .flex-sm-column{flex-direction:column!important}html .flex-sm-row-reverse,html[data-netbox-color-mode=dark] .flex-sm-row-reverse,html[data-netbox-color-mode=light] .flex-sm-row-reverse{flex-direction:row-reverse!important}html .flex-sm-column-reverse,html[data-netbox-color-mode=dark] .flex-sm-column-reverse,html[data-netbox-color-mode=light] .flex-sm-column-reverse{flex-direction:column-reverse!important}html .flex-sm-grow-0,html[data-netbox-color-mode=dark] .flex-sm-grow-0,html[data-netbox-color-mode=light] .flex-sm-grow-0{flex-grow:0!important}html .flex-sm-grow-1,html[data-netbox-color-mode=dark] .flex-sm-grow-1,html[data-netbox-color-mode=light] .flex-sm-grow-1{flex-grow:1!important}html .flex-sm-shrink-0,html[data-netbox-color-mode=dark] .flex-sm-shrink-0,html[data-netbox-color-mode=light] .flex-sm-shrink-0{flex-shrink:0!important}html .flex-sm-shrink-1,html[data-netbox-color-mode=dark] .flex-sm-shrink-1,html[data-netbox-color-mode=light] .flex-sm-shrink-1{flex-shrink:1!important}html .flex-sm-wrap,html[data-netbox-color-mode=dark] .flex-sm-wrap,html[data-netbox-color-mode=light] .flex-sm-wrap{flex-wrap:wrap!important}html .flex-sm-nowrap,html[data-netbox-color-mode=dark] .flex-sm-nowrap,html[data-netbox-color-mode=light] .flex-sm-nowrap{flex-wrap:nowrap!important}html .flex-sm-wrap-reverse,html[data-netbox-color-mode=dark] .flex-sm-wrap-reverse,html[data-netbox-color-mode=light] .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-sm-0,html[data-netbox-color-mode=dark] .gap-sm-0,html[data-netbox-color-mode=light] .gap-sm-0{gap:0!important}html .gap-sm-1,html[data-netbox-color-mode=dark] .gap-sm-1,html[data-netbox-color-mode=light] .gap-sm-1{gap:.25rem!important}html .gap-sm-2,html[data-netbox-color-mode=dark] .gap-sm-2,html[data-netbox-color-mode=light] .gap-sm-2{gap:.5rem!important}html .gap-sm-3,html[data-netbox-color-mode=dark] .gap-sm-3,html[data-netbox-color-mode=light] .gap-sm-3{gap:1rem!important}html .gap-sm-4,html[data-netbox-color-mode=dark] .gap-sm-4,html[data-netbox-color-mode=light] .gap-sm-4{gap:1.5rem!important}html .gap-sm-5,html[data-netbox-color-mode=dark] .gap-sm-5,html[data-netbox-color-mode=light] .gap-sm-5{gap:3rem!important}html .justify-content-sm-start,html[data-netbox-color-mode=dark] .justify-content-sm-start,html[data-netbox-color-mode=light] .justify-content-sm-start{justify-content:flex-start!important}html .justify-content-sm-end,html[data-netbox-color-mode=dark] .justify-content-sm-end,html[data-netbox-color-mode=light] .justify-content-sm-end{justify-content:flex-end!important}html .justify-content-sm-center,html[data-netbox-color-mode=dark] .justify-content-sm-center,html[data-netbox-color-mode=light] .justify-content-sm-center{justify-content:center!important}html .justify-content-sm-between,html[data-netbox-color-mode=dark] .justify-content-sm-between,html[data-netbox-color-mode=light] .justify-content-sm-between{justify-content:space-between!important}html .justify-content-sm-around,html[data-netbox-color-mode=dark] .justify-content-sm-around,html[data-netbox-color-mode=light] .justify-content-sm-around{justify-content:space-around!important}html .justify-content-sm-evenly,html[data-netbox-color-mode=dark] .justify-content-sm-evenly,html[data-netbox-color-mode=light] .justify-content-sm-evenly{justify-content:space-evenly!important}html .align-items-sm-start,html[data-netbox-color-mode=dark] .align-items-sm-start,html[data-netbox-color-mode=light] .align-items-sm-start{align-items:flex-start!important}html .align-items-sm-end,html[data-netbox-color-mode=dark] .align-items-sm-end,html[data-netbox-color-mode=light] .align-items-sm-end{align-items:flex-end!important}html .align-items-sm-center,html[data-netbox-color-mode=dark] .align-items-sm-center,html[data-netbox-color-mode=light] .align-items-sm-center{align-items:center!important}html .align-items-sm-baseline,html[data-netbox-color-mode=dark] .align-items-sm-baseline,html[data-netbox-color-mode=light] .align-items-sm-baseline{align-items:baseline!important}html .align-items-sm-stretch,html[data-netbox-color-mode=dark] .align-items-sm-stretch,html[data-netbox-color-mode=light] .align-items-sm-stretch{align-items:stretch!important}html .align-content-sm-start,html[data-netbox-color-mode=dark] .align-content-sm-start,html[data-netbox-color-mode=light] .align-content-sm-start{align-content:flex-start!important}html .align-content-sm-end,html[data-netbox-color-mode=dark] .align-content-sm-end,html[data-netbox-color-mode=light] .align-content-sm-end{align-content:flex-end!important}html .align-content-sm-center,html[data-netbox-color-mode=dark] .align-content-sm-center,html[data-netbox-color-mode=light] .align-content-sm-center{align-content:center!important}html .align-content-sm-between,html[data-netbox-color-mode=dark] .align-content-sm-between,html[data-netbox-color-mode=light] .align-content-sm-between{align-content:space-between!important}html .align-content-sm-around,html[data-netbox-color-mode=dark] .align-content-sm-around,html[data-netbox-color-mode=light] .align-content-sm-around{align-content:space-around!important}html .align-content-sm-stretch,html[data-netbox-color-mode=dark] .align-content-sm-stretch,html[data-netbox-color-mode=light] .align-content-sm-stretch{align-content:stretch!important}html .align-self-sm-auto,html[data-netbox-color-mode=dark] .align-self-sm-auto,html[data-netbox-color-mode=light] .align-self-sm-auto{align-self:auto!important}html .align-self-sm-start,html[data-netbox-color-mode=dark] .align-self-sm-start,html[data-netbox-color-mode=light] .align-self-sm-start{align-self:flex-start!important}html .align-self-sm-end,html[data-netbox-color-mode=dark] .align-self-sm-end,html[data-netbox-color-mode=light] .align-self-sm-end{align-self:flex-end!important}html .align-self-sm-center,html[data-netbox-color-mode=dark] .align-self-sm-center,html[data-netbox-color-mode=light] .align-self-sm-center{align-self:center!important}html .align-self-sm-baseline,html[data-netbox-color-mode=dark] .align-self-sm-baseline,html[data-netbox-color-mode=light] .align-self-sm-baseline{align-self:baseline!important}html .align-self-sm-stretch,html[data-netbox-color-mode=dark] .align-self-sm-stretch,html[data-netbox-color-mode=light] .align-self-sm-stretch{align-self:stretch!important}html .order-sm-first,html[data-netbox-color-mode=dark] .order-sm-first,html[data-netbox-color-mode=light] .order-sm-first{order:-1!important}html .order-sm-0,html[data-netbox-color-mode=dark] .order-sm-0,html[data-netbox-color-mode=light] .order-sm-0{order:0!important}html .order-sm-1,html[data-netbox-color-mode=dark] .order-sm-1,html[data-netbox-color-mode=light] .order-sm-1{order:1!important}html .order-sm-2,html[data-netbox-color-mode=dark] .order-sm-2,html[data-netbox-color-mode=light] .order-sm-2{order:2!important}html .order-sm-3,html[data-netbox-color-mode=dark] .order-sm-3,html[data-netbox-color-mode=light] .order-sm-3{order:3!important}html .order-sm-4,html[data-netbox-color-mode=dark] .order-sm-4,html[data-netbox-color-mode=light] .order-sm-4{order:4!important}html .order-sm-5,html[data-netbox-color-mode=dark] .order-sm-5,html[data-netbox-color-mode=light] .order-sm-5{order:5!important}html .order-sm-last,html[data-netbox-color-mode=dark] .order-sm-last,html[data-netbox-color-mode=light] .order-sm-last{order:6!important}html .m-sm-0,html[data-netbox-color-mode=dark] .m-sm-0,html[data-netbox-color-mode=light] .m-sm-0{margin:0!important}html .m-sm-1,html[data-netbox-color-mode=dark] .m-sm-1,html[data-netbox-color-mode=light] .m-sm-1{margin:.25rem!important}html .m-sm-2,html[data-netbox-color-mode=dark] .m-sm-2,html[data-netbox-color-mode=light] .m-sm-2{margin:.5rem!important}html .m-sm-3,html[data-netbox-color-mode=dark] .m-sm-3,html[data-netbox-color-mode=light] .m-sm-3{margin:1rem!important}html .m-sm-4,html[data-netbox-color-mode=dark] .m-sm-4,html[data-netbox-color-mode=light] .m-sm-4{margin:1.5rem!important}html .m-sm-5,html[data-netbox-color-mode=dark] .m-sm-5,html[data-netbox-color-mode=light] .m-sm-5{margin:3rem!important}html .m-sm-auto,html[data-netbox-color-mode=dark] .m-sm-auto,html[data-netbox-color-mode=light] .m-sm-auto{margin:auto!important}html .mx-sm-0,html[data-netbox-color-mode=dark] .mx-sm-0,html[data-netbox-color-mode=light] .mx-sm-0{margin-right:0!important;margin-left:0!important}html .mx-sm-1,html[data-netbox-color-mode=dark] .mx-sm-1,html[data-netbox-color-mode=light] .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-sm-2,html[data-netbox-color-mode=dark] .mx-sm-2,html[data-netbox-color-mode=light] .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-sm-3,html[data-netbox-color-mode=dark] .mx-sm-3,html[data-netbox-color-mode=light] .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-sm-4,html[data-netbox-color-mode=dark] .mx-sm-4,html[data-netbox-color-mode=light] .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-sm-5,html[data-netbox-color-mode=dark] .mx-sm-5,html[data-netbox-color-mode=light] .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-sm-auto,html[data-netbox-color-mode=dark] .mx-sm-auto,html[data-netbox-color-mode=light] .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}html .my-sm-0,html[data-netbox-color-mode=dark] .my-sm-0,html[data-netbox-color-mode=light] .my-sm-0{margin-top:0!important;margin-bottom:0!important}html .my-sm-1,html[data-netbox-color-mode=dark] .my-sm-1,html[data-netbox-color-mode=light] .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-sm-2,html[data-netbox-color-mode=dark] .my-sm-2,html[data-netbox-color-mode=light] .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-sm-3,html[data-netbox-color-mode=dark] .my-sm-3,html[data-netbox-color-mode=light] .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-sm-4,html[data-netbox-color-mode=dark] .my-sm-4,html[data-netbox-color-mode=light] .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-sm-5,html[data-netbox-color-mode=dark] .my-sm-5,html[data-netbox-color-mode=light] .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-sm-auto,html[data-netbox-color-mode=dark] .my-sm-auto,html[data-netbox-color-mode=light] .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-sm-0,html[data-netbox-color-mode=dark] .mt-sm-0,html[data-netbox-color-mode=light] .mt-sm-0{margin-top:0!important}html .mt-sm-1,html[data-netbox-color-mode=dark] .mt-sm-1,html[data-netbox-color-mode=light] .mt-sm-1{margin-top:.25rem!important}html .mt-sm-2,html[data-netbox-color-mode=dark] .mt-sm-2,html[data-netbox-color-mode=light] .mt-sm-2{margin-top:.5rem!important}html .mt-sm-3,html[data-netbox-color-mode=dark] .mt-sm-3,html[data-netbox-color-mode=light] .mt-sm-3{margin-top:1rem!important}html .mt-sm-4,html[data-netbox-color-mode=dark] .mt-sm-4,html[data-netbox-color-mode=light] .mt-sm-4{margin-top:1.5rem!important}html .mt-sm-5,html[data-netbox-color-mode=dark] .mt-sm-5,html[data-netbox-color-mode=light] .mt-sm-5{margin-top:3rem!important}html .mt-sm-auto,html[data-netbox-color-mode=dark] .mt-sm-auto,html[data-netbox-color-mode=light] .mt-sm-auto{margin-top:auto!important}html .me-sm-0,html[data-netbox-color-mode=dark] .me-sm-0,html[data-netbox-color-mode=light] .me-sm-0{margin-right:0!important}html .me-sm-1,html[data-netbox-color-mode=dark] .me-sm-1,html[data-netbox-color-mode=light] .me-sm-1{margin-right:.25rem!important}html .me-sm-2,html[data-netbox-color-mode=dark] .me-sm-2,html[data-netbox-color-mode=light] .me-sm-2{margin-right:.5rem!important}html .me-sm-3,html[data-netbox-color-mode=dark] .me-sm-3,html[data-netbox-color-mode=light] .me-sm-3{margin-right:1rem!important}html .me-sm-4,html[data-netbox-color-mode=dark] .me-sm-4,html[data-netbox-color-mode=light] .me-sm-4{margin-right:1.5rem!important}html .me-sm-5,html[data-netbox-color-mode=dark] .me-sm-5,html[data-netbox-color-mode=light] .me-sm-5{margin-right:3rem!important}html .me-sm-auto,html[data-netbox-color-mode=dark] .me-sm-auto,html[data-netbox-color-mode=light] .me-sm-auto{margin-right:auto!important}html .mb-sm-0,html[data-netbox-color-mode=dark] .mb-sm-0,html[data-netbox-color-mode=light] .mb-sm-0{margin-bottom:0!important}html .mb-sm-1,html[data-netbox-color-mode=dark] .mb-sm-1,html[data-netbox-color-mode=light] .mb-sm-1{margin-bottom:.25rem!important}html .mb-sm-2,html[data-netbox-color-mode=dark] .mb-sm-2,html[data-netbox-color-mode=light] .mb-sm-2{margin-bottom:.5rem!important}html .mb-sm-3,html[data-netbox-color-mode=dark] .mb-sm-3,html[data-netbox-color-mode=light] .mb-sm-3{margin-bottom:1rem!important}html .mb-sm-4,html[data-netbox-color-mode=dark] .mb-sm-4,html[data-netbox-color-mode=light] .mb-sm-4{margin-bottom:1.5rem!important}html .mb-sm-5,html[data-netbox-color-mode=dark] .mb-sm-5,html[data-netbox-color-mode=light] .mb-sm-5{margin-bottom:3rem!important}html .mb-sm-auto,html[data-netbox-color-mode=dark] .mb-sm-auto,html[data-netbox-color-mode=light] .mb-sm-auto{margin-bottom:auto!important}html .ms-sm-0,html[data-netbox-color-mode=dark] .ms-sm-0,html[data-netbox-color-mode=light] .ms-sm-0{margin-left:0!important}html .ms-sm-1,html[data-netbox-color-mode=dark] .ms-sm-1,html[data-netbox-color-mode=light] .ms-sm-1{margin-left:.25rem!important}html .ms-sm-2,html[data-netbox-color-mode=dark] .ms-sm-2,html[data-netbox-color-mode=light] .ms-sm-2{margin-left:.5rem!important}html .ms-sm-3,html[data-netbox-color-mode=dark] .ms-sm-3,html[data-netbox-color-mode=light] .ms-sm-3{margin-left:1rem!important}html .ms-sm-4,html[data-netbox-color-mode=dark] .ms-sm-4,html[data-netbox-color-mode=light] .ms-sm-4{margin-left:1.5rem!important}html .ms-sm-5,html[data-netbox-color-mode=dark] .ms-sm-5,html[data-netbox-color-mode=light] .ms-sm-5{margin-left:3rem!important}html .ms-sm-auto,html[data-netbox-color-mode=dark] .ms-sm-auto,html[data-netbox-color-mode=light] .ms-sm-auto{margin-left:auto!important}html .p-sm-0,html[data-netbox-color-mode=dark] .p-sm-0,html[data-netbox-color-mode=light] .p-sm-0{padding:0!important}html .p-sm-1,html[data-netbox-color-mode=dark] .p-sm-1,html[data-netbox-color-mode=light] .p-sm-1{padding:.25rem!important}html .p-sm-2,html[data-netbox-color-mode=dark] .p-sm-2,html[data-netbox-color-mode=light] .p-sm-2{padding:.5rem!important}html .p-sm-3,html[data-netbox-color-mode=dark] .p-sm-3,html[data-netbox-color-mode=light] .p-sm-3{padding:1rem!important}html .p-sm-4,html[data-netbox-color-mode=dark] .p-sm-4,html[data-netbox-color-mode=light] .p-sm-4{padding:1.5rem!important}html .p-sm-5,html[data-netbox-color-mode=dark] .p-sm-5,html[data-netbox-color-mode=light] .p-sm-5{padding:3rem!important}html .px-sm-0,html[data-netbox-color-mode=dark] .px-sm-0,html[data-netbox-color-mode=light] .px-sm-0{padding-right:0!important;padding-left:0!important}html .px-sm-1,html[data-netbox-color-mode=dark] .px-sm-1,html[data-netbox-color-mode=light] .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-sm-2,html[data-netbox-color-mode=dark] .px-sm-2,html[data-netbox-color-mode=light] .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-sm-3,html[data-netbox-color-mode=dark] .px-sm-3,html[data-netbox-color-mode=light] .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}html .px-sm-4,html[data-netbox-color-mode=dark] .px-sm-4,html[data-netbox-color-mode=light] .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-sm-5,html[data-netbox-color-mode=dark] .px-sm-5,html[data-netbox-color-mode=light] .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}html .py-sm-0,html[data-netbox-color-mode=dark] .py-sm-0,html[data-netbox-color-mode=light] .py-sm-0{padding-top:0!important;padding-bottom:0!important}html .py-sm-1,html[data-netbox-color-mode=dark] .py-sm-1,html[data-netbox-color-mode=light] .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-sm-2,html[data-netbox-color-mode=dark] .py-sm-2,html[data-netbox-color-mode=light] .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-sm-3,html[data-netbox-color-mode=dark] .py-sm-3,html[data-netbox-color-mode=light] .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-sm-4,html[data-netbox-color-mode=dark] .py-sm-4,html[data-netbox-color-mode=light] .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-sm-5,html[data-netbox-color-mode=dark] .py-sm-5,html[data-netbox-color-mode=light] .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-sm-0,html[data-netbox-color-mode=dark] .pt-sm-0,html[data-netbox-color-mode=light] .pt-sm-0{padding-top:0!important}html .pt-sm-1,html[data-netbox-color-mode=dark] .pt-sm-1,html[data-netbox-color-mode=light] .pt-sm-1{padding-top:.25rem!important}html .pt-sm-2,html[data-netbox-color-mode=dark] .pt-sm-2,html[data-netbox-color-mode=light] .pt-sm-2{padding-top:.5rem!important}html .pt-sm-3,html[data-netbox-color-mode=dark] .pt-sm-3,html[data-netbox-color-mode=light] .pt-sm-3{padding-top:1rem!important}html .pt-sm-4,html[data-netbox-color-mode=dark] .pt-sm-4,html[data-netbox-color-mode=light] .pt-sm-4{padding-top:1.5rem!important}html .pt-sm-5,html[data-netbox-color-mode=dark] .pt-sm-5,html[data-netbox-color-mode=light] .pt-sm-5{padding-top:3rem!important}html .pe-sm-0,html[data-netbox-color-mode=dark] .pe-sm-0,html[data-netbox-color-mode=light] .pe-sm-0{padding-right:0!important}html .pe-sm-1,html[data-netbox-color-mode=dark] .pe-sm-1,html[data-netbox-color-mode=light] .pe-sm-1{padding-right:.25rem!important}html .pe-sm-2,html[data-netbox-color-mode=dark] .pe-sm-2,html[data-netbox-color-mode=light] .pe-sm-2{padding-right:.5rem!important}html .pe-sm-3,html[data-netbox-color-mode=dark] .pe-sm-3,html[data-netbox-color-mode=light] .pe-sm-3{padding-right:1rem!important}html .pe-sm-4,html[data-netbox-color-mode=dark] .pe-sm-4,html[data-netbox-color-mode=light] .pe-sm-4{padding-right:1.5rem!important}html .pe-sm-5,html[data-netbox-color-mode=dark] .pe-sm-5,html[data-netbox-color-mode=light] .pe-sm-5{padding-right:3rem!important}html .pb-sm-0,html[data-netbox-color-mode=dark] .pb-sm-0,html[data-netbox-color-mode=light] .pb-sm-0{padding-bottom:0!important}html .pb-sm-1,html[data-netbox-color-mode=dark] .pb-sm-1,html[data-netbox-color-mode=light] .pb-sm-1{padding-bottom:.25rem!important}html .pb-sm-2,html[data-netbox-color-mode=dark] .pb-sm-2,html[data-netbox-color-mode=light] .pb-sm-2{padding-bottom:.5rem!important}html .pb-sm-3,html[data-netbox-color-mode=dark] .pb-sm-3,html[data-netbox-color-mode=light] .pb-sm-3{padding-bottom:1rem!important}html .pb-sm-4,html[data-netbox-color-mode=dark] .pb-sm-4,html[data-netbox-color-mode=light] .pb-sm-4{padding-bottom:1.5rem!important}html .pb-sm-5,html[data-netbox-color-mode=dark] .pb-sm-5,html[data-netbox-color-mode=light] .pb-sm-5{padding-bottom:3rem!important}html .ps-sm-0,html[data-netbox-color-mode=dark] .ps-sm-0,html[data-netbox-color-mode=light] .ps-sm-0{padding-left:0!important}html .ps-sm-1,html[data-netbox-color-mode=dark] .ps-sm-1,html[data-netbox-color-mode=light] .ps-sm-1{padding-left:.25rem!important}html .ps-sm-2,html[data-netbox-color-mode=dark] .ps-sm-2,html[data-netbox-color-mode=light] .ps-sm-2{padding-left:.5rem!important}html .ps-sm-3,html[data-netbox-color-mode=dark] .ps-sm-3,html[data-netbox-color-mode=light] .ps-sm-3{padding-left:1rem!important}html .ps-sm-4,html[data-netbox-color-mode=dark] .ps-sm-4,html[data-netbox-color-mode=light] .ps-sm-4{padding-left:1.5rem!important}html .ps-sm-5,html[data-netbox-color-mode=dark] .ps-sm-5,html[data-netbox-color-mode=light] .ps-sm-5{padding-left:3rem!important}html .text-sm-start,html[data-netbox-color-mode=dark] .text-sm-start,html[data-netbox-color-mode=light] .text-sm-start{text-align:left!important}html .text-sm-end,html[data-netbox-color-mode=dark] .text-sm-end,html[data-netbox-color-mode=light] .text-sm-end{text-align:right!important}html .text-sm-center,html[data-netbox-color-mode=dark] .text-sm-center,html[data-netbox-color-mode=light] .text-sm-center{text-align:center!important}}@media print and (min-width: 768px){html .float-md-start,html[data-netbox-color-mode=dark] .float-md-start,html[data-netbox-color-mode=light] .float-md-start{float:left!important}html .float-md-end,html[data-netbox-color-mode=dark] .float-md-end,html[data-netbox-color-mode=light] .float-md-end{float:right!important}html .float-md-none,html[data-netbox-color-mode=dark] .float-md-none,html[data-netbox-color-mode=light] .float-md-none{float:none!important}html .d-md-inline,html[data-netbox-color-mode=dark] .d-md-inline,html[data-netbox-color-mode=light] .d-md-inline{display:inline!important}html .d-md-inline-block,html[data-netbox-color-mode=dark] .d-md-inline-block,html[data-netbox-color-mode=light] .d-md-inline-block{display:inline-block!important}html .d-md-block,html[data-netbox-color-mode=dark] .d-md-block,html[data-netbox-color-mode=light] .d-md-block{display:block!important}html .d-md-grid,html[data-netbox-color-mode=dark] .d-md-grid,html[data-netbox-color-mode=light] .d-md-grid{display:grid!important}html .d-md-table,html[data-netbox-color-mode=dark] .d-md-table,html[data-netbox-color-mode=light] .d-md-table{display:table!important}html .d-md-table-row,html[data-netbox-color-mode=dark] .d-md-table-row,html[data-netbox-color-mode=light] .d-md-table-row{display:table-row!important}html .d-md-table-cell,html[data-netbox-color-mode=dark] .d-md-table-cell,html[data-netbox-color-mode=light] .d-md-table-cell{display:table-cell!important}html .d-md-flex,html[data-netbox-color-mode=dark] .d-md-flex,html[data-netbox-color-mode=light] .d-md-flex{display:flex!important}html .d-md-inline-flex,html[data-netbox-color-mode=dark] .d-md-inline-flex,html[data-netbox-color-mode=light] .d-md-inline-flex{display:inline-flex!important}html .d-md-none,html[data-netbox-color-mode=dark] .d-md-none,html[data-netbox-color-mode=light] .d-md-none{display:none!important}html .flex-md-fill,html[data-netbox-color-mode=dark] .flex-md-fill,html[data-netbox-color-mode=light] .flex-md-fill{flex:1 1 auto!important}html .flex-md-row,html[data-netbox-color-mode=dark] .flex-md-row,html[data-netbox-color-mode=light] .flex-md-row{flex-direction:row!important}html .flex-md-column,html[data-netbox-color-mode=dark] .flex-md-column,html[data-netbox-color-mode=light] .flex-md-column{flex-direction:column!important}html .flex-md-row-reverse,html[data-netbox-color-mode=dark] .flex-md-row-reverse,html[data-netbox-color-mode=light] .flex-md-row-reverse{flex-direction:row-reverse!important}html .flex-md-column-reverse,html[data-netbox-color-mode=dark] .flex-md-column-reverse,html[data-netbox-color-mode=light] .flex-md-column-reverse{flex-direction:column-reverse!important}html .flex-md-grow-0,html[data-netbox-color-mode=dark] .flex-md-grow-0,html[data-netbox-color-mode=light] .flex-md-grow-0{flex-grow:0!important}html .flex-md-grow-1,html[data-netbox-color-mode=dark] .flex-md-grow-1,html[data-netbox-color-mode=light] .flex-md-grow-1{flex-grow:1!important}html .flex-md-shrink-0,html[data-netbox-color-mode=dark] .flex-md-shrink-0,html[data-netbox-color-mode=light] .flex-md-shrink-0{flex-shrink:0!important}html .flex-md-shrink-1,html[data-netbox-color-mode=dark] .flex-md-shrink-1,html[data-netbox-color-mode=light] .flex-md-shrink-1{flex-shrink:1!important}html .flex-md-wrap,html[data-netbox-color-mode=dark] .flex-md-wrap,html[data-netbox-color-mode=light] .flex-md-wrap{flex-wrap:wrap!important}html .flex-md-nowrap,html[data-netbox-color-mode=dark] .flex-md-nowrap,html[data-netbox-color-mode=light] .flex-md-nowrap{flex-wrap:nowrap!important}html .flex-md-wrap-reverse,html[data-netbox-color-mode=dark] .flex-md-wrap-reverse,html[data-netbox-color-mode=light] .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-md-0,html[data-netbox-color-mode=dark] .gap-md-0,html[data-netbox-color-mode=light] .gap-md-0{gap:0!important}html .gap-md-1,html[data-netbox-color-mode=dark] .gap-md-1,html[data-netbox-color-mode=light] .gap-md-1{gap:.25rem!important}html .gap-md-2,html[data-netbox-color-mode=dark] .gap-md-2,html[data-netbox-color-mode=light] .gap-md-2{gap:.5rem!important}html .gap-md-3,html[data-netbox-color-mode=dark] .gap-md-3,html[data-netbox-color-mode=light] .gap-md-3{gap:1rem!important}html .gap-md-4,html[data-netbox-color-mode=dark] .gap-md-4,html[data-netbox-color-mode=light] .gap-md-4{gap:1.5rem!important}html .gap-md-5,html[data-netbox-color-mode=dark] .gap-md-5,html[data-netbox-color-mode=light] .gap-md-5{gap:3rem!important}html .justify-content-md-start,html[data-netbox-color-mode=dark] .justify-content-md-start,html[data-netbox-color-mode=light] .justify-content-md-start{justify-content:flex-start!important}html .justify-content-md-end,html[data-netbox-color-mode=dark] .justify-content-md-end,html[data-netbox-color-mode=light] .justify-content-md-end{justify-content:flex-end!important}html .justify-content-md-center,html[data-netbox-color-mode=dark] .justify-content-md-center,html[data-netbox-color-mode=light] .justify-content-md-center{justify-content:center!important}html .justify-content-md-between,html[data-netbox-color-mode=dark] .justify-content-md-between,html[data-netbox-color-mode=light] .justify-content-md-between{justify-content:space-between!important}html .justify-content-md-around,html[data-netbox-color-mode=dark] .justify-content-md-around,html[data-netbox-color-mode=light] .justify-content-md-around{justify-content:space-around!important}html .justify-content-md-evenly,html[data-netbox-color-mode=dark] .justify-content-md-evenly,html[data-netbox-color-mode=light] .justify-content-md-evenly{justify-content:space-evenly!important}html .align-items-md-start,html[data-netbox-color-mode=dark] .align-items-md-start,html[data-netbox-color-mode=light] .align-items-md-start{align-items:flex-start!important}html .align-items-md-end,html[data-netbox-color-mode=dark] .align-items-md-end,html[data-netbox-color-mode=light] .align-items-md-end{align-items:flex-end!important}html .align-items-md-center,html[data-netbox-color-mode=dark] .align-items-md-center,html[data-netbox-color-mode=light] .align-items-md-center{align-items:center!important}html .align-items-md-baseline,html[data-netbox-color-mode=dark] .align-items-md-baseline,html[data-netbox-color-mode=light] .align-items-md-baseline{align-items:baseline!important}html .align-items-md-stretch,html[data-netbox-color-mode=dark] .align-items-md-stretch,html[data-netbox-color-mode=light] .align-items-md-stretch{align-items:stretch!important}html .align-content-md-start,html[data-netbox-color-mode=dark] .align-content-md-start,html[data-netbox-color-mode=light] .align-content-md-start{align-content:flex-start!important}html .align-content-md-end,html[data-netbox-color-mode=dark] .align-content-md-end,html[data-netbox-color-mode=light] .align-content-md-end{align-content:flex-end!important}html .align-content-md-center,html[data-netbox-color-mode=dark] .align-content-md-center,html[data-netbox-color-mode=light] .align-content-md-center{align-content:center!important}html .align-content-md-between,html[data-netbox-color-mode=dark] .align-content-md-between,html[data-netbox-color-mode=light] .align-content-md-between{align-content:space-between!important}html .align-content-md-around,html[data-netbox-color-mode=dark] .align-content-md-around,html[data-netbox-color-mode=light] .align-content-md-around{align-content:space-around!important}html .align-content-md-stretch,html[data-netbox-color-mode=dark] .align-content-md-stretch,html[data-netbox-color-mode=light] .align-content-md-stretch{align-content:stretch!important}html .align-self-md-auto,html[data-netbox-color-mode=dark] .align-self-md-auto,html[data-netbox-color-mode=light] .align-self-md-auto{align-self:auto!important}html .align-self-md-start,html[data-netbox-color-mode=dark] .align-self-md-start,html[data-netbox-color-mode=light] .align-self-md-start{align-self:flex-start!important}html .align-self-md-end,html[data-netbox-color-mode=dark] .align-self-md-end,html[data-netbox-color-mode=light] .align-self-md-end{align-self:flex-end!important}html .align-self-md-center,html[data-netbox-color-mode=dark] .align-self-md-center,html[data-netbox-color-mode=light] .align-self-md-center{align-self:center!important}html .align-self-md-baseline,html[data-netbox-color-mode=dark] .align-self-md-baseline,html[data-netbox-color-mode=light] .align-self-md-baseline{align-self:baseline!important}html .align-self-md-stretch,html[data-netbox-color-mode=dark] .align-self-md-stretch,html[data-netbox-color-mode=light] .align-self-md-stretch{align-self:stretch!important}html .order-md-first,html[data-netbox-color-mode=dark] .order-md-first,html[data-netbox-color-mode=light] .order-md-first{order:-1!important}html .order-md-0,html[data-netbox-color-mode=dark] .order-md-0,html[data-netbox-color-mode=light] .order-md-0{order:0!important}html .order-md-1,html[data-netbox-color-mode=dark] .order-md-1,html[data-netbox-color-mode=light] .order-md-1{order:1!important}html .order-md-2,html[data-netbox-color-mode=dark] .order-md-2,html[data-netbox-color-mode=light] .order-md-2{order:2!important}html .order-md-3,html[data-netbox-color-mode=dark] .order-md-3,html[data-netbox-color-mode=light] .order-md-3{order:3!important}html .order-md-4,html[data-netbox-color-mode=dark] .order-md-4,html[data-netbox-color-mode=light] .order-md-4{order:4!important}html .order-md-5,html[data-netbox-color-mode=dark] .order-md-5,html[data-netbox-color-mode=light] .order-md-5{order:5!important}html .order-md-last,html[data-netbox-color-mode=dark] .order-md-last,html[data-netbox-color-mode=light] .order-md-last{order:6!important}html .m-md-0,html[data-netbox-color-mode=dark] .m-md-0,html[data-netbox-color-mode=light] .m-md-0{margin:0!important}html .m-md-1,html[data-netbox-color-mode=dark] .m-md-1,html[data-netbox-color-mode=light] .m-md-1{margin:.25rem!important}html .m-md-2,html[data-netbox-color-mode=dark] .m-md-2,html[data-netbox-color-mode=light] .m-md-2{margin:.5rem!important}html .m-md-3,html[data-netbox-color-mode=dark] .m-md-3,html[data-netbox-color-mode=light] .m-md-3{margin:1rem!important}html .m-md-4,html[data-netbox-color-mode=dark] .m-md-4,html[data-netbox-color-mode=light] .m-md-4{margin:1.5rem!important}html .m-md-5,html[data-netbox-color-mode=dark] .m-md-5,html[data-netbox-color-mode=light] .m-md-5{margin:3rem!important}html .m-md-auto,html[data-netbox-color-mode=dark] .m-md-auto,html[data-netbox-color-mode=light] .m-md-auto{margin:auto!important}html .mx-md-0,html[data-netbox-color-mode=dark] .mx-md-0,html[data-netbox-color-mode=light] .mx-md-0{margin-right:0!important;margin-left:0!important}html .mx-md-1,html[data-netbox-color-mode=dark] .mx-md-1,html[data-netbox-color-mode=light] .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-md-2,html[data-netbox-color-mode=dark] .mx-md-2,html[data-netbox-color-mode=light] .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-md-3,html[data-netbox-color-mode=dark] .mx-md-3,html[data-netbox-color-mode=light] .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-md-4,html[data-netbox-color-mode=dark] .mx-md-4,html[data-netbox-color-mode=light] .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-md-5,html[data-netbox-color-mode=dark] .mx-md-5,html[data-netbox-color-mode=light] .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-md-auto,html[data-netbox-color-mode=dark] .mx-md-auto,html[data-netbox-color-mode=light] .mx-md-auto{margin-right:auto!important;margin-left:auto!important}html .my-md-0,html[data-netbox-color-mode=dark] .my-md-0,html[data-netbox-color-mode=light] .my-md-0{margin-top:0!important;margin-bottom:0!important}html .my-md-1,html[data-netbox-color-mode=dark] .my-md-1,html[data-netbox-color-mode=light] .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-md-2,html[data-netbox-color-mode=dark] .my-md-2,html[data-netbox-color-mode=light] .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-md-3,html[data-netbox-color-mode=dark] .my-md-3,html[data-netbox-color-mode=light] .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-md-4,html[data-netbox-color-mode=dark] .my-md-4,html[data-netbox-color-mode=light] .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-md-5,html[data-netbox-color-mode=dark] .my-md-5,html[data-netbox-color-mode=light] .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-md-auto,html[data-netbox-color-mode=dark] .my-md-auto,html[data-netbox-color-mode=light] .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-md-0,html[data-netbox-color-mode=dark] .mt-md-0,html[data-netbox-color-mode=light] .mt-md-0{margin-top:0!important}html .mt-md-1,html[data-netbox-color-mode=dark] .mt-md-1,html[data-netbox-color-mode=light] .mt-md-1{margin-top:.25rem!important}html .mt-md-2,html[data-netbox-color-mode=dark] .mt-md-2,html[data-netbox-color-mode=light] .mt-md-2{margin-top:.5rem!important}html .mt-md-3,html[data-netbox-color-mode=dark] .mt-md-3,html[data-netbox-color-mode=light] .mt-md-3{margin-top:1rem!important}html .mt-md-4,html[data-netbox-color-mode=dark] .mt-md-4,html[data-netbox-color-mode=light] .mt-md-4{margin-top:1.5rem!important}html .mt-md-5,html[data-netbox-color-mode=dark] .mt-md-5,html[data-netbox-color-mode=light] .mt-md-5{margin-top:3rem!important}html .mt-md-auto,html[data-netbox-color-mode=dark] .mt-md-auto,html[data-netbox-color-mode=light] .mt-md-auto{margin-top:auto!important}html .me-md-0,html[data-netbox-color-mode=dark] .me-md-0,html[data-netbox-color-mode=light] .me-md-0{margin-right:0!important}html .me-md-1,html[data-netbox-color-mode=dark] .me-md-1,html[data-netbox-color-mode=light] .me-md-1{margin-right:.25rem!important}html .me-md-2,html[data-netbox-color-mode=dark] .me-md-2,html[data-netbox-color-mode=light] .me-md-2{margin-right:.5rem!important}html .me-md-3,html[data-netbox-color-mode=dark] .me-md-3,html[data-netbox-color-mode=light] .me-md-3{margin-right:1rem!important}html .me-md-4,html[data-netbox-color-mode=dark] .me-md-4,html[data-netbox-color-mode=light] .me-md-4{margin-right:1.5rem!important}html .me-md-5,html[data-netbox-color-mode=dark] .me-md-5,html[data-netbox-color-mode=light] .me-md-5{margin-right:3rem!important}html .me-md-auto,html[data-netbox-color-mode=dark] .me-md-auto,html[data-netbox-color-mode=light] .me-md-auto{margin-right:auto!important}html .mb-md-0,html[data-netbox-color-mode=dark] .mb-md-0,html[data-netbox-color-mode=light] .mb-md-0{margin-bottom:0!important}html .mb-md-1,html[data-netbox-color-mode=dark] .mb-md-1,html[data-netbox-color-mode=light] .mb-md-1{margin-bottom:.25rem!important}html .mb-md-2,html[data-netbox-color-mode=dark] .mb-md-2,html[data-netbox-color-mode=light] .mb-md-2{margin-bottom:.5rem!important}html .mb-md-3,html[data-netbox-color-mode=dark] .mb-md-3,html[data-netbox-color-mode=light] .mb-md-3{margin-bottom:1rem!important}html .mb-md-4,html[data-netbox-color-mode=dark] .mb-md-4,html[data-netbox-color-mode=light] .mb-md-4{margin-bottom:1.5rem!important}html .mb-md-5,html[data-netbox-color-mode=dark] .mb-md-5,html[data-netbox-color-mode=light] .mb-md-5{margin-bottom:3rem!important}html .mb-md-auto,html[data-netbox-color-mode=dark] .mb-md-auto,html[data-netbox-color-mode=light] .mb-md-auto{margin-bottom:auto!important}html .ms-md-0,html[data-netbox-color-mode=dark] .ms-md-0,html[data-netbox-color-mode=light] .ms-md-0{margin-left:0!important}html .ms-md-1,html[data-netbox-color-mode=dark] .ms-md-1,html[data-netbox-color-mode=light] .ms-md-1{margin-left:.25rem!important}html .ms-md-2,html[data-netbox-color-mode=dark] .ms-md-2,html[data-netbox-color-mode=light] .ms-md-2{margin-left:.5rem!important}html .ms-md-3,html[data-netbox-color-mode=dark] .ms-md-3,html[data-netbox-color-mode=light] .ms-md-3{margin-left:1rem!important}html .ms-md-4,html[data-netbox-color-mode=dark] .ms-md-4,html[data-netbox-color-mode=light] .ms-md-4{margin-left:1.5rem!important}html .ms-md-5,html[data-netbox-color-mode=dark] .ms-md-5,html[data-netbox-color-mode=light] .ms-md-5{margin-left:3rem!important}html .ms-md-auto,html[data-netbox-color-mode=dark] .ms-md-auto,html[data-netbox-color-mode=light] .ms-md-auto{margin-left:auto!important}html .p-md-0,html[data-netbox-color-mode=dark] .p-md-0,html[data-netbox-color-mode=light] .p-md-0{padding:0!important}html .p-md-1,html[data-netbox-color-mode=dark] .p-md-1,html[data-netbox-color-mode=light] .p-md-1{padding:.25rem!important}html .p-md-2,html[data-netbox-color-mode=dark] .p-md-2,html[data-netbox-color-mode=light] .p-md-2{padding:.5rem!important}html .p-md-3,html[data-netbox-color-mode=dark] .p-md-3,html[data-netbox-color-mode=light] .p-md-3{padding:1rem!important}html .p-md-4,html[data-netbox-color-mode=dark] .p-md-4,html[data-netbox-color-mode=light] .p-md-4{padding:1.5rem!important}html .p-md-5,html[data-netbox-color-mode=dark] .p-md-5,html[data-netbox-color-mode=light] .p-md-5{padding:3rem!important}html .px-md-0,html[data-netbox-color-mode=dark] .px-md-0,html[data-netbox-color-mode=light] .px-md-0{padding-right:0!important;padding-left:0!important}html .px-md-1,html[data-netbox-color-mode=dark] .px-md-1,html[data-netbox-color-mode=light] .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-md-2,html[data-netbox-color-mode=dark] .px-md-2,html[data-netbox-color-mode=light] .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-md-3,html[data-netbox-color-mode=dark] .px-md-3,html[data-netbox-color-mode=light] .px-md-3{padding-right:1rem!important;padding-left:1rem!important}html .px-md-4,html[data-netbox-color-mode=dark] .px-md-4,html[data-netbox-color-mode=light] .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-md-5,html[data-netbox-color-mode=dark] .px-md-5,html[data-netbox-color-mode=light] .px-md-5{padding-right:3rem!important;padding-left:3rem!important}html .py-md-0,html[data-netbox-color-mode=dark] .py-md-0,html[data-netbox-color-mode=light] .py-md-0{padding-top:0!important;padding-bottom:0!important}html .py-md-1,html[data-netbox-color-mode=dark] .py-md-1,html[data-netbox-color-mode=light] .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-md-2,html[data-netbox-color-mode=dark] .py-md-2,html[data-netbox-color-mode=light] .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-md-3,html[data-netbox-color-mode=dark] .py-md-3,html[data-netbox-color-mode=light] .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-md-4,html[data-netbox-color-mode=dark] .py-md-4,html[data-netbox-color-mode=light] .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-md-5,html[data-netbox-color-mode=dark] .py-md-5,html[data-netbox-color-mode=light] .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-md-0,html[data-netbox-color-mode=dark] .pt-md-0,html[data-netbox-color-mode=light] .pt-md-0{padding-top:0!important}html .pt-md-1,html[data-netbox-color-mode=dark] .pt-md-1,html[data-netbox-color-mode=light] .pt-md-1{padding-top:.25rem!important}html .pt-md-2,html[data-netbox-color-mode=dark] .pt-md-2,html[data-netbox-color-mode=light] .pt-md-2{padding-top:.5rem!important}html .pt-md-3,html[data-netbox-color-mode=dark] .pt-md-3,html[data-netbox-color-mode=light] .pt-md-3{padding-top:1rem!important}html .pt-md-4,html[data-netbox-color-mode=dark] .pt-md-4,html[data-netbox-color-mode=light] .pt-md-4{padding-top:1.5rem!important}html .pt-md-5,html[data-netbox-color-mode=dark] .pt-md-5,html[data-netbox-color-mode=light] .pt-md-5{padding-top:3rem!important}html .pe-md-0,html[data-netbox-color-mode=dark] .pe-md-0,html[data-netbox-color-mode=light] .pe-md-0{padding-right:0!important}html .pe-md-1,html[data-netbox-color-mode=dark] .pe-md-1,html[data-netbox-color-mode=light] .pe-md-1{padding-right:.25rem!important}html .pe-md-2,html[data-netbox-color-mode=dark] .pe-md-2,html[data-netbox-color-mode=light] .pe-md-2{padding-right:.5rem!important}html .pe-md-3,html[data-netbox-color-mode=dark] .pe-md-3,html[data-netbox-color-mode=light] .pe-md-3{padding-right:1rem!important}html .pe-md-4,html[data-netbox-color-mode=dark] .pe-md-4,html[data-netbox-color-mode=light] .pe-md-4{padding-right:1.5rem!important}html .pe-md-5,html[data-netbox-color-mode=dark] .pe-md-5,html[data-netbox-color-mode=light] .pe-md-5{padding-right:3rem!important}html .pb-md-0,html[data-netbox-color-mode=dark] .pb-md-0,html[data-netbox-color-mode=light] .pb-md-0{padding-bottom:0!important}html .pb-md-1,html[data-netbox-color-mode=dark] .pb-md-1,html[data-netbox-color-mode=light] .pb-md-1{padding-bottom:.25rem!important}html .pb-md-2,html[data-netbox-color-mode=dark] .pb-md-2,html[data-netbox-color-mode=light] .pb-md-2{padding-bottom:.5rem!important}html .pb-md-3,html[data-netbox-color-mode=dark] .pb-md-3,html[data-netbox-color-mode=light] .pb-md-3{padding-bottom:1rem!important}html .pb-md-4,html[data-netbox-color-mode=dark] .pb-md-4,html[data-netbox-color-mode=light] .pb-md-4{padding-bottom:1.5rem!important}html .pb-md-5,html[data-netbox-color-mode=dark] .pb-md-5,html[data-netbox-color-mode=light] .pb-md-5{padding-bottom:3rem!important}html .ps-md-0,html[data-netbox-color-mode=dark] .ps-md-0,html[data-netbox-color-mode=light] .ps-md-0{padding-left:0!important}html .ps-md-1,html[data-netbox-color-mode=dark] .ps-md-1,html[data-netbox-color-mode=light] .ps-md-1{padding-left:.25rem!important}html .ps-md-2,html[data-netbox-color-mode=dark] .ps-md-2,html[data-netbox-color-mode=light] .ps-md-2{padding-left:.5rem!important}html .ps-md-3,html[data-netbox-color-mode=dark] .ps-md-3,html[data-netbox-color-mode=light] .ps-md-3{padding-left:1rem!important}html .ps-md-4,html[data-netbox-color-mode=dark] .ps-md-4,html[data-netbox-color-mode=light] .ps-md-4{padding-left:1.5rem!important}html .ps-md-5,html[data-netbox-color-mode=dark] .ps-md-5,html[data-netbox-color-mode=light] .ps-md-5{padding-left:3rem!important}html .text-md-start,html[data-netbox-color-mode=dark] .text-md-start,html[data-netbox-color-mode=light] .text-md-start{text-align:left!important}html .text-md-end,html[data-netbox-color-mode=dark] .text-md-end,html[data-netbox-color-mode=light] .text-md-end{text-align:right!important}html .text-md-center,html[data-netbox-color-mode=dark] .text-md-center,html[data-netbox-color-mode=light] .text-md-center{text-align:center!important}}@media print and (min-width: 992px){html .float-lg-start,html[data-netbox-color-mode=dark] .float-lg-start,html[data-netbox-color-mode=light] .float-lg-start{float:left!important}html .float-lg-end,html[data-netbox-color-mode=dark] .float-lg-end,html[data-netbox-color-mode=light] .float-lg-end{float:right!important}html .float-lg-none,html[data-netbox-color-mode=dark] .float-lg-none,html[data-netbox-color-mode=light] .float-lg-none{float:none!important}html .d-lg-inline,html[data-netbox-color-mode=dark] .d-lg-inline,html[data-netbox-color-mode=light] .d-lg-inline{display:inline!important}html .d-lg-inline-block,html[data-netbox-color-mode=dark] .d-lg-inline-block,html[data-netbox-color-mode=light] .d-lg-inline-block{display:inline-block!important}html .d-lg-block,html[data-netbox-color-mode=dark] .d-lg-block,html[data-netbox-color-mode=light] .d-lg-block{display:block!important}html .d-lg-grid,html[data-netbox-color-mode=dark] .d-lg-grid,html[data-netbox-color-mode=light] .d-lg-grid{display:grid!important}html .d-lg-table,html[data-netbox-color-mode=dark] .d-lg-table,html[data-netbox-color-mode=light] .d-lg-table{display:table!important}html .d-lg-table-row,html[data-netbox-color-mode=dark] .d-lg-table-row,html[data-netbox-color-mode=light] .d-lg-table-row{display:table-row!important}html .d-lg-table-cell,html[data-netbox-color-mode=dark] .d-lg-table-cell,html[data-netbox-color-mode=light] .d-lg-table-cell{display:table-cell!important}html .d-lg-flex,html[data-netbox-color-mode=dark] .d-lg-flex,html[data-netbox-color-mode=light] .d-lg-flex{display:flex!important}html .d-lg-inline-flex,html[data-netbox-color-mode=dark] .d-lg-inline-flex,html[data-netbox-color-mode=light] .d-lg-inline-flex{display:inline-flex!important}html .d-lg-none,html[data-netbox-color-mode=dark] .d-lg-none,html[data-netbox-color-mode=light] .d-lg-none{display:none!important}html .flex-lg-fill,html[data-netbox-color-mode=dark] .flex-lg-fill,html[data-netbox-color-mode=light] .flex-lg-fill{flex:1 1 auto!important}html .flex-lg-row,html[data-netbox-color-mode=dark] .flex-lg-row,html[data-netbox-color-mode=light] .flex-lg-row{flex-direction:row!important}html .flex-lg-column,html[data-netbox-color-mode=dark] .flex-lg-column,html[data-netbox-color-mode=light] .flex-lg-column{flex-direction:column!important}html .flex-lg-row-reverse,html[data-netbox-color-mode=dark] .flex-lg-row-reverse,html[data-netbox-color-mode=light] .flex-lg-row-reverse{flex-direction:row-reverse!important}html .flex-lg-column-reverse,html[data-netbox-color-mode=dark] .flex-lg-column-reverse,html[data-netbox-color-mode=light] .flex-lg-column-reverse{flex-direction:column-reverse!important}html .flex-lg-grow-0,html[data-netbox-color-mode=dark] .flex-lg-grow-0,html[data-netbox-color-mode=light] .flex-lg-grow-0{flex-grow:0!important}html .flex-lg-grow-1,html[data-netbox-color-mode=dark] .flex-lg-grow-1,html[data-netbox-color-mode=light] .flex-lg-grow-1{flex-grow:1!important}html .flex-lg-shrink-0,html[data-netbox-color-mode=dark] .flex-lg-shrink-0,html[data-netbox-color-mode=light] .flex-lg-shrink-0{flex-shrink:0!important}html .flex-lg-shrink-1,html[data-netbox-color-mode=dark] .flex-lg-shrink-1,html[data-netbox-color-mode=light] .flex-lg-shrink-1{flex-shrink:1!important}html .flex-lg-wrap,html[data-netbox-color-mode=dark] .flex-lg-wrap,html[data-netbox-color-mode=light] .flex-lg-wrap{flex-wrap:wrap!important}html .flex-lg-nowrap,html[data-netbox-color-mode=dark] .flex-lg-nowrap,html[data-netbox-color-mode=light] .flex-lg-nowrap{flex-wrap:nowrap!important}html .flex-lg-wrap-reverse,html[data-netbox-color-mode=dark] .flex-lg-wrap-reverse,html[data-netbox-color-mode=light] .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-lg-0,html[data-netbox-color-mode=dark] .gap-lg-0,html[data-netbox-color-mode=light] .gap-lg-0{gap:0!important}html .gap-lg-1,html[data-netbox-color-mode=dark] .gap-lg-1,html[data-netbox-color-mode=light] .gap-lg-1{gap:.25rem!important}html .gap-lg-2,html[data-netbox-color-mode=dark] .gap-lg-2,html[data-netbox-color-mode=light] .gap-lg-2{gap:.5rem!important}html .gap-lg-3,html[data-netbox-color-mode=dark] .gap-lg-3,html[data-netbox-color-mode=light] .gap-lg-3{gap:1rem!important}html .gap-lg-4,html[data-netbox-color-mode=dark] .gap-lg-4,html[data-netbox-color-mode=light] .gap-lg-4{gap:1.5rem!important}html .gap-lg-5,html[data-netbox-color-mode=dark] .gap-lg-5,html[data-netbox-color-mode=light] .gap-lg-5{gap:3rem!important}html .justify-content-lg-start,html[data-netbox-color-mode=dark] .justify-content-lg-start,html[data-netbox-color-mode=light] .justify-content-lg-start{justify-content:flex-start!important}html .justify-content-lg-end,html[data-netbox-color-mode=dark] .justify-content-lg-end,html[data-netbox-color-mode=light] .justify-content-lg-end{justify-content:flex-end!important}html .justify-content-lg-center,html[data-netbox-color-mode=dark] .justify-content-lg-center,html[data-netbox-color-mode=light] .justify-content-lg-center{justify-content:center!important}html .justify-content-lg-between,html[data-netbox-color-mode=dark] .justify-content-lg-between,html[data-netbox-color-mode=light] .justify-content-lg-between{justify-content:space-between!important}html .justify-content-lg-around,html[data-netbox-color-mode=dark] .justify-content-lg-around,html[data-netbox-color-mode=light] .justify-content-lg-around{justify-content:space-around!important}html .justify-content-lg-evenly,html[data-netbox-color-mode=dark] .justify-content-lg-evenly,html[data-netbox-color-mode=light] .justify-content-lg-evenly{justify-content:space-evenly!important}html .align-items-lg-start,html[data-netbox-color-mode=dark] .align-items-lg-start,html[data-netbox-color-mode=light] .align-items-lg-start{align-items:flex-start!important}html .align-items-lg-end,html[data-netbox-color-mode=dark] .align-items-lg-end,html[data-netbox-color-mode=light] .align-items-lg-end{align-items:flex-end!important}html .align-items-lg-center,html[data-netbox-color-mode=dark] .align-items-lg-center,html[data-netbox-color-mode=light] .align-items-lg-center{align-items:center!important}html .align-items-lg-baseline,html[data-netbox-color-mode=dark] .align-items-lg-baseline,html[data-netbox-color-mode=light] .align-items-lg-baseline{align-items:baseline!important}html .align-items-lg-stretch,html[data-netbox-color-mode=dark] .align-items-lg-stretch,html[data-netbox-color-mode=light] .align-items-lg-stretch{align-items:stretch!important}html .align-content-lg-start,html[data-netbox-color-mode=dark] .align-content-lg-start,html[data-netbox-color-mode=light] .align-content-lg-start{align-content:flex-start!important}html .align-content-lg-end,html[data-netbox-color-mode=dark] .align-content-lg-end,html[data-netbox-color-mode=light] .align-content-lg-end{align-content:flex-end!important}html .align-content-lg-center,html[data-netbox-color-mode=dark] .align-content-lg-center,html[data-netbox-color-mode=light] .align-content-lg-center{align-content:center!important}html .align-content-lg-between,html[data-netbox-color-mode=dark] .align-content-lg-between,html[data-netbox-color-mode=light] .align-content-lg-between{align-content:space-between!important}html .align-content-lg-around,html[data-netbox-color-mode=dark] .align-content-lg-around,html[data-netbox-color-mode=light] .align-content-lg-around{align-content:space-around!important}html .align-content-lg-stretch,html[data-netbox-color-mode=dark] .align-content-lg-stretch,html[data-netbox-color-mode=light] .align-content-lg-stretch{align-content:stretch!important}html .align-self-lg-auto,html[data-netbox-color-mode=dark] .align-self-lg-auto,html[data-netbox-color-mode=light] .align-self-lg-auto{align-self:auto!important}html .align-self-lg-start,html[data-netbox-color-mode=dark] .align-self-lg-start,html[data-netbox-color-mode=light] .align-self-lg-start{align-self:flex-start!important}html .align-self-lg-end,html[data-netbox-color-mode=dark] .align-self-lg-end,html[data-netbox-color-mode=light] .align-self-lg-end{align-self:flex-end!important}html .align-self-lg-center,html[data-netbox-color-mode=dark] .align-self-lg-center,html[data-netbox-color-mode=light] .align-self-lg-center{align-self:center!important}html .align-self-lg-baseline,html[data-netbox-color-mode=dark] .align-self-lg-baseline,html[data-netbox-color-mode=light] .align-self-lg-baseline{align-self:baseline!important}html .align-self-lg-stretch,html[data-netbox-color-mode=dark] .align-self-lg-stretch,html[data-netbox-color-mode=light] .align-self-lg-stretch{align-self:stretch!important}html .order-lg-first,html[data-netbox-color-mode=dark] .order-lg-first,html[data-netbox-color-mode=light] .order-lg-first{order:-1!important}html .order-lg-0,html[data-netbox-color-mode=dark] .order-lg-0,html[data-netbox-color-mode=light] .order-lg-0{order:0!important}html .order-lg-1,html[data-netbox-color-mode=dark] .order-lg-1,html[data-netbox-color-mode=light] .order-lg-1{order:1!important}html .order-lg-2,html[data-netbox-color-mode=dark] .order-lg-2,html[data-netbox-color-mode=light] .order-lg-2{order:2!important}html .order-lg-3,html[data-netbox-color-mode=dark] .order-lg-3,html[data-netbox-color-mode=light] .order-lg-3{order:3!important}html .order-lg-4,html[data-netbox-color-mode=dark] .order-lg-4,html[data-netbox-color-mode=light] .order-lg-4{order:4!important}html .order-lg-5,html[data-netbox-color-mode=dark] .order-lg-5,html[data-netbox-color-mode=light] .order-lg-5{order:5!important}html .order-lg-last,html[data-netbox-color-mode=dark] .order-lg-last,html[data-netbox-color-mode=light] .order-lg-last{order:6!important}html .m-lg-0,html[data-netbox-color-mode=dark] .m-lg-0,html[data-netbox-color-mode=light] .m-lg-0{margin:0!important}html .m-lg-1,html[data-netbox-color-mode=dark] .m-lg-1,html[data-netbox-color-mode=light] .m-lg-1{margin:.25rem!important}html .m-lg-2,html[data-netbox-color-mode=dark] .m-lg-2,html[data-netbox-color-mode=light] .m-lg-2{margin:.5rem!important}html .m-lg-3,html[data-netbox-color-mode=dark] .m-lg-3,html[data-netbox-color-mode=light] .m-lg-3{margin:1rem!important}html .m-lg-4,html[data-netbox-color-mode=dark] .m-lg-4,html[data-netbox-color-mode=light] .m-lg-4{margin:1.5rem!important}html .m-lg-5,html[data-netbox-color-mode=dark] .m-lg-5,html[data-netbox-color-mode=light] .m-lg-5{margin:3rem!important}html .m-lg-auto,html[data-netbox-color-mode=dark] .m-lg-auto,html[data-netbox-color-mode=light] .m-lg-auto{margin:auto!important}html .mx-lg-0,html[data-netbox-color-mode=dark] .mx-lg-0,html[data-netbox-color-mode=light] .mx-lg-0{margin-right:0!important;margin-left:0!important}html .mx-lg-1,html[data-netbox-color-mode=dark] .mx-lg-1,html[data-netbox-color-mode=light] .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-lg-2,html[data-netbox-color-mode=dark] .mx-lg-2,html[data-netbox-color-mode=light] .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-lg-3,html[data-netbox-color-mode=dark] .mx-lg-3,html[data-netbox-color-mode=light] .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-lg-4,html[data-netbox-color-mode=dark] .mx-lg-4,html[data-netbox-color-mode=light] .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-lg-5,html[data-netbox-color-mode=dark] .mx-lg-5,html[data-netbox-color-mode=light] .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-lg-auto,html[data-netbox-color-mode=dark] .mx-lg-auto,html[data-netbox-color-mode=light] .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}html .my-lg-0,html[data-netbox-color-mode=dark] .my-lg-0,html[data-netbox-color-mode=light] .my-lg-0{margin-top:0!important;margin-bottom:0!important}html .my-lg-1,html[data-netbox-color-mode=dark] .my-lg-1,html[data-netbox-color-mode=light] .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-lg-2,html[data-netbox-color-mode=dark] .my-lg-2,html[data-netbox-color-mode=light] .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-lg-3,html[data-netbox-color-mode=dark] .my-lg-3,html[data-netbox-color-mode=light] .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-lg-4,html[data-netbox-color-mode=dark] .my-lg-4,html[data-netbox-color-mode=light] .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-lg-5,html[data-netbox-color-mode=dark] .my-lg-5,html[data-netbox-color-mode=light] .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-lg-auto,html[data-netbox-color-mode=dark] .my-lg-auto,html[data-netbox-color-mode=light] .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-lg-0,html[data-netbox-color-mode=dark] .mt-lg-0,html[data-netbox-color-mode=light] .mt-lg-0{margin-top:0!important}html .mt-lg-1,html[data-netbox-color-mode=dark] .mt-lg-1,html[data-netbox-color-mode=light] .mt-lg-1{margin-top:.25rem!important}html .mt-lg-2,html[data-netbox-color-mode=dark] .mt-lg-2,html[data-netbox-color-mode=light] .mt-lg-2{margin-top:.5rem!important}html .mt-lg-3,html[data-netbox-color-mode=dark] .mt-lg-3,html[data-netbox-color-mode=light] .mt-lg-3{margin-top:1rem!important}html .mt-lg-4,html[data-netbox-color-mode=dark] .mt-lg-4,html[data-netbox-color-mode=light] .mt-lg-4{margin-top:1.5rem!important}html .mt-lg-5,html[data-netbox-color-mode=dark] .mt-lg-5,html[data-netbox-color-mode=light] .mt-lg-5{margin-top:3rem!important}html .mt-lg-auto,html[data-netbox-color-mode=dark] .mt-lg-auto,html[data-netbox-color-mode=light] .mt-lg-auto{margin-top:auto!important}html .me-lg-0,html[data-netbox-color-mode=dark] .me-lg-0,html[data-netbox-color-mode=light] .me-lg-0{margin-right:0!important}html .me-lg-1,html[data-netbox-color-mode=dark] .me-lg-1,html[data-netbox-color-mode=light] .me-lg-1{margin-right:.25rem!important}html .me-lg-2,html[data-netbox-color-mode=dark] .me-lg-2,html[data-netbox-color-mode=light] .me-lg-2{margin-right:.5rem!important}html .me-lg-3,html[data-netbox-color-mode=dark] .me-lg-3,html[data-netbox-color-mode=light] .me-lg-3{margin-right:1rem!important}html .me-lg-4,html[data-netbox-color-mode=dark] .me-lg-4,html[data-netbox-color-mode=light] .me-lg-4{margin-right:1.5rem!important}html .me-lg-5,html[data-netbox-color-mode=dark] .me-lg-5,html[data-netbox-color-mode=light] .me-lg-5{margin-right:3rem!important}html .me-lg-auto,html[data-netbox-color-mode=dark] .me-lg-auto,html[data-netbox-color-mode=light] .me-lg-auto{margin-right:auto!important}html .mb-lg-0,html[data-netbox-color-mode=dark] .mb-lg-0,html[data-netbox-color-mode=light] .mb-lg-0{margin-bottom:0!important}html .mb-lg-1,html[data-netbox-color-mode=dark] .mb-lg-1,html[data-netbox-color-mode=light] .mb-lg-1{margin-bottom:.25rem!important}html .mb-lg-2,html[data-netbox-color-mode=dark] .mb-lg-2,html[data-netbox-color-mode=light] .mb-lg-2{margin-bottom:.5rem!important}html .mb-lg-3,html[data-netbox-color-mode=dark] .mb-lg-3,html[data-netbox-color-mode=light] .mb-lg-3{margin-bottom:1rem!important}html .mb-lg-4,html[data-netbox-color-mode=dark] .mb-lg-4,html[data-netbox-color-mode=light] .mb-lg-4{margin-bottom:1.5rem!important}html .mb-lg-5,html[data-netbox-color-mode=dark] .mb-lg-5,html[data-netbox-color-mode=light] .mb-lg-5{margin-bottom:3rem!important}html .mb-lg-auto,html[data-netbox-color-mode=dark] .mb-lg-auto,html[data-netbox-color-mode=light] .mb-lg-auto{margin-bottom:auto!important}html .ms-lg-0,html[data-netbox-color-mode=dark] .ms-lg-0,html[data-netbox-color-mode=light] .ms-lg-0{margin-left:0!important}html .ms-lg-1,html[data-netbox-color-mode=dark] .ms-lg-1,html[data-netbox-color-mode=light] .ms-lg-1{margin-left:.25rem!important}html .ms-lg-2,html[data-netbox-color-mode=dark] .ms-lg-2,html[data-netbox-color-mode=light] .ms-lg-2{margin-left:.5rem!important}html .ms-lg-3,html[data-netbox-color-mode=dark] .ms-lg-3,html[data-netbox-color-mode=light] .ms-lg-3{margin-left:1rem!important}html .ms-lg-4,html[data-netbox-color-mode=dark] .ms-lg-4,html[data-netbox-color-mode=light] .ms-lg-4{margin-left:1.5rem!important}html .ms-lg-5,html[data-netbox-color-mode=dark] .ms-lg-5,html[data-netbox-color-mode=light] .ms-lg-5{margin-left:3rem!important}html .ms-lg-auto,html[data-netbox-color-mode=dark] .ms-lg-auto,html[data-netbox-color-mode=light] .ms-lg-auto{margin-left:auto!important}html .p-lg-0,html[data-netbox-color-mode=dark] .p-lg-0,html[data-netbox-color-mode=light] .p-lg-0{padding:0!important}html .p-lg-1,html[data-netbox-color-mode=dark] .p-lg-1,html[data-netbox-color-mode=light] .p-lg-1{padding:.25rem!important}html .p-lg-2,html[data-netbox-color-mode=dark] .p-lg-2,html[data-netbox-color-mode=light] .p-lg-2{padding:.5rem!important}html .p-lg-3,html[data-netbox-color-mode=dark] .p-lg-3,html[data-netbox-color-mode=light] .p-lg-3{padding:1rem!important}html .p-lg-4,html[data-netbox-color-mode=dark] .p-lg-4,html[data-netbox-color-mode=light] .p-lg-4{padding:1.5rem!important}html .p-lg-5,html[data-netbox-color-mode=dark] .p-lg-5,html[data-netbox-color-mode=light] .p-lg-5{padding:3rem!important}html .px-lg-0,html[data-netbox-color-mode=dark] .px-lg-0,html[data-netbox-color-mode=light] .px-lg-0{padding-right:0!important;padding-left:0!important}html .px-lg-1,html[data-netbox-color-mode=dark] .px-lg-1,html[data-netbox-color-mode=light] .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-lg-2,html[data-netbox-color-mode=dark] .px-lg-2,html[data-netbox-color-mode=light] .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-lg-3,html[data-netbox-color-mode=dark] .px-lg-3,html[data-netbox-color-mode=light] .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}html .px-lg-4,html[data-netbox-color-mode=dark] .px-lg-4,html[data-netbox-color-mode=light] .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-lg-5,html[data-netbox-color-mode=dark] .px-lg-5,html[data-netbox-color-mode=light] .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}html .py-lg-0,html[data-netbox-color-mode=dark] .py-lg-0,html[data-netbox-color-mode=light] .py-lg-0{padding-top:0!important;padding-bottom:0!important}html .py-lg-1,html[data-netbox-color-mode=dark] .py-lg-1,html[data-netbox-color-mode=light] .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-lg-2,html[data-netbox-color-mode=dark] .py-lg-2,html[data-netbox-color-mode=light] .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-lg-3,html[data-netbox-color-mode=dark] .py-lg-3,html[data-netbox-color-mode=light] .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-lg-4,html[data-netbox-color-mode=dark] .py-lg-4,html[data-netbox-color-mode=light] .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-lg-5,html[data-netbox-color-mode=dark] .py-lg-5,html[data-netbox-color-mode=light] .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-lg-0,html[data-netbox-color-mode=dark] .pt-lg-0,html[data-netbox-color-mode=light] .pt-lg-0{padding-top:0!important}html .pt-lg-1,html[data-netbox-color-mode=dark] .pt-lg-1,html[data-netbox-color-mode=light] .pt-lg-1{padding-top:.25rem!important}html .pt-lg-2,html[data-netbox-color-mode=dark] .pt-lg-2,html[data-netbox-color-mode=light] .pt-lg-2{padding-top:.5rem!important}html .pt-lg-3,html[data-netbox-color-mode=dark] .pt-lg-3,html[data-netbox-color-mode=light] .pt-lg-3{padding-top:1rem!important}html .pt-lg-4,html[data-netbox-color-mode=dark] .pt-lg-4,html[data-netbox-color-mode=light] .pt-lg-4{padding-top:1.5rem!important}html .pt-lg-5,html[data-netbox-color-mode=dark] .pt-lg-5,html[data-netbox-color-mode=light] .pt-lg-5{padding-top:3rem!important}html .pe-lg-0,html[data-netbox-color-mode=dark] .pe-lg-0,html[data-netbox-color-mode=light] .pe-lg-0{padding-right:0!important}html .pe-lg-1,html[data-netbox-color-mode=dark] .pe-lg-1,html[data-netbox-color-mode=light] .pe-lg-1{padding-right:.25rem!important}html .pe-lg-2,html[data-netbox-color-mode=dark] .pe-lg-2,html[data-netbox-color-mode=light] .pe-lg-2{padding-right:.5rem!important}html .pe-lg-3,html[data-netbox-color-mode=dark] .pe-lg-3,html[data-netbox-color-mode=light] .pe-lg-3{padding-right:1rem!important}html .pe-lg-4,html[data-netbox-color-mode=dark] .pe-lg-4,html[data-netbox-color-mode=light] .pe-lg-4{padding-right:1.5rem!important}html .pe-lg-5,html[data-netbox-color-mode=dark] .pe-lg-5,html[data-netbox-color-mode=light] .pe-lg-5{padding-right:3rem!important}html .pb-lg-0,html[data-netbox-color-mode=dark] .pb-lg-0,html[data-netbox-color-mode=light] .pb-lg-0{padding-bottom:0!important}html .pb-lg-1,html[data-netbox-color-mode=dark] .pb-lg-1,html[data-netbox-color-mode=light] .pb-lg-1{padding-bottom:.25rem!important}html .pb-lg-2,html[data-netbox-color-mode=dark] .pb-lg-2,html[data-netbox-color-mode=light] .pb-lg-2{padding-bottom:.5rem!important}html .pb-lg-3,html[data-netbox-color-mode=dark] .pb-lg-3,html[data-netbox-color-mode=light] .pb-lg-3{padding-bottom:1rem!important}html .pb-lg-4,html[data-netbox-color-mode=dark] .pb-lg-4,html[data-netbox-color-mode=light] .pb-lg-4{padding-bottom:1.5rem!important}html .pb-lg-5,html[data-netbox-color-mode=dark] .pb-lg-5,html[data-netbox-color-mode=light] .pb-lg-5{padding-bottom:3rem!important}html .ps-lg-0,html[data-netbox-color-mode=dark] .ps-lg-0,html[data-netbox-color-mode=light] .ps-lg-0{padding-left:0!important}html .ps-lg-1,html[data-netbox-color-mode=dark] .ps-lg-1,html[data-netbox-color-mode=light] .ps-lg-1{padding-left:.25rem!important}html .ps-lg-2,html[data-netbox-color-mode=dark] .ps-lg-2,html[data-netbox-color-mode=light] .ps-lg-2{padding-left:.5rem!important}html .ps-lg-3,html[data-netbox-color-mode=dark] .ps-lg-3,html[data-netbox-color-mode=light] .ps-lg-3{padding-left:1rem!important}html .ps-lg-4,html[data-netbox-color-mode=dark] .ps-lg-4,html[data-netbox-color-mode=light] .ps-lg-4{padding-left:1.5rem!important}html .ps-lg-5,html[data-netbox-color-mode=dark] .ps-lg-5,html[data-netbox-color-mode=light] .ps-lg-5{padding-left:3rem!important}html .text-lg-start,html[data-netbox-color-mode=dark] .text-lg-start,html[data-netbox-color-mode=light] .text-lg-start{text-align:left!important}html .text-lg-end,html[data-netbox-color-mode=dark] .text-lg-end,html[data-netbox-color-mode=light] .text-lg-end{text-align:right!important}html .text-lg-center,html[data-netbox-color-mode=dark] .text-lg-center,html[data-netbox-color-mode=light] .text-lg-center{text-align:center!important}}@media print and (min-width: 1200px){html .float-xl-start,html[data-netbox-color-mode=dark] .float-xl-start,html[data-netbox-color-mode=light] .float-xl-start{float:left!important}html .float-xl-end,html[data-netbox-color-mode=dark] .float-xl-end,html[data-netbox-color-mode=light] .float-xl-end{float:right!important}html .float-xl-none,html[data-netbox-color-mode=dark] .float-xl-none,html[data-netbox-color-mode=light] .float-xl-none{float:none!important}html .d-xl-inline,html[data-netbox-color-mode=dark] .d-xl-inline,html[data-netbox-color-mode=light] .d-xl-inline{display:inline!important}html .d-xl-inline-block,html[data-netbox-color-mode=dark] .d-xl-inline-block,html[data-netbox-color-mode=light] .d-xl-inline-block{display:inline-block!important}html .d-xl-block,html[data-netbox-color-mode=dark] .d-xl-block,html[data-netbox-color-mode=light] .d-xl-block{display:block!important}html .d-xl-grid,html[data-netbox-color-mode=dark] .d-xl-grid,html[data-netbox-color-mode=light] .d-xl-grid{display:grid!important}html .d-xl-table,html[data-netbox-color-mode=dark] .d-xl-table,html[data-netbox-color-mode=light] .d-xl-table{display:table!important}html .d-xl-table-row,html[data-netbox-color-mode=dark] .d-xl-table-row,html[data-netbox-color-mode=light] .d-xl-table-row{display:table-row!important}html .d-xl-table-cell,html[data-netbox-color-mode=dark] .d-xl-table-cell,html[data-netbox-color-mode=light] .d-xl-table-cell{display:table-cell!important}html .d-xl-flex,html[data-netbox-color-mode=dark] .d-xl-flex,html[data-netbox-color-mode=light] .d-xl-flex{display:flex!important}html .d-xl-inline-flex,html[data-netbox-color-mode=dark] .d-xl-inline-flex,html[data-netbox-color-mode=light] .d-xl-inline-flex{display:inline-flex!important}html .d-xl-none,html[data-netbox-color-mode=dark] .d-xl-none,html[data-netbox-color-mode=light] .d-xl-none{display:none!important}html .flex-xl-fill,html[data-netbox-color-mode=dark] .flex-xl-fill,html[data-netbox-color-mode=light] .flex-xl-fill{flex:1 1 auto!important}html .flex-xl-row,html[data-netbox-color-mode=dark] .flex-xl-row,html[data-netbox-color-mode=light] .flex-xl-row{flex-direction:row!important}html .flex-xl-column,html[data-netbox-color-mode=dark] .flex-xl-column,html[data-netbox-color-mode=light] .flex-xl-column{flex-direction:column!important}html .flex-xl-row-reverse,html[data-netbox-color-mode=dark] .flex-xl-row-reverse,html[data-netbox-color-mode=light] .flex-xl-row-reverse{flex-direction:row-reverse!important}html .flex-xl-column-reverse,html[data-netbox-color-mode=dark] .flex-xl-column-reverse,html[data-netbox-color-mode=light] .flex-xl-column-reverse{flex-direction:column-reverse!important}html .flex-xl-grow-0,html[data-netbox-color-mode=dark] .flex-xl-grow-0,html[data-netbox-color-mode=light] .flex-xl-grow-0{flex-grow:0!important}html .flex-xl-grow-1,html[data-netbox-color-mode=dark] .flex-xl-grow-1,html[data-netbox-color-mode=light] .flex-xl-grow-1{flex-grow:1!important}html .flex-xl-shrink-0,html[data-netbox-color-mode=dark] .flex-xl-shrink-0,html[data-netbox-color-mode=light] .flex-xl-shrink-0{flex-shrink:0!important}html .flex-xl-shrink-1,html[data-netbox-color-mode=dark] .flex-xl-shrink-1,html[data-netbox-color-mode=light] .flex-xl-shrink-1{flex-shrink:1!important}html .flex-xl-wrap,html[data-netbox-color-mode=dark] .flex-xl-wrap,html[data-netbox-color-mode=light] .flex-xl-wrap{flex-wrap:wrap!important}html .flex-xl-nowrap,html[data-netbox-color-mode=dark] .flex-xl-nowrap,html[data-netbox-color-mode=light] .flex-xl-nowrap{flex-wrap:nowrap!important}html .flex-xl-wrap-reverse,html[data-netbox-color-mode=dark] .flex-xl-wrap-reverse,html[data-netbox-color-mode=light] .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-xl-0,html[data-netbox-color-mode=dark] .gap-xl-0,html[data-netbox-color-mode=light] .gap-xl-0{gap:0!important}html .gap-xl-1,html[data-netbox-color-mode=dark] .gap-xl-1,html[data-netbox-color-mode=light] .gap-xl-1{gap:.25rem!important}html .gap-xl-2,html[data-netbox-color-mode=dark] .gap-xl-2,html[data-netbox-color-mode=light] .gap-xl-2{gap:.5rem!important}html .gap-xl-3,html[data-netbox-color-mode=dark] .gap-xl-3,html[data-netbox-color-mode=light] .gap-xl-3{gap:1rem!important}html .gap-xl-4,html[data-netbox-color-mode=dark] .gap-xl-4,html[data-netbox-color-mode=light] .gap-xl-4{gap:1.5rem!important}html .gap-xl-5,html[data-netbox-color-mode=dark] .gap-xl-5,html[data-netbox-color-mode=light] .gap-xl-5{gap:3rem!important}html .justify-content-xl-start,html[data-netbox-color-mode=dark] .justify-content-xl-start,html[data-netbox-color-mode=light] .justify-content-xl-start{justify-content:flex-start!important}html .justify-content-xl-end,html[data-netbox-color-mode=dark] .justify-content-xl-end,html[data-netbox-color-mode=light] .justify-content-xl-end{justify-content:flex-end!important}html .justify-content-xl-center,html[data-netbox-color-mode=dark] .justify-content-xl-center,html[data-netbox-color-mode=light] .justify-content-xl-center{justify-content:center!important}html .justify-content-xl-between,html[data-netbox-color-mode=dark] .justify-content-xl-between,html[data-netbox-color-mode=light] .justify-content-xl-between{justify-content:space-between!important}html .justify-content-xl-around,html[data-netbox-color-mode=dark] .justify-content-xl-around,html[data-netbox-color-mode=light] .justify-content-xl-around{justify-content:space-around!important}html .justify-content-xl-evenly,html[data-netbox-color-mode=dark] .justify-content-xl-evenly,html[data-netbox-color-mode=light] .justify-content-xl-evenly{justify-content:space-evenly!important}html .align-items-xl-start,html[data-netbox-color-mode=dark] .align-items-xl-start,html[data-netbox-color-mode=light] .align-items-xl-start{align-items:flex-start!important}html .align-items-xl-end,html[data-netbox-color-mode=dark] .align-items-xl-end,html[data-netbox-color-mode=light] .align-items-xl-end{align-items:flex-end!important}html .align-items-xl-center,html[data-netbox-color-mode=dark] .align-items-xl-center,html[data-netbox-color-mode=light] .align-items-xl-center{align-items:center!important}html .align-items-xl-baseline,html[data-netbox-color-mode=dark] .align-items-xl-baseline,html[data-netbox-color-mode=light] .align-items-xl-baseline{align-items:baseline!important}html .align-items-xl-stretch,html[data-netbox-color-mode=dark] .align-items-xl-stretch,html[data-netbox-color-mode=light] .align-items-xl-stretch{align-items:stretch!important}html .align-content-xl-start,html[data-netbox-color-mode=dark] .align-content-xl-start,html[data-netbox-color-mode=light] .align-content-xl-start{align-content:flex-start!important}html .align-content-xl-end,html[data-netbox-color-mode=dark] .align-content-xl-end,html[data-netbox-color-mode=light] .align-content-xl-end{align-content:flex-end!important}html .align-content-xl-center,html[data-netbox-color-mode=dark] .align-content-xl-center,html[data-netbox-color-mode=light] .align-content-xl-center{align-content:center!important}html .align-content-xl-between,html[data-netbox-color-mode=dark] .align-content-xl-between,html[data-netbox-color-mode=light] .align-content-xl-between{align-content:space-between!important}html .align-content-xl-around,html[data-netbox-color-mode=dark] .align-content-xl-around,html[data-netbox-color-mode=light] .align-content-xl-around{align-content:space-around!important}html .align-content-xl-stretch,html[data-netbox-color-mode=dark] .align-content-xl-stretch,html[data-netbox-color-mode=light] .align-content-xl-stretch{align-content:stretch!important}html .align-self-xl-auto,html[data-netbox-color-mode=dark] .align-self-xl-auto,html[data-netbox-color-mode=light] .align-self-xl-auto{align-self:auto!important}html .align-self-xl-start,html[data-netbox-color-mode=dark] .align-self-xl-start,html[data-netbox-color-mode=light] .align-self-xl-start{align-self:flex-start!important}html .align-self-xl-end,html[data-netbox-color-mode=dark] .align-self-xl-end,html[data-netbox-color-mode=light] .align-self-xl-end{align-self:flex-end!important}html .align-self-xl-center,html[data-netbox-color-mode=dark] .align-self-xl-center,html[data-netbox-color-mode=light] .align-self-xl-center{align-self:center!important}html .align-self-xl-baseline,html[data-netbox-color-mode=dark] .align-self-xl-baseline,html[data-netbox-color-mode=light] .align-self-xl-baseline{align-self:baseline!important}html .align-self-xl-stretch,html[data-netbox-color-mode=dark] .align-self-xl-stretch,html[data-netbox-color-mode=light] .align-self-xl-stretch{align-self:stretch!important}html .order-xl-first,html[data-netbox-color-mode=dark] .order-xl-first,html[data-netbox-color-mode=light] .order-xl-first{order:-1!important}html .order-xl-0,html[data-netbox-color-mode=dark] .order-xl-0,html[data-netbox-color-mode=light] .order-xl-0{order:0!important}html .order-xl-1,html[data-netbox-color-mode=dark] .order-xl-1,html[data-netbox-color-mode=light] .order-xl-1{order:1!important}html .order-xl-2,html[data-netbox-color-mode=dark] .order-xl-2,html[data-netbox-color-mode=light] .order-xl-2{order:2!important}html .order-xl-3,html[data-netbox-color-mode=dark] .order-xl-3,html[data-netbox-color-mode=light] .order-xl-3{order:3!important}html .order-xl-4,html[data-netbox-color-mode=dark] .order-xl-4,html[data-netbox-color-mode=light] .order-xl-4{order:4!important}html .order-xl-5,html[data-netbox-color-mode=dark] .order-xl-5,html[data-netbox-color-mode=light] .order-xl-5{order:5!important}html .order-xl-last,html[data-netbox-color-mode=dark] .order-xl-last,html[data-netbox-color-mode=light] .order-xl-last{order:6!important}html .m-xl-0,html[data-netbox-color-mode=dark] .m-xl-0,html[data-netbox-color-mode=light] .m-xl-0{margin:0!important}html .m-xl-1,html[data-netbox-color-mode=dark] .m-xl-1,html[data-netbox-color-mode=light] .m-xl-1{margin:.25rem!important}html .m-xl-2,html[data-netbox-color-mode=dark] .m-xl-2,html[data-netbox-color-mode=light] .m-xl-2{margin:.5rem!important}html .m-xl-3,html[data-netbox-color-mode=dark] .m-xl-3,html[data-netbox-color-mode=light] .m-xl-3{margin:1rem!important}html .m-xl-4,html[data-netbox-color-mode=dark] .m-xl-4,html[data-netbox-color-mode=light] .m-xl-4{margin:1.5rem!important}html .m-xl-5,html[data-netbox-color-mode=dark] .m-xl-5,html[data-netbox-color-mode=light] .m-xl-5{margin:3rem!important}html .m-xl-auto,html[data-netbox-color-mode=dark] .m-xl-auto,html[data-netbox-color-mode=light] .m-xl-auto{margin:auto!important}html .mx-xl-0,html[data-netbox-color-mode=dark] .mx-xl-0,html[data-netbox-color-mode=light] .mx-xl-0{margin-right:0!important;margin-left:0!important}html .mx-xl-1,html[data-netbox-color-mode=dark] .mx-xl-1,html[data-netbox-color-mode=light] .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-xl-2,html[data-netbox-color-mode=dark] .mx-xl-2,html[data-netbox-color-mode=light] .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-xl-3,html[data-netbox-color-mode=dark] .mx-xl-3,html[data-netbox-color-mode=light] .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-xl-4,html[data-netbox-color-mode=dark] .mx-xl-4,html[data-netbox-color-mode=light] .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-xl-5,html[data-netbox-color-mode=dark] .mx-xl-5,html[data-netbox-color-mode=light] .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-xl-auto,html[data-netbox-color-mode=dark] .mx-xl-auto,html[data-netbox-color-mode=light] .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}html .my-xl-0,html[data-netbox-color-mode=dark] .my-xl-0,html[data-netbox-color-mode=light] .my-xl-0{margin-top:0!important;margin-bottom:0!important}html .my-xl-1,html[data-netbox-color-mode=dark] .my-xl-1,html[data-netbox-color-mode=light] .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-xl-2,html[data-netbox-color-mode=dark] .my-xl-2,html[data-netbox-color-mode=light] .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-xl-3,html[data-netbox-color-mode=dark] .my-xl-3,html[data-netbox-color-mode=light] .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-xl-4,html[data-netbox-color-mode=dark] .my-xl-4,html[data-netbox-color-mode=light] .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-xl-5,html[data-netbox-color-mode=dark] .my-xl-5,html[data-netbox-color-mode=light] .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-xl-auto,html[data-netbox-color-mode=dark] .my-xl-auto,html[data-netbox-color-mode=light] .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-xl-0,html[data-netbox-color-mode=dark] .mt-xl-0,html[data-netbox-color-mode=light] .mt-xl-0{margin-top:0!important}html .mt-xl-1,html[data-netbox-color-mode=dark] .mt-xl-1,html[data-netbox-color-mode=light] .mt-xl-1{margin-top:.25rem!important}html .mt-xl-2,html[data-netbox-color-mode=dark] .mt-xl-2,html[data-netbox-color-mode=light] .mt-xl-2{margin-top:.5rem!important}html .mt-xl-3,html[data-netbox-color-mode=dark] .mt-xl-3,html[data-netbox-color-mode=light] .mt-xl-3{margin-top:1rem!important}html .mt-xl-4,html[data-netbox-color-mode=dark] .mt-xl-4,html[data-netbox-color-mode=light] .mt-xl-4{margin-top:1.5rem!important}html .mt-xl-5,html[data-netbox-color-mode=dark] .mt-xl-5,html[data-netbox-color-mode=light] .mt-xl-5{margin-top:3rem!important}html .mt-xl-auto,html[data-netbox-color-mode=dark] .mt-xl-auto,html[data-netbox-color-mode=light] .mt-xl-auto{margin-top:auto!important}html .me-xl-0,html[data-netbox-color-mode=dark] .me-xl-0,html[data-netbox-color-mode=light] .me-xl-0{margin-right:0!important}html .me-xl-1,html[data-netbox-color-mode=dark] .me-xl-1,html[data-netbox-color-mode=light] .me-xl-1{margin-right:.25rem!important}html .me-xl-2,html[data-netbox-color-mode=dark] .me-xl-2,html[data-netbox-color-mode=light] .me-xl-2{margin-right:.5rem!important}html .me-xl-3,html[data-netbox-color-mode=dark] .me-xl-3,html[data-netbox-color-mode=light] .me-xl-3{margin-right:1rem!important}html .me-xl-4,html[data-netbox-color-mode=dark] .me-xl-4,html[data-netbox-color-mode=light] .me-xl-4{margin-right:1.5rem!important}html .me-xl-5,html[data-netbox-color-mode=dark] .me-xl-5,html[data-netbox-color-mode=light] .me-xl-5{margin-right:3rem!important}html .me-xl-auto,html[data-netbox-color-mode=dark] .me-xl-auto,html[data-netbox-color-mode=light] .me-xl-auto{margin-right:auto!important}html .mb-xl-0,html[data-netbox-color-mode=dark] .mb-xl-0,html[data-netbox-color-mode=light] .mb-xl-0{margin-bottom:0!important}html .mb-xl-1,html[data-netbox-color-mode=dark] .mb-xl-1,html[data-netbox-color-mode=light] .mb-xl-1{margin-bottom:.25rem!important}html .mb-xl-2,html[data-netbox-color-mode=dark] .mb-xl-2,html[data-netbox-color-mode=light] .mb-xl-2{margin-bottom:.5rem!important}html .mb-xl-3,html[data-netbox-color-mode=dark] .mb-xl-3,html[data-netbox-color-mode=light] .mb-xl-3{margin-bottom:1rem!important}html .mb-xl-4,html[data-netbox-color-mode=dark] .mb-xl-4,html[data-netbox-color-mode=light] .mb-xl-4{margin-bottom:1.5rem!important}html .mb-xl-5,html[data-netbox-color-mode=dark] .mb-xl-5,html[data-netbox-color-mode=light] .mb-xl-5{margin-bottom:3rem!important}html .mb-xl-auto,html[data-netbox-color-mode=dark] .mb-xl-auto,html[data-netbox-color-mode=light] .mb-xl-auto{margin-bottom:auto!important}html .ms-xl-0,html[data-netbox-color-mode=dark] .ms-xl-0,html[data-netbox-color-mode=light] .ms-xl-0{margin-left:0!important}html .ms-xl-1,html[data-netbox-color-mode=dark] .ms-xl-1,html[data-netbox-color-mode=light] .ms-xl-1{margin-left:.25rem!important}html .ms-xl-2,html[data-netbox-color-mode=dark] .ms-xl-2,html[data-netbox-color-mode=light] .ms-xl-2{margin-left:.5rem!important}html .ms-xl-3,html[data-netbox-color-mode=dark] .ms-xl-3,html[data-netbox-color-mode=light] .ms-xl-3{margin-left:1rem!important}html .ms-xl-4,html[data-netbox-color-mode=dark] .ms-xl-4,html[data-netbox-color-mode=light] .ms-xl-4{margin-left:1.5rem!important}html .ms-xl-5,html[data-netbox-color-mode=dark] .ms-xl-5,html[data-netbox-color-mode=light] .ms-xl-5{margin-left:3rem!important}html .ms-xl-auto,html[data-netbox-color-mode=dark] .ms-xl-auto,html[data-netbox-color-mode=light] .ms-xl-auto{margin-left:auto!important}html .p-xl-0,html[data-netbox-color-mode=dark] .p-xl-0,html[data-netbox-color-mode=light] .p-xl-0{padding:0!important}html .p-xl-1,html[data-netbox-color-mode=dark] .p-xl-1,html[data-netbox-color-mode=light] .p-xl-1{padding:.25rem!important}html .p-xl-2,html[data-netbox-color-mode=dark] .p-xl-2,html[data-netbox-color-mode=light] .p-xl-2{padding:.5rem!important}html .p-xl-3,html[data-netbox-color-mode=dark] .p-xl-3,html[data-netbox-color-mode=light] .p-xl-3{padding:1rem!important}html .p-xl-4,html[data-netbox-color-mode=dark] .p-xl-4,html[data-netbox-color-mode=light] .p-xl-4{padding:1.5rem!important}html .p-xl-5,html[data-netbox-color-mode=dark] .p-xl-5,html[data-netbox-color-mode=light] .p-xl-5{padding:3rem!important}html .px-xl-0,html[data-netbox-color-mode=dark] .px-xl-0,html[data-netbox-color-mode=light] .px-xl-0{padding-right:0!important;padding-left:0!important}html .px-xl-1,html[data-netbox-color-mode=dark] .px-xl-1,html[data-netbox-color-mode=light] .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-xl-2,html[data-netbox-color-mode=dark] .px-xl-2,html[data-netbox-color-mode=light] .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-xl-3,html[data-netbox-color-mode=dark] .px-xl-3,html[data-netbox-color-mode=light] .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}html .px-xl-4,html[data-netbox-color-mode=dark] .px-xl-4,html[data-netbox-color-mode=light] .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-xl-5,html[data-netbox-color-mode=dark] .px-xl-5,html[data-netbox-color-mode=light] .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}html .py-xl-0,html[data-netbox-color-mode=dark] .py-xl-0,html[data-netbox-color-mode=light] .py-xl-0{padding-top:0!important;padding-bottom:0!important}html .py-xl-1,html[data-netbox-color-mode=dark] .py-xl-1,html[data-netbox-color-mode=light] .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-xl-2,html[data-netbox-color-mode=dark] .py-xl-2,html[data-netbox-color-mode=light] .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-xl-3,html[data-netbox-color-mode=dark] .py-xl-3,html[data-netbox-color-mode=light] .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-xl-4,html[data-netbox-color-mode=dark] .py-xl-4,html[data-netbox-color-mode=light] .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-xl-5,html[data-netbox-color-mode=dark] .py-xl-5,html[data-netbox-color-mode=light] .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-xl-0,html[data-netbox-color-mode=dark] .pt-xl-0,html[data-netbox-color-mode=light] .pt-xl-0{padding-top:0!important}html .pt-xl-1,html[data-netbox-color-mode=dark] .pt-xl-1,html[data-netbox-color-mode=light] .pt-xl-1{padding-top:.25rem!important}html .pt-xl-2,html[data-netbox-color-mode=dark] .pt-xl-2,html[data-netbox-color-mode=light] .pt-xl-2{padding-top:.5rem!important}html .pt-xl-3,html[data-netbox-color-mode=dark] .pt-xl-3,html[data-netbox-color-mode=light] .pt-xl-3{padding-top:1rem!important}html .pt-xl-4,html[data-netbox-color-mode=dark] .pt-xl-4,html[data-netbox-color-mode=light] .pt-xl-4{padding-top:1.5rem!important}html .pt-xl-5,html[data-netbox-color-mode=dark] .pt-xl-5,html[data-netbox-color-mode=light] .pt-xl-5{padding-top:3rem!important}html .pe-xl-0,html[data-netbox-color-mode=dark] .pe-xl-0,html[data-netbox-color-mode=light] .pe-xl-0{padding-right:0!important}html .pe-xl-1,html[data-netbox-color-mode=dark] .pe-xl-1,html[data-netbox-color-mode=light] .pe-xl-1{padding-right:.25rem!important}html .pe-xl-2,html[data-netbox-color-mode=dark] .pe-xl-2,html[data-netbox-color-mode=light] .pe-xl-2{padding-right:.5rem!important}html .pe-xl-3,html[data-netbox-color-mode=dark] .pe-xl-3,html[data-netbox-color-mode=light] .pe-xl-3{padding-right:1rem!important}html .pe-xl-4,html[data-netbox-color-mode=dark] .pe-xl-4,html[data-netbox-color-mode=light] .pe-xl-4{padding-right:1.5rem!important}html .pe-xl-5,html[data-netbox-color-mode=dark] .pe-xl-5,html[data-netbox-color-mode=light] .pe-xl-5{padding-right:3rem!important}html .pb-xl-0,html[data-netbox-color-mode=dark] .pb-xl-0,html[data-netbox-color-mode=light] .pb-xl-0{padding-bottom:0!important}html .pb-xl-1,html[data-netbox-color-mode=dark] .pb-xl-1,html[data-netbox-color-mode=light] .pb-xl-1{padding-bottom:.25rem!important}html .pb-xl-2,html[data-netbox-color-mode=dark] .pb-xl-2,html[data-netbox-color-mode=light] .pb-xl-2{padding-bottom:.5rem!important}html .pb-xl-3,html[data-netbox-color-mode=dark] .pb-xl-3,html[data-netbox-color-mode=light] .pb-xl-3{padding-bottom:1rem!important}html .pb-xl-4,html[data-netbox-color-mode=dark] .pb-xl-4,html[data-netbox-color-mode=light] .pb-xl-4{padding-bottom:1.5rem!important}html .pb-xl-5,html[data-netbox-color-mode=dark] .pb-xl-5,html[data-netbox-color-mode=light] .pb-xl-5{padding-bottom:3rem!important}html .ps-xl-0,html[data-netbox-color-mode=dark] .ps-xl-0,html[data-netbox-color-mode=light] .ps-xl-0{padding-left:0!important}html .ps-xl-1,html[data-netbox-color-mode=dark] .ps-xl-1,html[data-netbox-color-mode=light] .ps-xl-1{padding-left:.25rem!important}html .ps-xl-2,html[data-netbox-color-mode=dark] .ps-xl-2,html[data-netbox-color-mode=light] .ps-xl-2{padding-left:.5rem!important}html .ps-xl-3,html[data-netbox-color-mode=dark] .ps-xl-3,html[data-netbox-color-mode=light] .ps-xl-3{padding-left:1rem!important}html .ps-xl-4,html[data-netbox-color-mode=dark] .ps-xl-4,html[data-netbox-color-mode=light] .ps-xl-4{padding-left:1.5rem!important}html .ps-xl-5,html[data-netbox-color-mode=dark] .ps-xl-5,html[data-netbox-color-mode=light] .ps-xl-5{padding-left:3rem!important}html .text-xl-start,html[data-netbox-color-mode=dark] .text-xl-start,html[data-netbox-color-mode=light] .text-xl-start{text-align:left!important}html .text-xl-end,html[data-netbox-color-mode=dark] .text-xl-end,html[data-netbox-color-mode=light] .text-xl-end{text-align:right!important}html .text-xl-center,html[data-netbox-color-mode=dark] .text-xl-center,html[data-netbox-color-mode=light] .text-xl-center{text-align:center!important}}@media print and (min-width: 1400px){html .float-xxl-start,html[data-netbox-color-mode=dark] .float-xxl-start,html[data-netbox-color-mode=light] .float-xxl-start{float:left!important}html .float-xxl-end,html[data-netbox-color-mode=dark] .float-xxl-end,html[data-netbox-color-mode=light] .float-xxl-end{float:right!important}html .float-xxl-none,html[data-netbox-color-mode=dark] .float-xxl-none,html[data-netbox-color-mode=light] .float-xxl-none{float:none!important}html .d-xxl-inline,html[data-netbox-color-mode=dark] .d-xxl-inline,html[data-netbox-color-mode=light] .d-xxl-inline{display:inline!important}html .d-xxl-inline-block,html[data-netbox-color-mode=dark] .d-xxl-inline-block,html[data-netbox-color-mode=light] .d-xxl-inline-block{display:inline-block!important}html .d-xxl-block,html[data-netbox-color-mode=dark] .d-xxl-block,html[data-netbox-color-mode=light] .d-xxl-block{display:block!important}html .d-xxl-grid,html[data-netbox-color-mode=dark] .d-xxl-grid,html[data-netbox-color-mode=light] .d-xxl-grid{display:grid!important}html .d-xxl-table,html[data-netbox-color-mode=dark] .d-xxl-table,html[data-netbox-color-mode=light] .d-xxl-table{display:table!important}html .d-xxl-table-row,html[data-netbox-color-mode=dark] .d-xxl-table-row,html[data-netbox-color-mode=light] .d-xxl-table-row{display:table-row!important}html .d-xxl-table-cell,html[data-netbox-color-mode=dark] .d-xxl-table-cell,html[data-netbox-color-mode=light] .d-xxl-table-cell{display:table-cell!important}html .d-xxl-flex,html[data-netbox-color-mode=dark] .d-xxl-flex,html[data-netbox-color-mode=light] .d-xxl-flex{display:flex!important}html .d-xxl-inline-flex,html[data-netbox-color-mode=dark] .d-xxl-inline-flex,html[data-netbox-color-mode=light] .d-xxl-inline-flex{display:inline-flex!important}html .d-xxl-none,html[data-netbox-color-mode=dark] .d-xxl-none,html[data-netbox-color-mode=light] .d-xxl-none{display:none!important}html .flex-xxl-fill,html[data-netbox-color-mode=dark] .flex-xxl-fill,html[data-netbox-color-mode=light] .flex-xxl-fill{flex:1 1 auto!important}html .flex-xxl-row,html[data-netbox-color-mode=dark] .flex-xxl-row,html[data-netbox-color-mode=light] .flex-xxl-row{flex-direction:row!important}html .flex-xxl-column,html[data-netbox-color-mode=dark] .flex-xxl-column,html[data-netbox-color-mode=light] .flex-xxl-column{flex-direction:column!important}html .flex-xxl-row-reverse,html[data-netbox-color-mode=dark] .flex-xxl-row-reverse,html[data-netbox-color-mode=light] .flex-xxl-row-reverse{flex-direction:row-reverse!important}html .flex-xxl-column-reverse,html[data-netbox-color-mode=dark] .flex-xxl-column-reverse,html[data-netbox-color-mode=light] .flex-xxl-column-reverse{flex-direction:column-reverse!important}html .flex-xxl-grow-0,html[data-netbox-color-mode=dark] .flex-xxl-grow-0,html[data-netbox-color-mode=light] .flex-xxl-grow-0{flex-grow:0!important}html .flex-xxl-grow-1,html[data-netbox-color-mode=dark] .flex-xxl-grow-1,html[data-netbox-color-mode=light] .flex-xxl-grow-1{flex-grow:1!important}html .flex-xxl-shrink-0,html[data-netbox-color-mode=dark] .flex-xxl-shrink-0,html[data-netbox-color-mode=light] .flex-xxl-shrink-0{flex-shrink:0!important}html .flex-xxl-shrink-1,html[data-netbox-color-mode=dark] .flex-xxl-shrink-1,html[data-netbox-color-mode=light] .flex-xxl-shrink-1{flex-shrink:1!important}html .flex-xxl-wrap,html[data-netbox-color-mode=dark] .flex-xxl-wrap,html[data-netbox-color-mode=light] .flex-xxl-wrap{flex-wrap:wrap!important}html .flex-xxl-nowrap,html[data-netbox-color-mode=dark] .flex-xxl-nowrap,html[data-netbox-color-mode=light] .flex-xxl-nowrap{flex-wrap:nowrap!important}html .flex-xxl-wrap-reverse,html[data-netbox-color-mode=dark] .flex-xxl-wrap-reverse,html[data-netbox-color-mode=light] .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}html .gap-xxl-0,html[data-netbox-color-mode=dark] .gap-xxl-0,html[data-netbox-color-mode=light] .gap-xxl-0{gap:0!important}html .gap-xxl-1,html[data-netbox-color-mode=dark] .gap-xxl-1,html[data-netbox-color-mode=light] .gap-xxl-1{gap:.25rem!important}html .gap-xxl-2,html[data-netbox-color-mode=dark] .gap-xxl-2,html[data-netbox-color-mode=light] .gap-xxl-2{gap:.5rem!important}html .gap-xxl-3,html[data-netbox-color-mode=dark] .gap-xxl-3,html[data-netbox-color-mode=light] .gap-xxl-3{gap:1rem!important}html .gap-xxl-4,html[data-netbox-color-mode=dark] .gap-xxl-4,html[data-netbox-color-mode=light] .gap-xxl-4{gap:1.5rem!important}html .gap-xxl-5,html[data-netbox-color-mode=dark] .gap-xxl-5,html[data-netbox-color-mode=light] .gap-xxl-5{gap:3rem!important}html .justify-content-xxl-start,html[data-netbox-color-mode=dark] .justify-content-xxl-start,html[data-netbox-color-mode=light] .justify-content-xxl-start{justify-content:flex-start!important}html .justify-content-xxl-end,html[data-netbox-color-mode=dark] .justify-content-xxl-end,html[data-netbox-color-mode=light] .justify-content-xxl-end{justify-content:flex-end!important}html .justify-content-xxl-center,html[data-netbox-color-mode=dark] .justify-content-xxl-center,html[data-netbox-color-mode=light] .justify-content-xxl-center{justify-content:center!important}html .justify-content-xxl-between,html[data-netbox-color-mode=dark] .justify-content-xxl-between,html[data-netbox-color-mode=light] .justify-content-xxl-between{justify-content:space-between!important}html .justify-content-xxl-around,html[data-netbox-color-mode=dark] .justify-content-xxl-around,html[data-netbox-color-mode=light] .justify-content-xxl-around{justify-content:space-around!important}html .justify-content-xxl-evenly,html[data-netbox-color-mode=dark] .justify-content-xxl-evenly,html[data-netbox-color-mode=light] .justify-content-xxl-evenly{justify-content:space-evenly!important}html .align-items-xxl-start,html[data-netbox-color-mode=dark] .align-items-xxl-start,html[data-netbox-color-mode=light] .align-items-xxl-start{align-items:flex-start!important}html .align-items-xxl-end,html[data-netbox-color-mode=dark] .align-items-xxl-end,html[data-netbox-color-mode=light] .align-items-xxl-end{align-items:flex-end!important}html .align-items-xxl-center,html[data-netbox-color-mode=dark] .align-items-xxl-center,html[data-netbox-color-mode=light] .align-items-xxl-center{align-items:center!important}html .align-items-xxl-baseline,html[data-netbox-color-mode=dark] .align-items-xxl-baseline,html[data-netbox-color-mode=light] .align-items-xxl-baseline{align-items:baseline!important}html .align-items-xxl-stretch,html[data-netbox-color-mode=dark] .align-items-xxl-stretch,html[data-netbox-color-mode=light] .align-items-xxl-stretch{align-items:stretch!important}html .align-content-xxl-start,html[data-netbox-color-mode=dark] .align-content-xxl-start,html[data-netbox-color-mode=light] .align-content-xxl-start{align-content:flex-start!important}html .align-content-xxl-end,html[data-netbox-color-mode=dark] .align-content-xxl-end,html[data-netbox-color-mode=light] .align-content-xxl-end{align-content:flex-end!important}html .align-content-xxl-center,html[data-netbox-color-mode=dark] .align-content-xxl-center,html[data-netbox-color-mode=light] .align-content-xxl-center{align-content:center!important}html .align-content-xxl-between,html[data-netbox-color-mode=dark] .align-content-xxl-between,html[data-netbox-color-mode=light] .align-content-xxl-between{align-content:space-between!important}html .align-content-xxl-around,html[data-netbox-color-mode=dark] .align-content-xxl-around,html[data-netbox-color-mode=light] .align-content-xxl-around{align-content:space-around!important}html .align-content-xxl-stretch,html[data-netbox-color-mode=dark] .align-content-xxl-stretch,html[data-netbox-color-mode=light] .align-content-xxl-stretch{align-content:stretch!important}html .align-self-xxl-auto,html[data-netbox-color-mode=dark] .align-self-xxl-auto,html[data-netbox-color-mode=light] .align-self-xxl-auto{align-self:auto!important}html .align-self-xxl-start,html[data-netbox-color-mode=dark] .align-self-xxl-start,html[data-netbox-color-mode=light] .align-self-xxl-start{align-self:flex-start!important}html .align-self-xxl-end,html[data-netbox-color-mode=dark] .align-self-xxl-end,html[data-netbox-color-mode=light] .align-self-xxl-end{align-self:flex-end!important}html .align-self-xxl-center,html[data-netbox-color-mode=dark] .align-self-xxl-center,html[data-netbox-color-mode=light] .align-self-xxl-center{align-self:center!important}html .align-self-xxl-baseline,html[data-netbox-color-mode=dark] .align-self-xxl-baseline,html[data-netbox-color-mode=light] .align-self-xxl-baseline{align-self:baseline!important}html .align-self-xxl-stretch,html[data-netbox-color-mode=dark] .align-self-xxl-stretch,html[data-netbox-color-mode=light] .align-self-xxl-stretch{align-self:stretch!important}html .order-xxl-first,html[data-netbox-color-mode=dark] .order-xxl-first,html[data-netbox-color-mode=light] .order-xxl-first{order:-1!important}html .order-xxl-0,html[data-netbox-color-mode=dark] .order-xxl-0,html[data-netbox-color-mode=light] .order-xxl-0{order:0!important}html .order-xxl-1,html[data-netbox-color-mode=dark] .order-xxl-1,html[data-netbox-color-mode=light] .order-xxl-1{order:1!important}html .order-xxl-2,html[data-netbox-color-mode=dark] .order-xxl-2,html[data-netbox-color-mode=light] .order-xxl-2{order:2!important}html .order-xxl-3,html[data-netbox-color-mode=dark] .order-xxl-3,html[data-netbox-color-mode=light] .order-xxl-3{order:3!important}html .order-xxl-4,html[data-netbox-color-mode=dark] .order-xxl-4,html[data-netbox-color-mode=light] .order-xxl-4{order:4!important}html .order-xxl-5,html[data-netbox-color-mode=dark] .order-xxl-5,html[data-netbox-color-mode=light] .order-xxl-5{order:5!important}html .order-xxl-last,html[data-netbox-color-mode=dark] .order-xxl-last,html[data-netbox-color-mode=light] .order-xxl-last{order:6!important}html .m-xxl-0,html[data-netbox-color-mode=dark] .m-xxl-0,html[data-netbox-color-mode=light] .m-xxl-0{margin:0!important}html .m-xxl-1,html[data-netbox-color-mode=dark] .m-xxl-1,html[data-netbox-color-mode=light] .m-xxl-1{margin:.25rem!important}html .m-xxl-2,html[data-netbox-color-mode=dark] .m-xxl-2,html[data-netbox-color-mode=light] .m-xxl-2{margin:.5rem!important}html .m-xxl-3,html[data-netbox-color-mode=dark] .m-xxl-3,html[data-netbox-color-mode=light] .m-xxl-3{margin:1rem!important}html .m-xxl-4,html[data-netbox-color-mode=dark] .m-xxl-4,html[data-netbox-color-mode=light] .m-xxl-4{margin:1.5rem!important}html .m-xxl-5,html[data-netbox-color-mode=dark] .m-xxl-5,html[data-netbox-color-mode=light] .m-xxl-5{margin:3rem!important}html .m-xxl-auto,html[data-netbox-color-mode=dark] .m-xxl-auto,html[data-netbox-color-mode=light] .m-xxl-auto{margin:auto!important}html .mx-xxl-0,html[data-netbox-color-mode=dark] .mx-xxl-0,html[data-netbox-color-mode=light] .mx-xxl-0{margin-right:0!important;margin-left:0!important}html .mx-xxl-1,html[data-netbox-color-mode=dark] .mx-xxl-1,html[data-netbox-color-mode=light] .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}html .mx-xxl-2,html[data-netbox-color-mode=dark] .mx-xxl-2,html[data-netbox-color-mode=light] .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}html .mx-xxl-3,html[data-netbox-color-mode=dark] .mx-xxl-3,html[data-netbox-color-mode=light] .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}html .mx-xxl-4,html[data-netbox-color-mode=dark] .mx-xxl-4,html[data-netbox-color-mode=light] .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}html .mx-xxl-5,html[data-netbox-color-mode=dark] .mx-xxl-5,html[data-netbox-color-mode=light] .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}html .mx-xxl-auto,html[data-netbox-color-mode=dark] .mx-xxl-auto,html[data-netbox-color-mode=light] .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}html .my-xxl-0,html[data-netbox-color-mode=dark] .my-xxl-0,html[data-netbox-color-mode=light] .my-xxl-0{margin-top:0!important;margin-bottom:0!important}html .my-xxl-1,html[data-netbox-color-mode=dark] .my-xxl-1,html[data-netbox-color-mode=light] .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}html .my-xxl-2,html[data-netbox-color-mode=dark] .my-xxl-2,html[data-netbox-color-mode=light] .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}html .my-xxl-3,html[data-netbox-color-mode=dark] .my-xxl-3,html[data-netbox-color-mode=light] .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}html .my-xxl-4,html[data-netbox-color-mode=dark] .my-xxl-4,html[data-netbox-color-mode=light] .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}html .my-xxl-5,html[data-netbox-color-mode=dark] .my-xxl-5,html[data-netbox-color-mode=light] .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}html .my-xxl-auto,html[data-netbox-color-mode=dark] .my-xxl-auto,html[data-netbox-color-mode=light] .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}html .mt-xxl-0,html[data-netbox-color-mode=dark] .mt-xxl-0,html[data-netbox-color-mode=light] .mt-xxl-0{margin-top:0!important}html .mt-xxl-1,html[data-netbox-color-mode=dark] .mt-xxl-1,html[data-netbox-color-mode=light] .mt-xxl-1{margin-top:.25rem!important}html .mt-xxl-2,html[data-netbox-color-mode=dark] .mt-xxl-2,html[data-netbox-color-mode=light] .mt-xxl-2{margin-top:.5rem!important}html .mt-xxl-3,html[data-netbox-color-mode=dark] .mt-xxl-3,html[data-netbox-color-mode=light] .mt-xxl-3{margin-top:1rem!important}html .mt-xxl-4,html[data-netbox-color-mode=dark] .mt-xxl-4,html[data-netbox-color-mode=light] .mt-xxl-4{margin-top:1.5rem!important}html .mt-xxl-5,html[data-netbox-color-mode=dark] .mt-xxl-5,html[data-netbox-color-mode=light] .mt-xxl-5{margin-top:3rem!important}html .mt-xxl-auto,html[data-netbox-color-mode=dark] .mt-xxl-auto,html[data-netbox-color-mode=light] .mt-xxl-auto{margin-top:auto!important}html .me-xxl-0,html[data-netbox-color-mode=dark] .me-xxl-0,html[data-netbox-color-mode=light] .me-xxl-0{margin-right:0!important}html .me-xxl-1,html[data-netbox-color-mode=dark] .me-xxl-1,html[data-netbox-color-mode=light] .me-xxl-1{margin-right:.25rem!important}html .me-xxl-2,html[data-netbox-color-mode=dark] .me-xxl-2,html[data-netbox-color-mode=light] .me-xxl-2{margin-right:.5rem!important}html .me-xxl-3,html[data-netbox-color-mode=dark] .me-xxl-3,html[data-netbox-color-mode=light] .me-xxl-3{margin-right:1rem!important}html .me-xxl-4,html[data-netbox-color-mode=dark] .me-xxl-4,html[data-netbox-color-mode=light] .me-xxl-4{margin-right:1.5rem!important}html .me-xxl-5,html[data-netbox-color-mode=dark] .me-xxl-5,html[data-netbox-color-mode=light] .me-xxl-5{margin-right:3rem!important}html .me-xxl-auto,html[data-netbox-color-mode=dark] .me-xxl-auto,html[data-netbox-color-mode=light] .me-xxl-auto{margin-right:auto!important}html .mb-xxl-0,html[data-netbox-color-mode=dark] .mb-xxl-0,html[data-netbox-color-mode=light] .mb-xxl-0{margin-bottom:0!important}html .mb-xxl-1,html[data-netbox-color-mode=dark] .mb-xxl-1,html[data-netbox-color-mode=light] .mb-xxl-1{margin-bottom:.25rem!important}html .mb-xxl-2,html[data-netbox-color-mode=dark] .mb-xxl-2,html[data-netbox-color-mode=light] .mb-xxl-2{margin-bottom:.5rem!important}html .mb-xxl-3,html[data-netbox-color-mode=dark] .mb-xxl-3,html[data-netbox-color-mode=light] .mb-xxl-3{margin-bottom:1rem!important}html .mb-xxl-4,html[data-netbox-color-mode=dark] .mb-xxl-4,html[data-netbox-color-mode=light] .mb-xxl-4{margin-bottom:1.5rem!important}html .mb-xxl-5,html[data-netbox-color-mode=dark] .mb-xxl-5,html[data-netbox-color-mode=light] .mb-xxl-5{margin-bottom:3rem!important}html .mb-xxl-auto,html[data-netbox-color-mode=dark] .mb-xxl-auto,html[data-netbox-color-mode=light] .mb-xxl-auto{margin-bottom:auto!important}html .ms-xxl-0,html[data-netbox-color-mode=dark] .ms-xxl-0,html[data-netbox-color-mode=light] .ms-xxl-0{margin-left:0!important}html .ms-xxl-1,html[data-netbox-color-mode=dark] .ms-xxl-1,html[data-netbox-color-mode=light] .ms-xxl-1{margin-left:.25rem!important}html .ms-xxl-2,html[data-netbox-color-mode=dark] .ms-xxl-2,html[data-netbox-color-mode=light] .ms-xxl-2{margin-left:.5rem!important}html .ms-xxl-3,html[data-netbox-color-mode=dark] .ms-xxl-3,html[data-netbox-color-mode=light] .ms-xxl-3{margin-left:1rem!important}html .ms-xxl-4,html[data-netbox-color-mode=dark] .ms-xxl-4,html[data-netbox-color-mode=light] .ms-xxl-4{margin-left:1.5rem!important}html .ms-xxl-5,html[data-netbox-color-mode=dark] .ms-xxl-5,html[data-netbox-color-mode=light] .ms-xxl-5{margin-left:3rem!important}html .ms-xxl-auto,html[data-netbox-color-mode=dark] .ms-xxl-auto,html[data-netbox-color-mode=light] .ms-xxl-auto{margin-left:auto!important}html .p-xxl-0,html[data-netbox-color-mode=dark] .p-xxl-0,html[data-netbox-color-mode=light] .p-xxl-0{padding:0!important}html .p-xxl-1,html[data-netbox-color-mode=dark] .p-xxl-1,html[data-netbox-color-mode=light] .p-xxl-1{padding:.25rem!important}html .p-xxl-2,html[data-netbox-color-mode=dark] .p-xxl-2,html[data-netbox-color-mode=light] .p-xxl-2{padding:.5rem!important}html .p-xxl-3,html[data-netbox-color-mode=dark] .p-xxl-3,html[data-netbox-color-mode=light] .p-xxl-3{padding:1rem!important}html .p-xxl-4,html[data-netbox-color-mode=dark] .p-xxl-4,html[data-netbox-color-mode=light] .p-xxl-4{padding:1.5rem!important}html .p-xxl-5,html[data-netbox-color-mode=dark] .p-xxl-5,html[data-netbox-color-mode=light] .p-xxl-5{padding:3rem!important}html .px-xxl-0,html[data-netbox-color-mode=dark] .px-xxl-0,html[data-netbox-color-mode=light] .px-xxl-0{padding-right:0!important;padding-left:0!important}html .px-xxl-1,html[data-netbox-color-mode=dark] .px-xxl-1,html[data-netbox-color-mode=light] .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}html .px-xxl-2,html[data-netbox-color-mode=dark] .px-xxl-2,html[data-netbox-color-mode=light] .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}html .px-xxl-3,html[data-netbox-color-mode=dark] .px-xxl-3,html[data-netbox-color-mode=light] .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}html .px-xxl-4,html[data-netbox-color-mode=dark] .px-xxl-4,html[data-netbox-color-mode=light] .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}html .px-xxl-5,html[data-netbox-color-mode=dark] .px-xxl-5,html[data-netbox-color-mode=light] .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}html .py-xxl-0,html[data-netbox-color-mode=dark] .py-xxl-0,html[data-netbox-color-mode=light] .py-xxl-0{padding-top:0!important;padding-bottom:0!important}html .py-xxl-1,html[data-netbox-color-mode=dark] .py-xxl-1,html[data-netbox-color-mode=light] .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}html .py-xxl-2,html[data-netbox-color-mode=dark] .py-xxl-2,html[data-netbox-color-mode=light] .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}html .py-xxl-3,html[data-netbox-color-mode=dark] .py-xxl-3,html[data-netbox-color-mode=light] .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}html .py-xxl-4,html[data-netbox-color-mode=dark] .py-xxl-4,html[data-netbox-color-mode=light] .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}html .py-xxl-5,html[data-netbox-color-mode=dark] .py-xxl-5,html[data-netbox-color-mode=light] .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}html .pt-xxl-0,html[data-netbox-color-mode=dark] .pt-xxl-0,html[data-netbox-color-mode=light] .pt-xxl-0{padding-top:0!important}html .pt-xxl-1,html[data-netbox-color-mode=dark] .pt-xxl-1,html[data-netbox-color-mode=light] .pt-xxl-1{padding-top:.25rem!important}html .pt-xxl-2,html[data-netbox-color-mode=dark] .pt-xxl-2,html[data-netbox-color-mode=light] .pt-xxl-2{padding-top:.5rem!important}html .pt-xxl-3,html[data-netbox-color-mode=dark] .pt-xxl-3,html[data-netbox-color-mode=light] .pt-xxl-3{padding-top:1rem!important}html .pt-xxl-4,html[data-netbox-color-mode=dark] .pt-xxl-4,html[data-netbox-color-mode=light] .pt-xxl-4{padding-top:1.5rem!important}html .pt-xxl-5,html[data-netbox-color-mode=dark] .pt-xxl-5,html[data-netbox-color-mode=light] .pt-xxl-5{padding-top:3rem!important}html .pe-xxl-0,html[data-netbox-color-mode=dark] .pe-xxl-0,html[data-netbox-color-mode=light] .pe-xxl-0{padding-right:0!important}html .pe-xxl-1,html[data-netbox-color-mode=dark] .pe-xxl-1,html[data-netbox-color-mode=light] .pe-xxl-1{padding-right:.25rem!important}html .pe-xxl-2,html[data-netbox-color-mode=dark] .pe-xxl-2,html[data-netbox-color-mode=light] .pe-xxl-2{padding-right:.5rem!important}html .pe-xxl-3,html[data-netbox-color-mode=dark] .pe-xxl-3,html[data-netbox-color-mode=light] .pe-xxl-3{padding-right:1rem!important}html .pe-xxl-4,html[data-netbox-color-mode=dark] .pe-xxl-4,html[data-netbox-color-mode=light] .pe-xxl-4{padding-right:1.5rem!important}html .pe-xxl-5,html[data-netbox-color-mode=dark] .pe-xxl-5,html[data-netbox-color-mode=light] .pe-xxl-5{padding-right:3rem!important}html .pb-xxl-0,html[data-netbox-color-mode=dark] .pb-xxl-0,html[data-netbox-color-mode=light] .pb-xxl-0{padding-bottom:0!important}html .pb-xxl-1,html[data-netbox-color-mode=dark] .pb-xxl-1,html[data-netbox-color-mode=light] .pb-xxl-1{padding-bottom:.25rem!important}html .pb-xxl-2,html[data-netbox-color-mode=dark] .pb-xxl-2,html[data-netbox-color-mode=light] .pb-xxl-2{padding-bottom:.5rem!important}html .pb-xxl-3,html[data-netbox-color-mode=dark] .pb-xxl-3,html[data-netbox-color-mode=light] .pb-xxl-3{padding-bottom:1rem!important}html .pb-xxl-4,html[data-netbox-color-mode=dark] .pb-xxl-4,html[data-netbox-color-mode=light] .pb-xxl-4{padding-bottom:1.5rem!important}html .pb-xxl-5,html[data-netbox-color-mode=dark] .pb-xxl-5,html[data-netbox-color-mode=light] .pb-xxl-5{padding-bottom:3rem!important}html .ps-xxl-0,html[data-netbox-color-mode=dark] .ps-xxl-0,html[data-netbox-color-mode=light] .ps-xxl-0{padding-left:0!important}html .ps-xxl-1,html[data-netbox-color-mode=dark] .ps-xxl-1,html[data-netbox-color-mode=light] .ps-xxl-1{padding-left:.25rem!important}html .ps-xxl-2,html[data-netbox-color-mode=dark] .ps-xxl-2,html[data-netbox-color-mode=light] .ps-xxl-2{padding-left:.5rem!important}html .ps-xxl-3,html[data-netbox-color-mode=dark] .ps-xxl-3,html[data-netbox-color-mode=light] .ps-xxl-3{padding-left:1rem!important}html .ps-xxl-4,html[data-netbox-color-mode=dark] .ps-xxl-4,html[data-netbox-color-mode=light] .ps-xxl-4{padding-left:1.5rem!important}html .ps-xxl-5,html[data-netbox-color-mode=dark] .ps-xxl-5,html[data-netbox-color-mode=light] .ps-xxl-5{padding-left:3rem!important}html .text-xxl-start,html[data-netbox-color-mode=dark] .text-xxl-start,html[data-netbox-color-mode=light] .text-xxl-start{text-align:left!important}html .text-xxl-end,html[data-netbox-color-mode=dark] .text-xxl-end,html[data-netbox-color-mode=light] .text-xxl-end{text-align:right!important}html .text-xxl-center,html[data-netbox-color-mode=dark] .text-xxl-center,html[data-netbox-color-mode=light] .text-xxl-center{text-align:center!important}}@media print and (min-width: 1200px){html .fs-1,html[data-netbox-color-mode=dark] .fs-1,html[data-netbox-color-mode=light] .fs-1{font-size:2.5rem!important}html .fs-2,html[data-netbox-color-mode=dark] .fs-2,html[data-netbox-color-mode=light] .fs-2{font-size:2rem!important}html .fs-3,html[data-netbox-color-mode=dark] .fs-3,html[data-netbox-color-mode=light] .fs-3{font-size:1.75rem!important}html .fs-4,html[data-netbox-color-mode=dark] .fs-4,html[data-netbox-color-mode=light] .fs-4{font-size:1.5rem!important}}@media print{html .d-print-inline,html[data-netbox-color-mode=dark] .d-print-inline,html[data-netbox-color-mode=light] .d-print-inline{display:inline!important}html .d-print-inline-block,html[data-netbox-color-mode=dark] .d-print-inline-block,html[data-netbox-color-mode=light] .d-print-inline-block{display:inline-block!important}html .d-print-block,html[data-netbox-color-mode=dark] .d-print-block,html[data-netbox-color-mode=light] .d-print-block{display:block!important}html .d-print-grid,html[data-netbox-color-mode=dark] .d-print-grid,html[data-netbox-color-mode=light] .d-print-grid{display:grid!important}html .d-print-table,html[data-netbox-color-mode=dark] .d-print-table,html[data-netbox-color-mode=light] .d-print-table{display:table!important}html .d-print-table-row,html[data-netbox-color-mode=dark] .d-print-table-row,html[data-netbox-color-mode=light] .d-print-table-row{display:table-row!important}html .d-print-table-cell,html[data-netbox-color-mode=dark] .d-print-table-cell,html[data-netbox-color-mode=light] .d-print-table-cell{display:table-cell!important}html .d-print-flex,html[data-netbox-color-mode=dark] .d-print-flex,html[data-netbox-color-mode=light] .d-print-flex{display:flex!important}html .d-print-inline-flex,html[data-netbox-color-mode=dark] .d-print-inline-flex,html[data-netbox-color-mode=light] .d-print-inline-flex{display:inline-flex!important}html .d-print-none,html[data-netbox-color-mode=dark] .d-print-none,html[data-netbox-color-mode=light] .d-print-none{display:none!important}}@media print{html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--nbx-select-content-bg: #fff;--nbx-select-option-selected-bg: #dee2e6;--nbx-select-option-hover-bg: #0d6efd;--nbx-select-option-hover-color: #fff;--nbx-select-placeholder-color: #adb5bd;--nbx-select-value-color: #fff}html :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=light] :root[data-netbox-color-mode=dark]{--nbx-select-content-bg: #212529;--nbx-select-option-selected-bg: #adb5bd;--nbx-select-option-hover-bg: #9ec5fe;--nbx-select-option-hover-color: #000;--nbx-select-placeholder-color: #495057;--nbx-select-value-color: #000}}@media print{html .ss-main,html[data-netbox-color-mode=dark] .ss-main,html[data-netbox-color-mode=light] .ss-main{position:relative;display:inline-block;user-select:none;color:#212529;width:100%}html .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=light] .ss-main .ss-single-selected{display:flex;cursor:pointer;width:100%;height:calc(1.5em + (.75rem + 2px));padding:.75rem;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html .ss-main .ss-single-selected.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}html .ss-main .ss-single-selected.ss-open-above,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-above,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html .ss-main .ss-single-selected.ss-open-below,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected.ss-open-below,html[data-netbox-color-mode=light] .ss-main .ss-single-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html .ss-main .ss-single-selected .placeholder,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder{display:flex;flex:1 1 100%;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;width:calc(100% - 30px);line-height:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html .ss-main .ss-single-selected .placeholder *,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder *,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder *{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:auto}html .ss-main .ss-single-selected .placeholder .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder .ss-disabled{color:#6c757d}html .ss-main .ss-single-selected .ss-deselect,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-deselect{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem;font-weight:bold}html .ss-main .ss-single-selected .ss-deselect.ss-hide,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-deselect.ss-hide,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-deselect.ss-hide{display:none}html .ss-main .ss-single-selected .ss-arrow,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;margin:0 .75rem}html .ss-main .ss-single-selected .ss-arrow span,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span{border:solid #212529;border-width:0 2px 2px 0;display:inline-block;padding:3px;transition:transform .2s,margin .2s}html .ss-main .ss-single-selected .ss-arrow span.arrow-up,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-up,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span.arrow-up{transform:rotate(-135deg);margin:3px 0 0}html .ss-main .ss-single-selected .ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .ss-arrow span.arrow-down,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .ss-arrow span.arrow-down{transform:rotate(45deg);margin:-3px 0 0}html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{display:flex;flex-direction:row;cursor:pointer;min-height:calc(1.5em + (.75rem + 2px));width:100%;padding:0 0 0 3px;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;box-sizing:border-box;transition:background-color .2s}html .ss-main .ss-multi-selected.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled{background-color:#ced4da;cursor:not-allowed}html .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled{color:#212529}html .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}html .ss-main .ss-multi-selected.ss-open-above,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-above,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-open-above{border-top-left-radius:0;border-top-right-radius:0}html .ss-main .ss-multi-selected.ss-open-below,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected.ss-open-below,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected.ss-open-below{border-bottom-left-radius:0;border-bottom-right-radius:0}html .ss-main .ss-multi-selected .ss-values,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values{display:flex;flex-wrap:wrap;justify-content:flex-start;flex:1 1 100%;width:calc(100% - 30px)}html .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-disabled{display:flex;padding:4px 5px;margin:2px 0;line-height:1em;align-items:center;width:100%;color:#6c757d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}to{transform:scale(0);opacity:0}}html .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value{display:flex;user-select:none;align-items:center;font-size:12px;padding:3px 5px;margin:3px 5px 3px 0;color:#fff;background-color:#0d6efd;border-radius:.375rem;animation-name:scaleIn;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:both}html .ss-main .ss-multi-selected .ss-values .ss-value.ss-out,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value.ss-out{animation-name:scaleOut;animation-duration:.2s;animation-timing-function:ease-out}html .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete{margin:0 0 0 5px;cursor:pointer}html .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add{display:flex;flex:0 1 3px;margin:9px 12px 0 5px}html .ss-main .ss-multi-selected .ss-add .ss-plus,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus{display:flex;justify-content:center;align-items:center;background:#212529;position:relative;height:10px;width:2px;transition:transform .2s}html .ss-main .ss-multi-selected .ss-add .ss-plus:after,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus:after,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus:after{background:#212529;content:"";position:absolute;height:2px;width:10px;left:-4px;top:4px}html .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross{transform:rotate(45deg)}}@media print{html .ss-content,html[data-netbox-color-mode=dark] .ss-content,html[data-netbox-color-mode=light] .ss-content{position:absolute;width:100%;margin:-1px 0 0;box-sizing:border-box;border:solid 1px #ced4da;z-index:1010;background-color:#fff;transform-origin:center top;transition:transform .2s,opacity .2s;opacity:0;transform:scaleY(0)}html .ss-content.ss-open,html[data-netbox-color-mode=dark] .ss-content.ss-open,html[data-netbox-color-mode=light] .ss-content.ss-open{display:block;opacity:1;transform:scaleY(1)}html .ss-content .ss-search,html[data-netbox-color-mode=dark] .ss-content .ss-search,html[data-netbox-color-mode=light] .ss-content .ss-search{display:flex;flex-direction:row;padding:.75rem}html .ss-content .ss-search.ss-hide,html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide,html[data-netbox-color-mode=light] .ss-content .ss-search.ss-hide{height:0px;opacity:0;padding:0;margin:0}html .ss-content .ss-search.ss-hide input,html[data-netbox-color-mode=dark] .ss-content .ss-search.ss-hide input,html[data-netbox-color-mode=light] .ss-content .ss-search.ss-hide input{height:0px;opacity:0;padding:0;margin:0}html .ss-content .ss-search input,html[data-netbox-color-mode=dark] .ss-content .ss-search input,html[data-netbox-color-mode=light] .ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;height:30px;padding:.75rem;margin:0;border:1px solid #ced4da;border-radius:.375rem;background-color:#fff;outline:0;text-align:left;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-appearance:textfield}html .ss-content .ss-search input::placeholder,html[data-netbox-color-mode=dark] .ss-content .ss-search input::placeholder,html[data-netbox-color-mode=light] .ss-content .ss-search input::placeholder{color:#adb5bd;vertical-align:middle}html .ss-content .ss-search input:focus,html[data-netbox-color-mode=dark] .ss-content .ss-search input:focus,html[data-netbox-color-mode=light] .ss-content .ss-search input:focus{box-shadow:0 0 5px #0d6efd}html .ss-content .ss-search .ss-addable,html[data-netbox-color-mode=dark] .ss-content .ss-search .ss-addable,html[data-netbox-color-mode=light] .ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:22px;font-weight:bold;flex:0 0 30px;height:30px;margin:0 0 0 8px;border:1px solid #ced4da;border-radius:.375rem;box-sizing:border-box}html .ss-content .ss-addable,html[data-netbox-color-mode=dark] .ss-content .ss-addable,html[data-netbox-color-mode=light] .ss-content .ss-addable{padding-top:0}html .ss-content .ss-list,html[data-netbox-color-mode=dark] .ss-content .ss-list,html[data-netbox-color-mode=light] .ss-content .ss-list{max-height:200px;overflow-x:hidden;overflow-y:auto;text-align:left}html .ss-content .ss-list .ss-optgroup .ss-optgroup-label,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-optgroup-label,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup .ss-optgroup-label{padding:6px 10px;font-weight:bold}html .ss-content .ss-list .ss-optgroup .ss-option,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup .ss-option,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup .ss-option{padding:6px 6px 6px 25px}html .ss-content .ss-list .ss-optgroup-label-selectable,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup-label-selectable{cursor:pointer}html .ss-content .ss-list .ss-optgroup-label-selectable:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-optgroup-label-selectable:hover,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-optgroup-label-selectable:hover{color:#fff;background-color:#0d6efd}html .ss-content .ss-list .ss-option,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option{padding:6px 10px;cursor:pointer;user-select:none}html .ss-content .ss-list .ss-option *,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option *,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option *{display:inline-block}html .ss-content .ss-list .ss-option:hover,html .ss-content .ss-list .ss-option.ss-highlighted,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-highlighted,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-highlighted{color:#fff;background-color:#0d6efd}html .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;color:#6c757d;background-color:#fff}html .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected{color:#212529;background-color:#0d6efd1a}html .ss-content .ss-list .ss-option.ss-hide,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option.ss-hide,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option.ss-hide{display:none}html .ss-content .ss-list .ss-option .ss-search-highlight,html[data-netbox-color-mode=dark] .ss-content .ss-list .ss-option .ss-search-highlight,html[data-netbox-color-mode=light] .ss-content .ss-list .ss-option .ss-search-highlight{background-color:#ffc107}}@media print{html .ss-main,html[data-netbox-color-mode=dark] .ss-main,html[data-netbox-color-mode=light] .ss-main{color:#212529}html .ss-main.is-invalid .ss-single-selected,html .ss-main.is-invalid .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-invalid .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main.is-invalid .ss-single-selected,html[data-netbox-color-mode=light] .ss-main.is-invalid .ss-multi-selected{border-color:#dc3545}html .ss-main.is-valid .ss-single-selected,html .ss-main.is-valid .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main.is-valid .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main.is-valid .ss-single-selected,html[data-netbox-color-mode=light] .ss-main.is-valid .ss-multi-selected{border-color:#198754}html .ss-main .ss-single-selected,html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-single-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{padding:.375rem .75rem;background-color:#fff;border:1px solid #e9ecef}html .ss-main .ss-single-selected[disabled],html .ss-main .ss-multi-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected[disabled],html[data-netbox-color-mode=light] .ss-main .ss-single-selected[disabled],html[data-netbox-color-mode=light] .ss-main .ss-multi-selected[disabled]{color:#6c757d;background-color:#e9ecef}html .ss-main div.ss-multi-selected .ss-values .ss-disabled,html .ss-main div.ss-single-selected span.placeholder .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main div.ss-single-selected span.placeholder .ss-disabled,html[data-netbox-color-mode=light] .ss-main div.ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main div.ss-single-selected span.placeholder .ss-disabled{color:var(--nbx-select-placeholder-color)}html .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html .ss-main .ss-single-selected span.ss-arrow span.arrow-up,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.ss-arrow span.arrow-up,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.ss-arrow span.arrow-down,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.ss-arrow span.arrow-up{border-color:currentColor;color:#6c757d}html .ss-main .ss-single-selected .placeholder .depth,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected .placeholder .depth,html[data-netbox-color-mode=light] .ss-main .ss-single-selected .placeholder .depth{display:none}html .ss-main .ss-single-selected span.placeholder>*,html .ss-main .ss-single-selected span.placeholder,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=dark] .ss-main .ss-single-selected span.placeholder,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.placeholder>*,html[data-netbox-color-mode=light] .ss-main .ss-single-selected span.placeholder{line-height:1.5}html .ss-main .ss-multi-selected,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected{align-items:center;padding-right:.75rem;padding-left:.75rem}html .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-disabled{padding:4px 0}html .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value{color:var(--nbx-select-value-color);border-radius:.375rem}html .ss-main .ss-multi-selected .ss-values .ss-value .depth,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-values .ss-value .depth,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-values .ss-value .depth{display:none}html .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=dark] .ss-main .ss-multi-selected .ss-add,html[data-netbox-color-mode=light] .ss-main .ss-multi-selected .ss-add{margin:0 .75rem}html .ss-main .ss-content,html[data-netbox-color-mode=dark] .ss-main .ss-content,html[data-netbox-color-mode=light] .ss-main .ss-content{background-color:var(--nbx-select-content-bg);border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .ss-main .ss-content .ss-list .ss-option.ss-option-selected,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-option-selected,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-option-selected{color:#212529;background-color:var(--nbx-select-option-selected-bg)}html .ss-main .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option:hover{color:var(--nbx-select-option-hover-color);background-color:var(--nbx-select-option-hover-bg)}html .ss-main .ss-content .ss-list .ss-option:last-child,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option:last-child,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option:last-child{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}html .ss-main .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-disabled{background-color:unset}html .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option.ss-disabled:hover{color:#6c757d}html .ss-main .ss-content .ss-list .ss-option .depth,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list .ss-option .depth,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list .ss-option .depth{opacity:.3}html .ss-main .ss-content .ss-list::-webkit-scrollbar,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar{right:0;width:4px}html .ss-main .ss-content .ss-list::-webkit-scrollbar:hover,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar:hover{opacity:.8}html .ss-main .ss-content .ss-list::-webkit-scrollbar-track,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-track,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar-track{background:transparent}html .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb{right:0;width:2px;background-color:var(--nbx-sidebar-scroll)}html .ss-main .ss-content .ss-search,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search{padding-right:.5rem}html .ss-main .ss-content .ss-search button,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search button,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search button{margin-left:.75rem}html .ss-main .ss-content .ss-search input[type=search],html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search],html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search input[type=search]{color:#212529;background-color:#fff;border:1px solid #e9ecef}html .ss-main .ss-content .ss-search input[type=search]:focus,html[data-netbox-color-mode=dark] .ss-main .ss-content .ss-search input[type=search]:focus,html[data-netbox-color-mode=light] .ss-main .ss-content .ss-search input[type=search]:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}}@media print{html .sidenav,html[data-netbox-color-mode=dark] .sidenav,html[data-netbox-color-mode=light] .sidenav{position:fixed;top:0;bottom:0;left:0;z-index:1050;display:block;width:100%;max-width:3rem;padding-top:0;padding-right:0;padding-left:0;background-color:var(--nbx-sidebar-bg);border-right:1px solid #ced4da;transition:all .1s ease-in-out}}@media print and (max-width: 991.98px){html .sidenav,html[data-netbox-color-mode=dark] .sidenav,html[data-netbox-color-mode=light] .sidenav{transform:translate(-3rem)}html .sidenav+.content-container[class],html[data-netbox-color-mode=dark] .sidenav+.content-container[class],html[data-netbox-color-mode=light] .sidenav+.content-container[class]{margin-left:0}html .sidenav .profile-button-container[class],html[data-netbox-color-mode=dark] .sidenav .profile-button-container[class],html[data-netbox-color-mode=light] .sidenav .profile-button-container[class]{display:block}}@media print{html .sidenav .profile-button-container,html[data-netbox-color-mode=dark] .sidenav .profile-button-container,html[data-netbox-color-mode=light] .sidenav .profile-button-container{display:none;padding:.5rem 1rem}}@media print{html .sidenav+.content-container,html[data-netbox-color-mode=dark] .sidenav+.content-container,html[data-netbox-color-mode=light] .sidenav+.content-container{margin-left:3rem;transition:all .1s ease-in-out}}@media print{html .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] .sidenav .sidenav-brand{margin-right:0;transition:opacity .1s ease-in-out}}@media print{html .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] .sidenav .sidenav-brand-icon{transition:opacity .1s ease-in-out}}@media print{html .sidenav .sidenav-inner,html[data-netbox-color-mode=dark] .sidenav .sidenav-inner,html[data-netbox-color-mode=light] .sidenav .sidenav-inner{padding-right:1.5rem;padding-left:1.5rem}}@media print and (min-width: 768px){html .sidenav .sidenav-inner,html[data-netbox-color-mode=dark] .sidenav .sidenav-inner,html[data-netbox-color-mode=light] .sidenav .sidenav-inner{padding-right:0;padding-left:0}}@media print{html .sidenav .sidenav-brand-img,html .sidenav .sidenav-brand>img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=dark] .sidenav .sidenav-brand>img,html[data-netbox-color-mode=light] .sidenav .sidenav-brand-img,html[data-netbox-color-mode=light] .sidenav .sidenav-brand>img{max-width:100%;max-height:calc(16rem - 1rem)}}@media print{html .sidenav .navbar-heading,html[data-netbox-color-mode=dark] .sidenav .navbar-heading,html[data-netbox-color-mode=light] .sidenav .navbar-heading{padding-top:.5rem;padding-bottom:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}}@media print{html .sidenav .sidenav-header,html[data-netbox-color-mode=dark] .sidenav .sidenav-header,html[data-netbox-color-mode=light] .sidenav .sidenav-header{position:relative;display:flex;align-items:center;justify-content:space-between;height:78px;padding:1rem;transition:all .1s ease-in-out}}@media print{html .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] .sidenav .sidenav-toggle{position:absolute;display:inline-block;opacity:0;transition:opacity 10ms ease-in-out;transition-delay:.1s}}@media print{html .sidenav .sidenav-collapse,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse{display:flex;flex:1;flex-direction:column;align-items:stretch;padding-right:1.5rem;padding-left:1.5rem;margin-right:-1.5rem;margin-left:-1.5rem}}@media print{html .sidenav .sidenav-collapse>*,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse>*,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse>*{min-width:100%}}@media print and (min-width: 768px){html .sidenav .sidenav-collapse,html[data-netbox-color-mode=dark] .sidenav .sidenav-collapse,html[data-netbox-color-mode=light] .sidenav .sidenav-collapse{margin-right:0;margin-left:0}}@media print{html .sidenav .nav-group-header,html[data-netbox-color-mode=dark] .sidenav .nav-group-header,html[data-netbox-color-mode=light] .sidenav .nav-group-header{padding:.25rem 1rem;margin-top:.5rem;margin-bottom:0}}@media print{html .sidenav .nav .nav-item,html[data-netbox-color-mode=dark] .sidenav .nav .nav-item,html[data-netbox-color-mode=light] .sidenav .nav .nav-item{display:flex;align-items:center;justify-content:space-between;width:100%}}@media print{html .sidenav .nav .nav-item.no-buttons,html[data-netbox-color-mode=dark] .sidenav .nav .nav-item.no-buttons,html[data-netbox-color-mode=light] .sidenav .nav .nav-item.no-buttons{padding-right:5rem}}@media print{html .sidenav .collapse .nav .nav-item .nav-link,html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link,html[data-netbox-color-mode=light] .sidenav .collapse .nav .nav-item .nav-link{width:100%;padding:.25rem .25rem .25rem 1rem;margin-top:0;margin-bottom:0;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}}@media print{html .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon,html[data-netbox-color-mode=dark] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon,html[data-netbox-color-mode=light] .sidenav .collapse .nav .nav-item .nav-link .sidenav-mini-icon{width:1rem;text-align:center;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle],html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle],html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]{width:unset;height:100%;padding-left:.5rem;font-weight:700;color:var(--nbx-sidenav-parent-color)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{color:#343a40;background:#cfe2ff}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle]:after{display:inline-block;margin-left:auto;font-family:"Material Design Icons";font-style:normal;font-weight:700;font-variant:normal;color:#6c757d;text-rendering:auto;-webkit-font-smoothing:antialiased;content:"\f0142";transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true].active:after{color:#343a40}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle][aria-expanded=true]:after{color:#0d6efd;transform:rotate(90deg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle] .nav-link-text{padding-left:.25rem;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav,html[data-netbox-color-mode=dark] .sidenav .navbar-nav,html[data-netbox-color-mode=light] .sidenav .navbar-nav{flex-direction:column;margin-right:-1.5rem;margin-left:-1.5rem}}@media print{html .sidenav .navbar-nav .nav-item,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item{margin-top:2px}}@media print{html .sidenav .navbar-nav .nav-item.disabled,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item.disabled,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item.disabled{cursor:not-allowed;opacity:.8}}@media print{html .sidenav .navbar-nav .nav-item .nav-link,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link{position:relative;display:flex;align-items:center;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--nbx-sidenav-link-color);white-space:nowrap;transition:all .1s ease-in-out}}@media print{html .sidenav .navbar-nav .nav-item .nav-link.active,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link.active,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link.active{background-color:var(--nbx-sidebar-link-active-bg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active),html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active),html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link:hover:not(.active){color:var(--nbx-body-color);background-color:var(--nbx-sidebar-link-hover-bg)}}@media print{html .sidenav .navbar-nav .nav-item .nav-link>i,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-item .nav-link>i,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-item .nav-link>i{min-width:2rem;font-size:calc(45px / 2);text-align:center}}@media print{html .sidenav .navbar-nav .nav-group-label,html[data-netbox-color-mode=dark] .sidenav .navbar-nav .nav-group-label,html[data-netbox-color-mode=light] .sidenav .navbar-nav .nav-group-label{display:block;font-size:.75rem;font-weight:700;color:var(--nbx-sidenav-group-color);text-transform:uppercase;white-space:nowrap}}@media print{html body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-toggle-icon{color:var(--nbx-sidenav-pin-color);transform:rotate(90deg)}}@media print and (min-width: 1200px){html body[data-sidenav-pinned] .sidenav+.content-container,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav+.content-container,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav+.content-container{margin-left:16rem}}@media print{html .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=dark] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon,html[data-netbox-color-mode=light] .g-sidenav-show:not(.g-sidenav-pinned) .sidenav .sidenav-toggle-icon{transform:rotate(0)}}@media print{html body[data-sidenav-show] .sidenav,html body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav{max-width:16rem}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html body[data-sidenav-show] .sidenav .navbar-heading,html body[data-sidenav-pinned] .sidenav .sidenav-brand,html body[data-sidenav-pinned] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .navbar-heading,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .navbar-heading,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .navbar-heading{display:block}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand{opacity:1;transform:translate(0)}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand-icon,html body[data-sidenav-pinned] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav .sidenav-brand-icon{position:absolute;opacity:0}}@media print and (max-width: 991.98px){html body[data-sidenav-show] .sidenav,html body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=dark] body[data-sidenav-pinned] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav,html[data-netbox-color-mode=light] body[data-sidenav-pinned] .sidenav{transform:translate(0)}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-header,html body[data-sidenav-hidden] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-header,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-header,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-header{padding:.5rem}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-brand,html body[data-sidenav-hidden] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-brand{position:absolute;opacity:0}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html body[data-sidenav-hidden] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-brand-icon,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-brand-icon{opacity:1}}@media print{html body[data-sidenav-hide] .sidenav .sidenav-toggle,html body[data-sidenav-hidden] .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .sidenav-toggle{opacity:0;position:absolute;transition:unset;transition-delay:0ms}}@media print{html body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .navbar-nav>.nav-item>.nav-link:after,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .navbar-nav>.nav-item>.nav-link:after{content:""}}@media print{html body[data-sidenav-hide] .sidenav .nav-item .collapse,html body[data-sidenav-hidden] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .nav-item .collapse{display:none}}@media print{html body[data-sidenav-hide] .sidenav .nav-link-text,html body[data-sidenav-hidden] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .nav-link-text{opacity:0}}@media print{html body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=dark] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] body[data-sidenav-hide] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active,html[data-netbox-color-mode=light] body[data-sidenav-hidden] .sidenav .navbar-nav .nav-item .nav-link[data-bs-toggle].active{margin-right:0;margin-left:0;border-radius:unset}}@media print{html body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-brand,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-brand{display:block}}@media print{html body[data-sidenav-show] .sidenav .nav-item .collapse,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .collapse,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .collapse{height:auto;transition:all .1s ease-in-out}}@media print{html body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .nav-link .nav-link-text{opacity:1}}@media print{html body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .nav-item .sidenav-mini-icon{opacity:0}}@media print and (min-width: 992px){html body[data-sidenav-show] .sidenav .sidenav-toggle,html[data-netbox-color-mode=dark] body[data-sidenav-show] .sidenav .sidenav-toggle,html[data-netbox-color-mode=light] body[data-sidenav-show] .sidenav .sidenav-toggle{position:relative;opacity:1}}@media print{html .simplebar-track.simplebar-vertical,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical{right:0;width:6px;background-color:transparent}}@media print{html .simplebar-track.simplebar-vertical .simplebar-scrollbar,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical .simplebar-scrollbar{transition:none}}@media print{html .simplebar-track.simplebar-vertical .simplebar-scrollbar:before,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{right:0;width:3px;background:var(--nbx-sidebar-scroll);border-radius:.375rem}}@media print{html .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before,html[data-netbox-color-mode=dark] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before,html[data-netbox-color-mode=light] .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar:before{width:5px}}@media print{html body,html[data-netbox-color-mode=dark] body,html[data-netbox-color-mode=light] body{color:var(--nbx-body-color);background-color:var(--nbx-body-bg);font-size:.875rem}}@media print{html pre,html[data-netbox-color-mode=dark] pre,html[data-netbox-color-mode=light] pre{padding:1rem;white-space:pre;background-color:var(--nbx-pre-bg);border:1px solid var(--nbx-pre-border-color);border-radius:.375rem}}@media print{html small,html .small,html[data-netbox-color-mode=dark] .small,html[data-netbox-color-mode=light] .small,html[data-netbox-color-mode=dark] small,html[data-netbox-color-mode=light] small{font-size:smaller!important}}@media print{html a[type=button],html[data-netbox-color-mode=dark] a[type=button],html[data-netbox-color-mode=light] a[type=button]{-webkit-appearance:unset!important}}@media print{html *[data-href],html[data-netbox-color-mode=dark] *[data-href],html[data-netbox-color-mode=light] *[data-href]{cursor:pointer}}@media print{html .form-control:not([type=file]),html[data-netbox-color-mode=dark] .form-control:not([type=file]),html[data-netbox-color-mode=light] .form-control:not([type=file]){font-size:inherit}}@media print{html .badge,html[data-netbox-color-mode=dark] .badge,html[data-netbox-color-mode=light] .badge{font-size:.75rem}}@media print{html .text-xs,html[data-netbox-color-mode=dark] .text-xs,html[data-netbox-color-mode=light] .text-xs{font-size:.75rem!important;line-height:1.25!important}}@media print{html .border-input,html[data-netbox-color-mode=dark] .border-input,html[data-netbox-color-mode=light] .border-input{border:1px solid #e9ecef!important}}@media print{html .ws-nowrap,html[data-netbox-color-mode=dark] .ws-nowrap,html[data-netbox-color-mode=light] .ws-nowrap{white-space:nowrap!important}}@media print{html table tr .vertical-align,html table td .vertical-align,html[data-netbox-color-mode=dark] table tr .vertical-align,html[data-netbox-color-mode=dark] table td .vertical-align,html[data-netbox-color-mode=light] table tr .vertical-align,html[data-netbox-color-mode=light] table td .vertical-align{vertical-align:middle}}@media print{html .noprint,html[data-netbox-color-mode=dark] .noprint,html[data-netbox-color-mode=light] .noprint{display:none!important;visibility:hidden!important}}@media print{html .printonly,html[data-netbox-color-mode=dark] .printonly,html[data-netbox-color-mode=light] .printonly{display:none!important;visibility:hidden!important}}@media print{html .printonly,html[data-netbox-color-mode=dark] .printonly,html[data-netbox-color-mode=light] .printonly{display:block!important;visibility:visible!important}}@media print{html :root,html[data-netbox-color-mode=dark] :root,html[data-netbox-color-mode=light] :root{--nbx-sidebar-bg: #e9ecef;--nbx-sidebar-scroll: #adb5bd;--nbx-sidebar-link-hover-bg: rgba(108, 117, 125, .15);--nbx-sidebar-link-active-bg: #cfe2ff;--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(0, 0, 0, .25);--nbx-breadcrumb-bg: #e9ecef;--nbx-body-bg: #fff;--nbx-body-color: #343a40;--nbx-pre-bg: #f8f9fa;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(25, 135, 84, .4);--nbx-change-removed: rgba(220, 53, 69, .4);--nbx-cable-node-bg: #f8f9fa;--nbx-cable-node-border-color: #e9ecef;--nbx-cable-termination-bg: #e9ecef;--nbx-cable-termination-border-color: #dee2e6;--nbx-search-filter-border-left-color: #dee2e6;--nbx-color-mode-toggle-color: #0d6efd;--nbx-sidenav-link-color: #343a40;--nbx-sidenav-pin-color: #fd7e14;--nbx-sidenav-parent-color: #343a40;--nbx-sidenav-group-color: #343a40}}@media print{html :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=dark] :root[data-netbox-color-mode=dark],html[data-netbox-color-mode=light] :root[data-netbox-color-mode=dark]{--nbx-sidebar-bg: #212529;--nbx-sidebar-scroll: #495057;--nbx-sidebar-link-active-bg: rgba(110, 168, 254, .25);--nbx-sidebar-link-hover-bg: rgba(173, 181, 189, .15);--nbx-sidebar-title-color: #6c757d;--nbx-sidebar-shadow: inset 0px -25px 20px -25px rgba(255, 255, 255, .05);--nbx-breadcrumb-bg: #343a40;--nbx-body-bg: #1b1f22;--nbx-body-color: #f8f9fa;--nbx-pre-bg: #495057;--nbx-pre-border-color: #6c757d;--nbx-change-added: rgba(117, 183, 152, .4);--nbx-change-removed: rgba(234, 134, 143, .4);--nbx-cable-node-bg: #495057;--nbx-cable-node-border-color: #6c757d;--nbx-cable-termination-bg: #343a40;--nbx-cable-termination-border-color: #495057;--nbx-search-filter-border-left-color: #6c757d;--nbx-color-mode-toggle-color: #ffda6a;--nbx-sidenav-link-color: #e9ecef;--nbx-sidenav-pin-color: #ffc107;--nbx-sidenav-parent-color: #e9ecef;--nbx-sidenav-group-color: #6c757d}}@media print{html .bg-primary button.btn-close,html[data-netbox-color-mode=dark] .bg-primary button.btn-close,html[data-netbox-color-mode=light] .bg-primary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f496e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-primary,html[data-netbox-color-mode=dark] .btn.btn-ghost-primary,html[data-netbox-color-mode=light] .btn.btn-ghost-primary{color:#337ab7}}@media print{html .btn.btn-ghost-primary:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-primary:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-primary:hover{background-color:#337ab71f}}@media print{html .alert.alert-primary a:not(.btn),html .table-primary a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=dark] .table-primary a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-primary a:not(.btn),html[data-netbox-color-mode=light] .table-primary a:not(.btn){font-weight:700;color:#1f496e}}@media print{html .alert.alert-primary .btn:not([class*=btn-outline]),html .table-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-primary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-primary .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-primary a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-primary a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-primary a:not(.btn){font-weight:700;color:#adcae2}}@media print{html .badge.bg-primary,html .toast.bg-primary,html .toast-header.bg-primary,html .progress-bar.bg-primary,html[data-netbox-color-mode=dark] .badge.bg-primary,html[data-netbox-color-mode=dark] .toast.bg-primary,html[data-netbox-color-mode=dark] .toast-header.bg-primary,html[data-netbox-color-mode=dark] .progress-bar.bg-primary,html[data-netbox-color-mode=light] .badge.bg-primary,html[data-netbox-color-mode=light] .toast.bg-primary,html[data-netbox-color-mode=light] .toast-header.bg-primary,html[data-netbox-color-mode=light] .progress-bar.bg-primary{color:#fff}}@media print{html .bg-secondary button.btn-close,html[data-netbox-color-mode=dark] .bg-secondary button.btn-close,html[data-netbox-color-mode=light] .bg-secondary button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-secondary,html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary,html[data-netbox-color-mode=light] .btn.btn-ghost-secondary{color:#6c757d}}@media print{html .btn.btn-ghost-secondary:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-secondary:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-secondary:hover{background-color:#6c757d1f}}@media print{html .alert.alert-secondary a:not(.btn),html .table-secondary a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=dark] .table-secondary a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-secondary a:not(.btn),html[data-netbox-color-mode=light] .table-secondary a:not(.btn){font-weight:700;color:#41464b}}@media print{html .alert.alert-secondary .btn:not([class*=btn-outline]),html .table-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-secondary .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-secondary .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-secondary a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-secondary a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-secondary a:not(.btn){font-weight:700;color:#c4c8cb}}@media print{html .badge.bg-secondary,html .toast.bg-secondary,html .toast-header.bg-secondary,html .progress-bar.bg-secondary,html[data-netbox-color-mode=dark] .badge.bg-secondary,html[data-netbox-color-mode=dark] .toast.bg-secondary,html[data-netbox-color-mode=dark] .toast-header.bg-secondary,html[data-netbox-color-mode=dark] .progress-bar.bg-secondary,html[data-netbox-color-mode=light] .badge.bg-secondary,html[data-netbox-color-mode=light] .toast.bg-secondary,html[data-netbox-color-mode=light] .toast-header.bg-secondary,html[data-netbox-color-mode=light] .progress-bar.bg-secondary{color:#fff}}@media print{html .bg-success button.btn-close,html[data-netbox-color-mode=dark] .bg-success button.btn-close,html[data-netbox-color-mode=light] .bg-success button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-success,html[data-netbox-color-mode=dark] .btn.btn-ghost-success,html[data-netbox-color-mode=light] .btn.btn-ghost-success{color:#198754}}@media print{html .btn.btn-ghost-success:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-success:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-success:hover{background-color:#1987541f}}@media print{html .alert.alert-success a:not(.btn),html .table-success a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=dark] .table-success a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-success a:not(.btn),html[data-netbox-color-mode=light] .table-success a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-success .btn:not([class*=btn-outline]),html .table-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-success .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-success .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-success a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-success a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-success a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-success,html .toast.bg-success,html .toast-header.bg-success,html .progress-bar.bg-success,html[data-netbox-color-mode=dark] .badge.bg-success,html[data-netbox-color-mode=dark] .toast.bg-success,html[data-netbox-color-mode=dark] .toast-header.bg-success,html[data-netbox-color-mode=dark] .progress-bar.bg-success,html[data-netbox-color-mode=light] .badge.bg-success,html[data-netbox-color-mode=light] .toast.bg-success,html[data-netbox-color-mode=light] .toast-header.bg-success,html[data-netbox-color-mode=light] .progress-bar.bg-success{color:#fff}}@media print{html .bg-info button.btn-close,html[data-netbox-color-mode=dark] .bg-info button.btn-close,html[data-netbox-color-mode=light] .bg-info button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-info,html[data-netbox-color-mode=dark] .btn.btn-ghost-info,html[data-netbox-color-mode=light] .btn.btn-ghost-info{color:#0dcaf0}}@media print{html .btn.btn-ghost-info:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-info:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-info:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-info a:not(.btn),html .table-info a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=dark] .table-info a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-info a:not(.btn),html[data-netbox-color-mode=light] .table-info a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-info .btn:not([class*=btn-outline]),html .table-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-info .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-info .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-info a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-info a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-info a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-info,html .toast.bg-info,html .toast-header.bg-info,html .progress-bar.bg-info,html[data-netbox-color-mode=dark] .badge.bg-info,html[data-netbox-color-mode=dark] .toast.bg-info,html[data-netbox-color-mode=dark] .toast-header.bg-info,html[data-netbox-color-mode=dark] .progress-bar.bg-info,html[data-netbox-color-mode=light] .badge.bg-info,html[data-netbox-color-mode=light] .toast.bg-info,html[data-netbox-color-mode=light] .toast-header.bg-info,html[data-netbox-color-mode=light] .progress-bar.bg-info{color:#000}}@media print{html .bg-warning button.btn-close,html[data-netbox-color-mode=dark] .bg-warning button.btn-close,html[data-netbox-color-mode=light] .bg-warning button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-warning,html[data-netbox-color-mode=dark] .btn.btn-ghost-warning,html[data-netbox-color-mode=light] .btn.btn-ghost-warning{color:#ffc107}}@media print{html .btn.btn-ghost-warning:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-warning:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-warning:hover{background-color:#ffc1071f}}@media print{html .alert.alert-warning a:not(.btn),html .table-warning a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=dark] .table-warning a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-warning a:not(.btn),html[data-netbox-color-mode=light] .table-warning a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-warning .btn:not([class*=btn-outline]),html .table-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-warning .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-warning .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-warning a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-warning a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-warning a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-warning,html .toast.bg-warning,html .toast-header.bg-warning,html .progress-bar.bg-warning,html[data-netbox-color-mode=dark] .badge.bg-warning,html[data-netbox-color-mode=dark] .toast.bg-warning,html[data-netbox-color-mode=dark] .toast-header.bg-warning,html[data-netbox-color-mode=dark] .progress-bar.bg-warning,html[data-netbox-color-mode=light] .badge.bg-warning,html[data-netbox-color-mode=light] .toast.bg-warning,html[data-netbox-color-mode=light] .toast-header.bg-warning,html[data-netbox-color-mode=light] .progress-bar.bg-warning{color:#000}}@media print{html .bg-danger button.btn-close,html[data-netbox-color-mode=dark] .bg-danger button.btn-close,html[data-netbox-color-mode=light] .bg-danger button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-danger,html[data-netbox-color-mode=dark] .btn.btn-ghost-danger,html[data-netbox-color-mode=light] .btn.btn-ghost-danger{color:#dc3545}}@media print{html .btn.btn-ghost-danger:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-danger:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-danger:hover{background-color:#dc35451f}}@media print{html .alert.alert-danger a:not(.btn),html .table-danger a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=dark] .table-danger a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-danger a:not(.btn),html[data-netbox-color-mode=light] .table-danger a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-danger .btn:not([class*=btn-outline]),html .table-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-danger .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-danger .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-danger a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-danger a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-danger a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-danger,html .toast.bg-danger,html .toast-header.bg-danger,html .progress-bar.bg-danger,html[data-netbox-color-mode=dark] .badge.bg-danger,html[data-netbox-color-mode=dark] .toast.bg-danger,html[data-netbox-color-mode=dark] .toast-header.bg-danger,html[data-netbox-color-mode=dark] .progress-bar.bg-danger,html[data-netbox-color-mode=light] .badge.bg-danger,html[data-netbox-color-mode=light] .toast.bg-danger,html[data-netbox-color-mode=light] .toast-header.bg-danger,html[data-netbox-color-mode=light] .progress-bar.bg-danger{color:#fff}}@media print{html .bg-light button.btn-close,html[data-netbox-color-mode=dark] .bg-light button.btn-close,html[data-netbox-color-mode=light] .bg-light button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-light,html[data-netbox-color-mode=dark] .btn.btn-ghost-light,html[data-netbox-color-mode=light] .btn.btn-ghost-light{color:#f8f9fa}}@media print{html .btn.btn-ghost-light:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-light:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-light:hover{background-color:#f8f9fa1f}}@media print{html .alert.alert-light a:not(.btn),html .table-light a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=dark] .table-light a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-light a:not(.btn),html[data-netbox-color-mode=light] .table-light a:not(.btn){font-weight:700;color:#636464}}@media print{html .alert.alert-light .btn:not([class*=btn-outline]),html .table-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-light .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-light .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-light a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-light a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-light a:not(.btn){font-weight:700;color:#636464}}@media print{html .badge.bg-light,html .toast.bg-light,html .toast-header.bg-light,html .progress-bar.bg-light,html[data-netbox-color-mode=dark] .badge.bg-light,html[data-netbox-color-mode=dark] .toast.bg-light,html[data-netbox-color-mode=dark] .toast-header.bg-light,html[data-netbox-color-mode=dark] .progress-bar.bg-light,html[data-netbox-color-mode=light] .badge.bg-light,html[data-netbox-color-mode=light] .toast.bg-light,html[data-netbox-color-mode=light] .toast-header.bg-light,html[data-netbox-color-mode=light] .progress-bar.bg-light{color:#000}}@media print{html .bg-dark button.btn-close,html[data-netbox-color-mode=dark] .bg-dark button.btn-close,html[data-netbox-color-mode=light] .bg-dark button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-dark,html[data-netbox-color-mode=dark] .btn.btn-ghost-dark,html[data-netbox-color-mode=light] .btn.btn-ghost-dark{color:#212529}}@media print{html .btn.btn-ghost-dark:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-dark:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-dark:hover{background-color:#2125291f}}@media print{html .alert.alert-dark a:not(.btn),html .table-dark a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=dark] .table-dark a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-dark a:not(.btn),html[data-netbox-color-mode=light] .table-dark a:not(.btn){font-weight:700;color:#141619}}@media print{html .alert.alert-dark .btn:not([class*=btn-outline]),html .table-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-dark .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-dark .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-dark a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-dark a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-dark a:not(.btn){font-weight:700;color:#a6a8a9}}@media print{html .badge.bg-dark,html .toast.bg-dark,html .toast-header.bg-dark,html .progress-bar.bg-dark,html[data-netbox-color-mode=dark] .badge.bg-dark,html[data-netbox-color-mode=dark] .toast.bg-dark,html[data-netbox-color-mode=dark] .toast-header.bg-dark,html[data-netbox-color-mode=dark] .progress-bar.bg-dark,html[data-netbox-color-mode=light] .badge.bg-dark,html[data-netbox-color-mode=light] .toast.bg-dark,html[data-netbox-color-mode=light] .toast-header.bg-dark,html[data-netbox-color-mode=light] .progress-bar.bg-dark{color:#fff}}@media print{html .bg-red button.btn-close,html[data-netbox-color-mode=dark] .bg-red button.btn-close,html[data-netbox-color-mode=light] .bg-red button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red,html[data-netbox-color-mode=dark] .btn.btn-ghost-red,html[data-netbox-color-mode=light] .btn.btn-ghost-red{color:#dc3545}}@media print{html .btn.btn-ghost-red:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red:hover{background-color:#dc35451f}}@media print{html .alert.alert-red a:not(.btn),html .table-red a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=dark] .table-red a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red a:not(.btn),html[data-netbox-color-mode=light] .table-red a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-red .btn:not([class*=btn-outline]),html .table-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-red,html .toast.bg-red,html .toast-header.bg-red,html .progress-bar.bg-red,html[data-netbox-color-mode=dark] .badge.bg-red,html[data-netbox-color-mode=dark] .toast.bg-red,html[data-netbox-color-mode=dark] .toast-header.bg-red,html[data-netbox-color-mode=dark] .progress-bar.bg-red,html[data-netbox-color-mode=light] .badge.bg-red,html[data-netbox-color-mode=light] .toast.bg-red,html[data-netbox-color-mode=light] .toast-header.bg-red,html[data-netbox-color-mode=light] .progress-bar.bg-red{color:#fff}}@media print{html .bg-yellow button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow button.btn-close,html[data-netbox-color-mode=light] .bg-yellow button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow{color:#ffc107}}@media print{html .btn.btn-ghost-yellow:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow:hover{background-color:#ffc1071f}}@media print{html .alert.alert-yellow a:not(.btn),html .table-yellow a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow a:not(.btn),html[data-netbox-color-mode=light] .table-yellow a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-yellow .btn:not([class*=btn-outline]),html .table-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-yellow,html .toast.bg-yellow,html .toast-header.bg-yellow,html .progress-bar.bg-yellow,html[data-netbox-color-mode=dark] .badge.bg-yellow,html[data-netbox-color-mode=dark] .toast.bg-yellow,html[data-netbox-color-mode=dark] .toast-header.bg-yellow,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow,html[data-netbox-color-mode=light] .badge.bg-yellow,html[data-netbox-color-mode=light] .toast.bg-yellow,html[data-netbox-color-mode=light] .toast-header.bg-yellow,html[data-netbox-color-mode=light] .progress-bar.bg-yellow{color:#000}}@media print{html .bg-green button.btn-close,html[data-netbox-color-mode=dark] .bg-green button.btn-close,html[data-netbox-color-mode=light] .bg-green button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green,html[data-netbox-color-mode=dark] .btn.btn-ghost-green,html[data-netbox-color-mode=light] .btn.btn-ghost-green{color:#198754}}@media print{html .btn.btn-ghost-green:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green:hover{background-color:#1987541f}}@media print{html .alert.alert-green a:not(.btn),html .table-green a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=dark] .table-green a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green a:not(.btn),html[data-netbox-color-mode=light] .table-green a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-green .btn:not([class*=btn-outline]),html .table-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-green,html .toast.bg-green,html .toast-header.bg-green,html .progress-bar.bg-green,html[data-netbox-color-mode=dark] .badge.bg-green,html[data-netbox-color-mode=dark] .toast.bg-green,html[data-netbox-color-mode=dark] .toast-header.bg-green,html[data-netbox-color-mode=dark] .progress-bar.bg-green,html[data-netbox-color-mode=light] .badge.bg-green,html[data-netbox-color-mode=light] .toast.bg-green,html[data-netbox-color-mode=light] .toast-header.bg-green,html[data-netbox-color-mode=light] .progress-bar.bg-green{color:#fff}}@media print{html .bg-blue button.btn-close,html[data-netbox-color-mode=dark] .bg-blue button.btn-close,html[data-netbox-color-mode=light] .bg-blue button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue,html[data-netbox-color-mode=light] .btn.btn-ghost-blue{color:#0d6efd}}@media print{html .btn.btn-ghost-blue:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue:hover{background-color:#0d6efd1f}}@media print{html .alert.alert-blue a:not(.btn),html .table-blue a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=dark] .table-blue a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue a:not(.btn),html[data-netbox-color-mode=light] .table-blue a:not(.btn){font-weight:700;color:#084298}}@media print{html .alert.alert-blue .btn:not([class*=btn-outline]),html .table-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue a:not(.btn){font-weight:700;color:#9ec5fe}}@media print{html .badge.bg-blue,html .toast.bg-blue,html .toast-header.bg-blue,html .progress-bar.bg-blue,html[data-netbox-color-mode=dark] .badge.bg-blue,html[data-netbox-color-mode=dark] .toast.bg-blue,html[data-netbox-color-mode=dark] .toast-header.bg-blue,html[data-netbox-color-mode=dark] .progress-bar.bg-blue,html[data-netbox-color-mode=light] .badge.bg-blue,html[data-netbox-color-mode=light] .toast.bg-blue,html[data-netbox-color-mode=light] .toast-header.bg-blue,html[data-netbox-color-mode=light] .progress-bar.bg-blue{color:#fff}}@media print{html .bg-cyan button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan button.btn-close,html[data-netbox-color-mode=light] .bg-cyan button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan{color:#0dcaf0}}@media print{html .btn.btn-ghost-cyan:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-cyan a:not(.btn),html .table-cyan a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan a:not(.btn),html[data-netbox-color-mode=light] .table-cyan a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-cyan .btn:not([class*=btn-outline]),html .table-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-cyan,html .toast.bg-cyan,html .toast-header.bg-cyan,html .progress-bar.bg-cyan,html[data-netbox-color-mode=dark] .badge.bg-cyan,html[data-netbox-color-mode=dark] .toast.bg-cyan,html[data-netbox-color-mode=dark] .toast-header.bg-cyan,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan,html[data-netbox-color-mode=light] .badge.bg-cyan,html[data-netbox-color-mode=light] .toast.bg-cyan,html[data-netbox-color-mode=light] .toast-header.bg-cyan,html[data-netbox-color-mode=light] .progress-bar.bg-cyan{color:#000}}@media print{html .bg-indigo button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo button.btn-close,html[data-netbox-color-mode=light] .bg-indigo button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo{color:#6610f2}}@media print{html .btn.btn-ghost-indigo:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo:hover{background-color:#6610f21f}}@media print{html .alert.alert-indigo a:not(.btn),html .table-indigo a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo a:not(.btn),html[data-netbox-color-mode=light] .table-indigo a:not(.btn){font-weight:700;color:#3d0a91}}@media print{html .alert.alert-indigo .btn:not([class*=btn-outline]),html .table-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo a:not(.btn){font-weight:700;color:#c29ffa}}@media print{html .badge.bg-indigo,html .toast.bg-indigo,html .toast-header.bg-indigo,html .progress-bar.bg-indigo,html[data-netbox-color-mode=dark] .badge.bg-indigo,html[data-netbox-color-mode=dark] .toast.bg-indigo,html[data-netbox-color-mode=dark] .toast-header.bg-indigo,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo,html[data-netbox-color-mode=light] .badge.bg-indigo,html[data-netbox-color-mode=light] .toast.bg-indigo,html[data-netbox-color-mode=light] .toast-header.bg-indigo,html[data-netbox-color-mode=light] .progress-bar.bg-indigo{color:#fff}}@media print{html .bg-purple button.btn-close,html[data-netbox-color-mode=dark] .bg-purple button.btn-close,html[data-netbox-color-mode=light] .bg-purple button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple,html[data-netbox-color-mode=light] .btn.btn-ghost-purple{color:#6f42c1}}@media print{html .btn.btn-ghost-purple:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple:hover{background-color:#6f42c11f}}@media print{html .alert.alert-purple a:not(.btn),html .table-purple a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=dark] .table-purple a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple a:not(.btn),html[data-netbox-color-mode=light] .table-purple a:not(.btn){font-weight:700;color:#432874}}@media print{html .alert.alert-purple .btn:not([class*=btn-outline]),html .table-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple a:not(.btn){font-weight:700;color:#c5b3e6}}@media print{html .badge.bg-purple,html .toast.bg-purple,html .toast-header.bg-purple,html .progress-bar.bg-purple,html[data-netbox-color-mode=dark] .badge.bg-purple,html[data-netbox-color-mode=dark] .toast.bg-purple,html[data-netbox-color-mode=dark] .toast-header.bg-purple,html[data-netbox-color-mode=dark] .progress-bar.bg-purple,html[data-netbox-color-mode=light] .badge.bg-purple,html[data-netbox-color-mode=light] .toast.bg-purple,html[data-netbox-color-mode=light] .toast-header.bg-purple,html[data-netbox-color-mode=light] .progress-bar.bg-purple{color:#fff}}@media print{html .bg-pink button.btn-close,html[data-netbox-color-mode=dark] .bg-pink button.btn-close,html[data-netbox-color-mode=light] .bg-pink button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink,html[data-netbox-color-mode=light] .btn.btn-ghost-pink{color:#d63384}}@media print{html .btn.btn-ghost-pink:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink:hover{background-color:#d633841f}}@media print{html .alert.alert-pink a:not(.btn),html .table-pink a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=dark] .table-pink a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink a:not(.btn),html[data-netbox-color-mode=light] .table-pink a:not(.btn){font-weight:700;color:#801f4f}}@media print{html .alert.alert-pink .btn:not([class*=btn-outline]),html .table-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink a:not(.btn){font-weight:700;color:#efadce}}@media print{html .badge.bg-pink,html .toast.bg-pink,html .toast-header.bg-pink,html .progress-bar.bg-pink,html[data-netbox-color-mode=dark] .badge.bg-pink,html[data-netbox-color-mode=dark] .toast.bg-pink,html[data-netbox-color-mode=dark] .toast-header.bg-pink,html[data-netbox-color-mode=dark] .progress-bar.bg-pink,html[data-netbox-color-mode=light] .badge.bg-pink,html[data-netbox-color-mode=light] .toast.bg-pink,html[data-netbox-color-mode=light] .toast-header.bg-pink,html[data-netbox-color-mode=light] .progress-bar.bg-pink{color:#fff}}@media print{html .bg-darker button.btn-close,html[data-netbox-color-mode=dark] .bg-darker button.btn-close,html[data-netbox-color-mode=light] .bg-darker button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101314'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-darker,html[data-netbox-color-mode=dark] .btn.btn-ghost-darker,html[data-netbox-color-mode=light] .btn.btn-ghost-darker{color:#1b1f22}}@media print{html .btn.btn-ghost-darker:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-darker:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-darker:hover{background-color:#1b1f221f}}@media print{html .alert.alert-darker a:not(.btn),html .table-darker a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=dark] .table-darker a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-darker a:not(.btn),html[data-netbox-color-mode=light] .table-darker a:not(.btn){font-weight:700;color:#101314}}@media print{html .alert.alert-darker .btn:not([class*=btn-outline]),html .table-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-darker .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-darker .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-darker a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-darker a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-darker a:not(.btn){font-weight:700;color:#a4a5a7}}@media print{html .badge.bg-darker,html .toast.bg-darker,html .toast-header.bg-darker,html .progress-bar.bg-darker,html[data-netbox-color-mode=dark] .badge.bg-darker,html[data-netbox-color-mode=dark] .toast.bg-darker,html[data-netbox-color-mode=dark] .toast-header.bg-darker,html[data-netbox-color-mode=dark] .progress-bar.bg-darker,html[data-netbox-color-mode=light] .badge.bg-darker,html[data-netbox-color-mode=light] .toast.bg-darker,html[data-netbox-color-mode=light] .toast-header.bg-darker,html[data-netbox-color-mode=light] .progress-bar.bg-darker{color:#fff}}@media print{html .bg-darkest button.btn-close,html[data-netbox-color-mode=dark] .bg-darkest button.btn-close,html[data-netbox-color-mode=light] .bg-darkest button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1011'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-darkest,html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest,html[data-netbox-color-mode=light] .btn.btn-ghost-darkest{color:#171b1d}}@media print{html .btn.btn-ghost-darkest:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-darkest:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-darkest:hover{background-color:#171b1d1f}}@media print{html .alert.alert-darkest a:not(.btn),html .table-darkest a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=dark] .table-darkest a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-darkest a:not(.btn),html[data-netbox-color-mode=light] .table-darkest a:not(.btn){font-weight:700;color:#0e1011}}@media print{html .alert.alert-darkest .btn:not([class*=btn-outline]),html .table-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-darkest .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-darkest .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-darkest a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-darkest a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-darkest a:not(.btn){font-weight:700;color:#a2a4a5}}@media print{html .badge.bg-darkest,html .toast.bg-darkest,html .toast-header.bg-darkest,html .progress-bar.bg-darkest,html[data-netbox-color-mode=dark] .badge.bg-darkest,html[data-netbox-color-mode=dark] .toast.bg-darkest,html[data-netbox-color-mode=dark] .toast-header.bg-darkest,html[data-netbox-color-mode=dark] .progress-bar.bg-darkest,html[data-netbox-color-mode=light] .badge.bg-darkest,html[data-netbox-color-mode=light] .toast.bg-darkest,html[data-netbox-color-mode=light] .toast-header.bg-darkest,html[data-netbox-color-mode=light] .progress-bar.bg-darkest{color:#fff}}@media print{html .bg-gray button.btn-close,html[data-netbox-color-mode=dark] .bg-gray button.btn-close,html[data-netbox-color-mode=light] .bg-gray button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray,html[data-netbox-color-mode=light] .btn.btn-ghost-gray{color:#ced4da}}@media print{html .btn.btn-ghost-gray:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray:hover{background-color:#ced4da1f}}@media print{html .alert.alert-gray a:not(.btn),html .table-gray a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=dark] .table-gray a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray a:not(.btn),html[data-netbox-color-mode=light] .table-gray a:not(.btn){font-weight:700;color:#525557}}@media print{html .alert.alert-gray .btn:not([class*=btn-outline]),html .table-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray a:not(.btn){font-weight:700;color:#525557}}@media print{html .badge.bg-gray,html .toast.bg-gray,html .toast-header.bg-gray,html .progress-bar.bg-gray,html[data-netbox-color-mode=dark] .badge.bg-gray,html[data-netbox-color-mode=dark] .toast.bg-gray,html[data-netbox-color-mode=dark] .toast-header.bg-gray,html[data-netbox-color-mode=dark] .progress-bar.bg-gray,html[data-netbox-color-mode=light] .badge.bg-gray,html[data-netbox-color-mode=light] .toast.bg-gray,html[data-netbox-color-mode=light] .toast-header.bg-gray,html[data-netbox-color-mode=light] .progress-bar.bg-gray{color:#000}}@media print{html .bg-gray-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-100 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23636464'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-100{color:#f8f9fa}}@media print{html .btn.btn-ghost-gray-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-100:hover{background-color:#f8f9fa1f}}@media print{html .alert.alert-gray-100 a:not(.btn),html .table-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-100 a:not(.btn){font-weight:700;color:#636464}}@media print{html .alert.alert-gray-100 .btn:not([class*=btn-outline]),html .table-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-100 a:not(.btn){font-weight:700;color:#636464}}@media print{html .badge.bg-gray-100,html .toast.bg-gray-100,html .toast-header.bg-gray-100,html .progress-bar.bg-gray-100,html[data-netbox-color-mode=dark] .badge.bg-gray-100,html[data-netbox-color-mode=dark] .toast.bg-gray-100,html[data-netbox-color-mode=dark] .toast-header.bg-gray-100,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-100,html[data-netbox-color-mode=light] .badge.bg-gray-100,html[data-netbox-color-mode=light] .toast.bg-gray-100,html[data-netbox-color-mode=light] .toast-header.bg-gray-100,html[data-netbox-color-mode=light] .progress-bar.bg-gray-100{color:#000}}@media print{html .bg-gray-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-200 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d5e60'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-200{color:#e9ecef}}@media print{html .btn.btn-ghost-gray-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-200:hover{background-color:#e9ecef1f}}@media print{html .alert.alert-gray-200 a:not(.btn),html .table-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}}@media print{html .alert.alert-gray-200 .btn:not([class*=btn-outline]),html .table-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-200 a:not(.btn){font-weight:700;color:#5d5e60}}@media print{html .badge.bg-gray-200,html .toast.bg-gray-200,html .toast-header.bg-gray-200,html .progress-bar.bg-gray-200,html[data-netbox-color-mode=dark] .badge.bg-gray-200,html[data-netbox-color-mode=dark] .toast.bg-gray-200,html[data-netbox-color-mode=dark] .toast-header.bg-gray-200,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-200,html[data-netbox-color-mode=light] .badge.bg-gray-200,html[data-netbox-color-mode=light] .toast.bg-gray-200,html[data-netbox-color-mode=light] .toast-header.bg-gray-200,html[data-netbox-color-mode=light] .progress-bar.bg-gray-200{color:#000}}@media print{html .bg-gray-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-300 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23595a5c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-300{color:#dee2e6}}@media print{html .btn.btn-ghost-gray-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-300:hover{background-color:#dee2e61f}}@media print{html .alert.alert-gray-300 a:not(.btn),html .table-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-300 a:not(.btn){font-weight:700;color:#595a5c}}@media print{html .alert.alert-gray-300 .btn:not([class*=btn-outline]),html .table-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-300 a:not(.btn){font-weight:700;color:#595a5c}}@media print{html .badge.bg-gray-300,html .toast.bg-gray-300,html .toast-header.bg-gray-300,html .progress-bar.bg-gray-300,html[data-netbox-color-mode=dark] .badge.bg-gray-300,html[data-netbox-color-mode=dark] .toast.bg-gray-300,html[data-netbox-color-mode=dark] .toast-header.bg-gray-300,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-300,html[data-netbox-color-mode=light] .badge.bg-gray-300,html[data-netbox-color-mode=light] .toast.bg-gray-300,html[data-netbox-color-mode=light] .toast-header.bg-gray-300,html[data-netbox-color-mode=light] .progress-bar.bg-gray-300{color:#000}}@media print{html .bg-gray-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-400 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23525557'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-400{color:#ced4da}}@media print{html .btn.btn-ghost-gray-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-400:hover{background-color:#ced4da1f}}@media print{html .alert.alert-gray-400 a:not(.btn),html .table-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-400 a:not(.btn){font-weight:700;color:#525557}}@media print{html .alert.alert-gray-400 .btn:not([class*=btn-outline]),html .table-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-400 a:not(.btn){font-weight:700;color:#525557}}@media print{html .badge.bg-gray-400,html .toast.bg-gray-400,html .toast-header.bg-gray-400,html .progress-bar.bg-gray-400,html[data-netbox-color-mode=dark] .badge.bg-gray-400,html[data-netbox-color-mode=dark] .toast.bg-gray-400,html[data-netbox-color-mode=dark] .toast-header.bg-gray-400,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-400,html[data-netbox-color-mode=light] .badge.bg-gray-400,html[data-netbox-color-mode=light] .toast.bg-gray-400,html[data-netbox-color-mode=light] .toast-header.bg-gray-400,html[data-netbox-color-mode=light] .progress-bar.bg-gray-400{color:#000}}@media print{html .bg-gray-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-500 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23686d71'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-500{color:#adb5bd}}@media print{html .btn.btn-ghost-gray-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-500:hover{background-color:#adb5bd1f}}@media print{html .alert.alert-gray-500 a:not(.btn),html .table-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-500 a:not(.btn){font-weight:700;color:#686d71}}@media print{html .alert.alert-gray-500 .btn:not([class*=btn-outline]),html .table-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-500 a:not(.btn){font-weight:700;color:#45484c}}@media print{html .badge.bg-gray-500,html .toast.bg-gray-500,html .toast-header.bg-gray-500,html .progress-bar.bg-gray-500,html[data-netbox-color-mode=dark] .badge.bg-gray-500,html[data-netbox-color-mode=dark] .toast.bg-gray-500,html[data-netbox-color-mode=dark] .toast-header.bg-gray-500,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-500,html[data-netbox-color-mode=light] .badge.bg-gray-500,html[data-netbox-color-mode=light] .toast.bg-gray-500,html[data-netbox-color-mode=light] .toast-header.bg-gray-500,html[data-netbox-color-mode=light] .progress-bar.bg-gray-500{color:#000}}@media print{html .bg-gray-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-600 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341464b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-600{color:#6c757d}}@media print{html .btn.btn-ghost-gray-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-600:hover{background-color:#6c757d1f}}@media print{html .alert.alert-gray-600 a:not(.btn),html .table-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-600 a:not(.btn){font-weight:700;color:#41464b}}@media print{html .alert.alert-gray-600 .btn:not([class*=btn-outline]),html .table-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-600 a:not(.btn){font-weight:700;color:#c4c8cb}}@media print{html .badge.bg-gray-600,html .toast.bg-gray-600,html .toast-header.bg-gray-600,html .progress-bar.bg-gray-600,html[data-netbox-color-mode=dark] .badge.bg-gray-600,html[data-netbox-color-mode=dark] .toast.bg-gray-600,html[data-netbox-color-mode=dark] .toast-header.bg-gray-600,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-600,html[data-netbox-color-mode=light] .badge.bg-gray-600,html[data-netbox-color-mode=light] .toast.bg-gray-600,html[data-netbox-color-mode=light] .toast-header.bg-gray-600,html[data-netbox-color-mode=light] .progress-bar.bg-gray-600{color:#fff}}@media print{html .bg-gray-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-700 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3034'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-700{color:#495057}}@media print{html .btn.btn-ghost-gray-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-700:hover{background-color:#4950571f}}@media print{html .alert.alert-gray-700 a:not(.btn),html .table-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-700 a:not(.btn){font-weight:700;color:#2c3034}}@media print{html .alert.alert-gray-700 .btn:not([class*=btn-outline]),html .table-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-700 a:not(.btn){font-weight:700;color:#b6b9bc}}@media print{html .badge.bg-gray-700,html .toast.bg-gray-700,html .toast-header.bg-gray-700,html .progress-bar.bg-gray-700,html[data-netbox-color-mode=dark] .badge.bg-gray-700,html[data-netbox-color-mode=dark] .toast.bg-gray-700,html[data-netbox-color-mode=dark] .toast-header.bg-gray-700,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-700,html[data-netbox-color-mode=light] .badge.bg-gray-700,html[data-netbox-color-mode=light] .toast.bg-gray-700,html[data-netbox-color-mode=light] .toast-header.bg-gray-700,html[data-netbox-color-mode=light] .progress-bar.bg-gray-700{color:#fff}}@media print{html .bg-gray-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-800 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2326'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-800{color:#343a40}}@media print{html .btn.btn-ghost-gray-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-800:hover{background-color:#343a401f}}@media print{html .alert.alert-gray-800 a:not(.btn),html .table-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-800 a:not(.btn){font-weight:700;color:#1f2326}}@media print{html .alert.alert-gray-800 .btn:not([class*=btn-outline]),html .table-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-800 a:not(.btn){font-weight:700;color:#aeb0b3}}@media print{html .badge.bg-gray-800,html .toast.bg-gray-800,html .toast-header.bg-gray-800,html .progress-bar.bg-gray-800,html[data-netbox-color-mode=dark] .badge.bg-gray-800,html[data-netbox-color-mode=dark] .toast.bg-gray-800,html[data-netbox-color-mode=dark] .toast-header.bg-gray-800,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-800,html[data-netbox-color-mode=light] .badge.bg-gray-800,html[data-netbox-color-mode=light] .toast.bg-gray-800,html[data-netbox-color-mode=light] .toast-header.bg-gray-800,html[data-netbox-color-mode=light] .progress-bar.bg-gray-800{color:#fff}}@media print{html .bg-gray-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-gray-900 button.btn-close,html[data-netbox-color-mode=light] .bg-gray-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23141619'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-gray-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-900{color:#212529}}@media print{html .btn.btn-ghost-gray-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-gray-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-gray-900:hover{background-color:#2125291f}}@media print{html .alert.alert-gray-900 a:not(.btn),html .table-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .table-gray-900 a:not(.btn){font-weight:700;color:#141619}}@media print{html .alert.alert-gray-900 .btn:not([class*=btn-outline]),html .table-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-gray-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-gray-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-gray-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-gray-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-gray-900 a:not(.btn){font-weight:700;color:#a6a8a9}}@media print{html .badge.bg-gray-900,html .toast.bg-gray-900,html .toast-header.bg-gray-900,html .progress-bar.bg-gray-900,html[data-netbox-color-mode=dark] .badge.bg-gray-900,html[data-netbox-color-mode=dark] .toast.bg-gray-900,html[data-netbox-color-mode=dark] .toast-header.bg-gray-900,html[data-netbox-color-mode=dark] .progress-bar.bg-gray-900,html[data-netbox-color-mode=light] .badge.bg-gray-900,html[data-netbox-color-mode=light] .toast.bg-gray-900,html[data-netbox-color-mode=light] .toast-header.bg-gray-900,html[data-netbox-color-mode=light] .progress-bar.bg-gray-900{color:#fff}}@media print{html .bg-red-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-100 button.btn-close,html[data-netbox-color-mode=light] .bg-red-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23635657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100,html[data-netbox-color-mode=light] .btn.btn-ghost-red-100{color:#f8d7da}}@media print{html .btn.btn-ghost-red-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-100:hover{background-color:#f8d7da1f}}@media print{html .alert.alert-red-100 a:not(.btn),html .table-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-100 a:not(.btn),html[data-netbox-color-mode=light] .table-red-100 a:not(.btn){font-weight:700;color:#635657}}@media print{html .alert.alert-red-100 .btn:not([class*=btn-outline]),html .table-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-100 a:not(.btn){font-weight:700;color:#635657}}@media print{html .badge.bg-red-100,html .toast.bg-red-100,html .toast-header.bg-red-100,html .progress-bar.bg-red-100,html[data-netbox-color-mode=dark] .badge.bg-red-100,html[data-netbox-color-mode=dark] .toast.bg-red-100,html[data-netbox-color-mode=dark] .toast-header.bg-red-100,html[data-netbox-color-mode=dark] .progress-bar.bg-red-100,html[data-netbox-color-mode=light] .badge.bg-red-100,html[data-netbox-color-mode=light] .toast.bg-red-100,html[data-netbox-color-mode=light] .toast-header.bg-red-100,html[data-netbox-color-mode=light] .progress-bar.bg-red-100{color:#000}}@media print{html .bg-red-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-200 button.btn-close,html[data-netbox-color-mode=light] .bg-red-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604648'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200,html[data-netbox-color-mode=light] .btn.btn-ghost-red-200{color:#f1aeb5}}@media print{html .btn.btn-ghost-red-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-200:hover{background-color:#f1aeb51f}}@media print{html .alert.alert-red-200 a:not(.btn),html .table-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-200 a:not(.btn),html[data-netbox-color-mode=light] .table-red-200 a:not(.btn){font-weight:700;color:#604648}}@media print{html .alert.alert-red-200 .btn:not([class*=btn-outline]),html .table-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-200 a:not(.btn){font-weight:700;color:#604648}}@media print{html .badge.bg-red-200,html .toast.bg-red-200,html .toast-header.bg-red-200,html .progress-bar.bg-red-200,html[data-netbox-color-mode=dark] .badge.bg-red-200,html[data-netbox-color-mode=dark] .toast.bg-red-200,html[data-netbox-color-mode=dark] .toast-header.bg-red-200,html[data-netbox-color-mode=dark] .progress-bar.bg-red-200,html[data-netbox-color-mode=light] .badge.bg-red-200,html[data-netbox-color-mode=light] .toast.bg-red-200,html[data-netbox-color-mode=light] .toast-header.bg-red-200,html[data-netbox-color-mode=light] .progress-bar.bg-red-200{color:#000}}@media print{html .bg-red-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-300 button.btn-close,html[data-netbox-color-mode=light] .bg-red-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238c5056'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300,html[data-netbox-color-mode=light] .btn.btn-ghost-red-300{color:#ea868f}}@media print{html .btn.btn-ghost-red-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-300:hover{background-color:#ea868f1f}}@media print{html .alert.alert-red-300 a:not(.btn),html .table-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-300 a:not(.btn),html[data-netbox-color-mode=light] .table-red-300 a:not(.btn){font-weight:700;color:#8c5056}}@media print{html .alert.alert-red-300 .btn:not([class*=btn-outline]),html .table-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-300 a:not(.btn){font-weight:700;color:#5e3639}}@media print{html .badge.bg-red-300,html .toast.bg-red-300,html .toast-header.bg-red-300,html .progress-bar.bg-red-300,html[data-netbox-color-mode=dark] .badge.bg-red-300,html[data-netbox-color-mode=dark] .toast.bg-red-300,html[data-netbox-color-mode=dark] .toast-header.bg-red-300,html[data-netbox-color-mode=dark] .progress-bar.bg-red-300,html[data-netbox-color-mode=light] .badge.bg-red-300,html[data-netbox-color-mode=light] .toast.bg-red-300,html[data-netbox-color-mode=light] .toast-header.bg-red-300,html[data-netbox-color-mode=light] .progress-bar.bg-red-300{color:#000}}@media print{html .bg-red-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-400 button.btn-close,html[data-netbox-color-mode=light] .bg-red-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23883840'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400,html[data-netbox-color-mode=light] .btn.btn-ghost-red-400{color:#e35d6a}}@media print{html .btn.btn-ghost-red-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-400:hover{background-color:#e35d6a1f}}@media print{html .alert.alert-red-400 a:not(.btn),html .table-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-400 a:not(.btn),html[data-netbox-color-mode=light] .table-red-400 a:not(.btn){font-weight:700;color:#883840}}@media print{html .alert.alert-red-400 .btn:not([class*=btn-outline]),html .table-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-400 a:not(.btn){font-weight:700;color:#5b252a}}@media print{html .badge.bg-red-400,html .toast.bg-red-400,html .toast-header.bg-red-400,html .progress-bar.bg-red-400,html[data-netbox-color-mode=dark] .badge.bg-red-400,html[data-netbox-color-mode=dark] .toast.bg-red-400,html[data-netbox-color-mode=dark] .toast-header.bg-red-400,html[data-netbox-color-mode=dark] .progress-bar.bg-red-400,html[data-netbox-color-mode=light] .badge.bg-red-400,html[data-netbox-color-mode=light] .toast.bg-red-400,html[data-netbox-color-mode=light] .toast-header.bg-red-400,html[data-netbox-color-mode=light] .progress-bar.bg-red-400{color:#000}}@media print{html .bg-red-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-500 button.btn-close,html[data-netbox-color-mode=light] .bg-red-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23842029'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500,html[data-netbox-color-mode=light] .btn.btn-ghost-red-500{color:#dc3545}}@media print{html .btn.btn-ghost-red-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-500:hover{background-color:#dc35451f}}@media print{html .alert.alert-red-500 a:not(.btn),html .table-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-500 a:not(.btn),html[data-netbox-color-mode=light] .table-red-500 a:not(.btn){font-weight:700;color:#842029}}@media print{html .alert.alert-red-500 .btn:not([class*=btn-outline]),html .table-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-500 a:not(.btn){font-weight:700;color:#f1aeb5}}@media print{html .badge.bg-red-500,html .toast.bg-red-500,html .toast-header.bg-red-500,html .progress-bar.bg-red-500,html[data-netbox-color-mode=dark] .badge.bg-red-500,html[data-netbox-color-mode=dark] .toast.bg-red-500,html[data-netbox-color-mode=dark] .toast-header.bg-red-500,html[data-netbox-color-mode=dark] .progress-bar.bg-red-500,html[data-netbox-color-mode=light] .badge.bg-red-500,html[data-netbox-color-mode=light] .toast.bg-red-500,html[data-netbox-color-mode=light] .toast-header.bg-red-500,html[data-netbox-color-mode=light] .progress-bar.bg-red-500{color:#fff}}@media print{html .bg-red-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-600 button.btn-close,html[data-netbox-color-mode=light] .bg-red-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a1921'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600,html[data-netbox-color-mode=light] .btn.btn-ghost-red-600{color:#b02a37}}@media print{html .btn.btn-ghost-red-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-600:hover{background-color:#b02a371f}}@media print{html .alert.alert-red-600 a:not(.btn),html .table-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-600 a:not(.btn),html[data-netbox-color-mode=light] .table-red-600 a:not(.btn){font-weight:700;color:#6a1921}}@media print{html .alert.alert-red-600 .btn:not([class*=btn-outline]),html .table-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-600 a:not(.btn){font-weight:700;color:#dfaaaf}}@media print{html .badge.bg-red-600,html .toast.bg-red-600,html .toast-header.bg-red-600,html .progress-bar.bg-red-600,html[data-netbox-color-mode=dark] .badge.bg-red-600,html[data-netbox-color-mode=dark] .toast.bg-red-600,html[data-netbox-color-mode=dark] .toast-header.bg-red-600,html[data-netbox-color-mode=dark] .progress-bar.bg-red-600,html[data-netbox-color-mode=light] .badge.bg-red-600,html[data-netbox-color-mode=light] .toast.bg-red-600,html[data-netbox-color-mode=light] .toast-header.bg-red-600,html[data-netbox-color-mode=light] .progress-bar.bg-red-600{color:#fff}}@media print{html .bg-red-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-700 button.btn-close,html[data-netbox-color-mode=light] .bg-red-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f1319'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700,html[data-netbox-color-mode=light] .btn.btn-ghost-red-700{color:#842029}}@media print{html .btn.btn-ghost-red-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-700:hover{background-color:#8420291f}}@media print{html .alert.alert-red-700 a:not(.btn),html .table-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-700 a:not(.btn),html[data-netbox-color-mode=light] .table-red-700 a:not(.btn){font-weight:700;color:#4f1319}}@media print{html .alert.alert-red-700 .btn:not([class*=btn-outline]),html .table-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-700 a:not(.btn){font-weight:700;color:#cea6a9}}@media print{html .badge.bg-red-700,html .toast.bg-red-700,html .toast-header.bg-red-700,html .progress-bar.bg-red-700,html[data-netbox-color-mode=dark] .badge.bg-red-700,html[data-netbox-color-mode=dark] .toast.bg-red-700,html[data-netbox-color-mode=dark] .toast-header.bg-red-700,html[data-netbox-color-mode=dark] .progress-bar.bg-red-700,html[data-netbox-color-mode=light] .badge.bg-red-700,html[data-netbox-color-mode=light] .toast.bg-red-700,html[data-netbox-color-mode=light] .toast-header.bg-red-700,html[data-netbox-color-mode=light] .progress-bar.bg-red-700{color:#fff}}@media print{html .bg-red-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-800 button.btn-close,html[data-netbox-color-mode=light] .bg-red-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23350d11'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800,html[data-netbox-color-mode=light] .btn.btn-ghost-red-800{color:#58151c}}@media print{html .btn.btn-ghost-red-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-800:hover{background-color:#58151c1f}}@media print{html .alert.alert-red-800 a:not(.btn),html .table-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-800 a:not(.btn),html[data-netbox-color-mode=light] .table-red-800 a:not(.btn){font-weight:700;color:#350d11}}@media print{html .alert.alert-red-800 .btn:not([class*=btn-outline]),html .table-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-800 a:not(.btn){font-weight:700;color:#bca1a4}}@media print{html .badge.bg-red-800,html .toast.bg-red-800,html .toast-header.bg-red-800,html .progress-bar.bg-red-800,html[data-netbox-color-mode=dark] .badge.bg-red-800,html[data-netbox-color-mode=dark] .toast.bg-red-800,html[data-netbox-color-mode=dark] .toast-header.bg-red-800,html[data-netbox-color-mode=dark] .progress-bar.bg-red-800,html[data-netbox-color-mode=light] .badge.bg-red-800,html[data-netbox-color-mode=light] .toast.bg-red-800,html[data-netbox-color-mode=light] .toast-header.bg-red-800,html[data-netbox-color-mode=light] .progress-bar.bg-red-800{color:#fff}}@media print{html .bg-red-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-red-900 button.btn-close,html[data-netbox-color-mode=light] .bg-red-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0708'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-red-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900,html[data-netbox-color-mode=light] .btn.btn-ghost-red-900{color:#2c0b0e}}@media print{html .btn.btn-ghost-red-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-red-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-red-900:hover{background-color:#2c0b0e1f}}@media print{html .alert.alert-red-900 a:not(.btn),html .table-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-red-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-red-900 a:not(.btn),html[data-netbox-color-mode=light] .table-red-900 a:not(.btn){font-weight:700;color:#1a0708}}@media print{html .alert.alert-red-900 .btn:not([class*=btn-outline]),html .table-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-red-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-red-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-red-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-red-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-red-900 a:not(.btn){font-weight:700;color:#ab9d9f}}@media print{html .badge.bg-red-900,html .toast.bg-red-900,html .toast-header.bg-red-900,html .progress-bar.bg-red-900,html[data-netbox-color-mode=dark] .badge.bg-red-900,html[data-netbox-color-mode=dark] .toast.bg-red-900,html[data-netbox-color-mode=dark] .toast-header.bg-red-900,html[data-netbox-color-mode=dark] .progress-bar.bg-red-900,html[data-netbox-color-mode=light] .badge.bg-red-900,html[data-netbox-color-mode=light] .toast.bg-red-900,html[data-netbox-color-mode=light] .toast-header.bg-red-900,html[data-netbox-color-mode=light] .progress-bar.bg-red-900{color:#fff}}@media print{html .bg-yellow-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-100 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666152'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-100{color:#fff3cd}}@media print{html .btn.btn-ghost-yellow-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-100:hover{background-color:#fff3cd1f}}@media print{html .alert.alert-yellow-100 a:not(.btn),html .table-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-100 a:not(.btn){font-weight:700;color:#666152}}@media print{html .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html .table-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-100 a:not(.btn){font-weight:700;color:#666152}}@media print{html .badge.bg-yellow-100,html .toast.bg-yellow-100,html .toast-header.bg-yellow-100,html .progress-bar.bg-yellow-100,html[data-netbox-color-mode=dark] .badge.bg-yellow-100,html[data-netbox-color-mode=dark] .toast.bg-yellow-100,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-100,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-100,html[data-netbox-color-mode=light] .badge.bg-yellow-100,html[data-netbox-color-mode=light] .toast.bg-yellow-100,html[data-netbox-color-mode=light] .toast-header.bg-yellow-100,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-100{color:#000}}@media print{html .bg-yellow-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-200 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665c3e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-200{color:#ffe69c}}@media print{html .btn.btn-ghost-yellow-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-200:hover{background-color:#ffe69c1f}}@media print{html .alert.alert-yellow-200 a:not(.btn),html .table-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}}@media print{html .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html .table-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-200 a:not(.btn){font-weight:700;color:#665c3e}}@media print{html .badge.bg-yellow-200,html .toast.bg-yellow-200,html .toast-header.bg-yellow-200,html .progress-bar.bg-yellow-200,html[data-netbox-color-mode=dark] .badge.bg-yellow-200,html[data-netbox-color-mode=dark] .toast.bg-yellow-200,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-200,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-200,html[data-netbox-color-mode=light] .badge.bg-yellow-200,html[data-netbox-color-mode=light] .toast.bg-yellow-200,html[data-netbox-color-mode=light] .toast-header.bg-yellow-200,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-200{color:#000}}@media print{html .bg-yellow-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-300 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366572a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-300{color:#ffda6a}}@media print{html .btn.btn-ghost-yellow-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-300:hover{background-color:#ffda6a1f}}@media print{html .alert.alert-yellow-300 a:not(.btn),html .table-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-300 a:not(.btn){font-weight:700;color:#66572a}}@media print{html .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html .table-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-300 a:not(.btn){font-weight:700;color:#66572a}}@media print{html .badge.bg-yellow-300,html .toast.bg-yellow-300,html .toast-header.bg-yellow-300,html .progress-bar.bg-yellow-300,html[data-netbox-color-mode=dark] .badge.bg-yellow-300,html[data-netbox-color-mode=dark] .toast.bg-yellow-300,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-300,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-300,html[data-netbox-color-mode=light] .badge.bg-yellow-300,html[data-netbox-color-mode=light] .toast.bg-yellow-300,html[data-netbox-color-mode=light] .toast-header.bg-yellow-300,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-300{color:#000}}@media print{html .bg-yellow-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-400 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23665217'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-400{color:#ffcd39}}@media print{html .btn.btn-ghost-yellow-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-400:hover{background-color:#ffcd391f}}@media print{html .alert.alert-yellow-400 a:not(.btn),html .table-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-400 a:not(.btn){font-weight:700;color:#665217}}@media print{html .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html .table-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-400 a:not(.btn){font-weight:700;color:#665217}}@media print{html .badge.bg-yellow-400,html .toast.bg-yellow-400,html .toast-header.bg-yellow-400,html .progress-bar.bg-yellow-400,html[data-netbox-color-mode=dark] .badge.bg-yellow-400,html[data-netbox-color-mode=dark] .toast.bg-yellow-400,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-400,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-400,html[data-netbox-color-mode=light] .badge.bg-yellow-400,html[data-netbox-color-mode=light] .toast.bg-yellow-400,html[data-netbox-color-mode=light] .toast-header.bg-yellow-400,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-400{color:#000}}@media print{html .bg-yellow-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-500 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664d03'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-500{color:#ffc107}}@media print{html .btn.btn-ghost-yellow-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-500:hover{background-color:#ffc1071f}}@media print{html .alert.alert-yellow-500 a:not(.btn),html .table-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-500 a:not(.btn){font-weight:700;color:#664d03}}@media print{html .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html .table-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-500 a:not(.btn){font-weight:700;color:#664d03}}@media print{html .badge.bg-yellow-500,html .toast.bg-yellow-500,html .toast-header.bg-yellow-500,html .progress-bar.bg-yellow-500,html[data-netbox-color-mode=dark] .badge.bg-yellow-500,html[data-netbox-color-mode=dark] .toast.bg-yellow-500,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-500,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-500,html[data-netbox-color-mode=light] .badge.bg-yellow-500,html[data-netbox-color-mode=light] .toast.bg-yellow-500,html[data-netbox-color-mode=light] .toast-header.bg-yellow-500,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-500{color:#000}}@media print{html .bg-yellow-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-600 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a5c04'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-600{color:#cc9a06}}@media print{html .btn.btn-ghost-yellow-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-600:hover{background-color:#cc9a061f}}@media print{html .alert.alert-yellow-600 a:not(.btn),html .table-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-600 a:not(.btn){font-weight:700;color:#7a5c04}}@media print{html .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html .table-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-600 a:not(.btn){font-weight:700;color:#523e02}}@media print{html .badge.bg-yellow-600,html .toast.bg-yellow-600,html .toast-header.bg-yellow-600,html .progress-bar.bg-yellow-600,html[data-netbox-color-mode=dark] .badge.bg-yellow-600,html[data-netbox-color-mode=dark] .toast.bg-yellow-600,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-600,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-600,html[data-netbox-color-mode=light] .badge.bg-yellow-600,html[data-netbox-color-mode=light] .toast.bg-yellow-600,html[data-netbox-color-mode=light] .toast-header.bg-yellow-600,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-600{color:#000}}@media print{html .bg-yellow-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-700 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c4602'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-700{color:#997404}}@media print{html .btn.btn-ghost-yellow-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-700:hover{background-color:#9974041f}}@media print{html .alert.alert-yellow-700 a:not(.btn),html .table-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-700 a:not(.btn){font-weight:700;color:#5c4602}}@media print{html .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html .table-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-700 a:not(.btn){font-weight:700;color:#3d2e02}}@media print{html .badge.bg-yellow-700,html .toast.bg-yellow-700,html .toast-header.bg-yellow-700,html .progress-bar.bg-yellow-700,html[data-netbox-color-mode=dark] .badge.bg-yellow-700,html[data-netbox-color-mode=dark] .toast.bg-yellow-700,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-700,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-700,html[data-netbox-color-mode=light] .badge.bg-yellow-700,html[data-netbox-color-mode=light] .toast.bg-yellow-700,html[data-netbox-color-mode=light] .toast-header.bg-yellow-700,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-700{color:#000}}@media print{html .bg-yellow-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-800 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d2e02'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-800{color:#664d03}}@media print{html .btn.btn-ghost-yellow-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-800:hover{background-color:#664d031f}}@media print{html .alert.alert-yellow-800 a:not(.btn),html .table-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-800 a:not(.btn){font-weight:700;color:#3d2e02}}@media print{html .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html .table-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-800 a:not(.btn){font-weight:700;color:#c2b89a}}@media print{html .badge.bg-yellow-800,html .toast.bg-yellow-800,html .toast-header.bg-yellow-800,html .progress-bar.bg-yellow-800,html[data-netbox-color-mode=dark] .badge.bg-yellow-800,html[data-netbox-color-mode=dark] .toast.bg-yellow-800,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-800,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-800,html[data-netbox-color-mode=light] .badge.bg-yellow-800,html[data-netbox-color-mode=light] .toast.bg-yellow-800,html[data-netbox-color-mode=light] .toast-header.bg-yellow-800,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-800{color:#fff}}@media print{html .bg-yellow-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-yellow-900 button.btn-close,html[data-netbox-color-mode=light] .bg-yellow-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f1701'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-yellow-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-900{color:#332701}}@media print{html .btn.btn-ghost-yellow-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-yellow-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-yellow-900:hover{background-color:#3327011f}}@media print{html .alert.alert-yellow-900 a:not(.btn),html .table-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .table-yellow-900 a:not(.btn){font-weight:700;color:#1f1701}}@media print{html .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html .table-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-yellow-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-yellow-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-yellow-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-yellow-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-yellow-900 a:not(.btn){font-weight:700;color:#ada999}}@media print{html .badge.bg-yellow-900,html .toast.bg-yellow-900,html .toast-header.bg-yellow-900,html .progress-bar.bg-yellow-900,html[data-netbox-color-mode=dark] .badge.bg-yellow-900,html[data-netbox-color-mode=dark] .toast.bg-yellow-900,html[data-netbox-color-mode=dark] .toast-header.bg-yellow-900,html[data-netbox-color-mode=dark] .progress-bar.bg-yellow-900,html[data-netbox-color-mode=light] .badge.bg-yellow-900,html[data-netbox-color-mode=light] .toast.bg-yellow-900,html[data-netbox-color-mode=light] .toast-header.bg-yellow-900,html[data-netbox-color-mode=light] .progress-bar.bg-yellow-900{color:#fff}}@media print{html .bg-green-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-100 button.btn-close,html[data-netbox-color-mode=light] .bg-green-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23545c58'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100,html[data-netbox-color-mode=light] .btn.btn-ghost-green-100{color:#d1e7dd}}@media print{html .btn.btn-ghost-green-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-100:hover{background-color:#d1e7dd1f}}@media print{html .alert.alert-green-100 a:not(.btn),html .table-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-100 a:not(.btn),html[data-netbox-color-mode=light] .table-green-100 a:not(.btn){font-weight:700;color:#545c58}}@media print{html .alert.alert-green-100 .btn:not([class*=btn-outline]),html .table-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-100 a:not(.btn){font-weight:700;color:#545c58}}@media print{html .badge.bg-green-100,html .toast.bg-green-100,html .toast-header.bg-green-100,html .progress-bar.bg-green-100,html[data-netbox-color-mode=dark] .badge.bg-green-100,html[data-netbox-color-mode=dark] .toast.bg-green-100,html[data-netbox-color-mode=dark] .toast-header.bg-green-100,html[data-netbox-color-mode=dark] .progress-bar.bg-green-100,html[data-netbox-color-mode=light] .badge.bg-green-100,html[data-netbox-color-mode=light] .toast.bg-green-100,html[data-netbox-color-mode=light] .toast-header.bg-green-100,html[data-netbox-color-mode=light] .progress-bar.bg-green-100{color:#000}}@media print{html .bg-green-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-200 button.btn-close,html[data-netbox-color-mode=light] .bg-green-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341534b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200,html[data-netbox-color-mode=light] .btn.btn-ghost-green-200{color:#a3cfbb}}@media print{html .btn.btn-ghost-green-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-200:hover{background-color:#a3cfbb1f}}@media print{html .alert.alert-green-200 a:not(.btn),html .table-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-200 a:not(.btn),html[data-netbox-color-mode=light] .table-green-200 a:not(.btn){font-weight:700;color:#41534b}}@media print{html .alert.alert-green-200 .btn:not([class*=btn-outline]),html .table-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-200 a:not(.btn){font-weight:700;color:#41534b}}@media print{html .badge.bg-green-200,html .toast.bg-green-200,html .toast-header.bg-green-200,html .progress-bar.bg-green-200,html[data-netbox-color-mode=dark] .badge.bg-green-200,html[data-netbox-color-mode=dark] .toast.bg-green-200,html[data-netbox-color-mode=dark] .toast-header.bg-green-200,html[data-netbox-color-mode=dark] .progress-bar.bg-green-200,html[data-netbox-color-mode=light] .badge.bg-green-200,html[data-netbox-color-mode=light] .toast.bg-green-200,html[data-netbox-color-mode=light] .toast-header.bg-green-200,html[data-netbox-color-mode=light] .progress-bar.bg-green-200{color:#000}}@media print{html .bg-green-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-300 button.btn-close,html[data-netbox-color-mode=light] .bg-green-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23466e5b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300,html[data-netbox-color-mode=light] .btn.btn-ghost-green-300{color:#75b798}}@media print{html .btn.btn-ghost-green-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-300:hover{background-color:#75b7981f}}@media print{html .alert.alert-green-300 a:not(.btn),html .table-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-300 a:not(.btn),html[data-netbox-color-mode=light] .table-green-300 a:not(.btn){font-weight:700;color:#466e5b}}@media print{html .alert.alert-green-300 .btn:not([class*=btn-outline]),html .table-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-300 a:not(.btn){font-weight:700;color:#2f493d}}@media print{html .badge.bg-green-300,html .toast.bg-green-300,html .toast-header.bg-green-300,html .progress-bar.bg-green-300,html[data-netbox-color-mode=dark] .badge.bg-green-300,html[data-netbox-color-mode=dark] .toast.bg-green-300,html[data-netbox-color-mode=dark] .toast-header.bg-green-300,html[data-netbox-color-mode=dark] .progress-bar.bg-green-300,html[data-netbox-color-mode=light] .badge.bg-green-300,html[data-netbox-color-mode=light] .toast.bg-green-300,html[data-netbox-color-mode=light] .toast-header.bg-green-300,html[data-netbox-color-mode=light] .progress-bar.bg-green-300{color:#000}}@media print{html .bg-green-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-400 button.btn-close,html[data-netbox-color-mode=light] .bg-green-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b5f47'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400,html[data-netbox-color-mode=light] .btn.btn-ghost-green-400{color:#479f76}}@media print{html .btn.btn-ghost-green-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-400:hover{background-color:#479f761f}}@media print{html .alert.alert-green-400 a:not(.btn),html .table-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-400 a:not(.btn),html[data-netbox-color-mode=light] .table-green-400 a:not(.btn){font-weight:700;color:#2b5f47}}@media print{html .alert.alert-green-400 .btn:not([class*=btn-outline]),html .table-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-400 a:not(.btn){font-weight:700;color:#1c402f}}@media print{html .badge.bg-green-400,html .toast.bg-green-400,html .toast-header.bg-green-400,html .progress-bar.bg-green-400,html[data-netbox-color-mode=dark] .badge.bg-green-400,html[data-netbox-color-mode=dark] .toast.bg-green-400,html[data-netbox-color-mode=dark] .toast-header.bg-green-400,html[data-netbox-color-mode=dark] .progress-bar.bg-green-400,html[data-netbox-color-mode=light] .badge.bg-green-400,html[data-netbox-color-mode=light] .toast.bg-green-400,html[data-netbox-color-mode=light] .toast-header.bg-green-400,html[data-netbox-color-mode=light] .progress-bar.bg-green-400{color:#000}}@media print{html .bg-green-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-500 button.btn-close,html[data-netbox-color-mode=light] .bg-green-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f5132'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500,html[data-netbox-color-mode=light] .btn.btn-ghost-green-500{color:#198754}}@media print{html .btn.btn-ghost-green-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-500:hover{background-color:#1987541f}}@media print{html .alert.alert-green-500 a:not(.btn),html .table-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-500 a:not(.btn),html[data-netbox-color-mode=light] .table-green-500 a:not(.btn){font-weight:700;color:#0f5132}}@media print{html .alert.alert-green-500 .btn:not([class*=btn-outline]),html .table-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-500 a:not(.btn){font-weight:700;color:#a3cfbb}}@media print{html .badge.bg-green-500,html .toast.bg-green-500,html .toast-header.bg-green-500,html .progress-bar.bg-green-500,html[data-netbox-color-mode=dark] .badge.bg-green-500,html[data-netbox-color-mode=dark] .toast.bg-green-500,html[data-netbox-color-mode=dark] .toast-header.bg-green-500,html[data-netbox-color-mode=dark] .progress-bar.bg-green-500,html[data-netbox-color-mode=light] .badge.bg-green-500,html[data-netbox-color-mode=light] .toast.bg-green-500,html[data-netbox-color-mode=light] .toast-header.bg-green-500,html[data-netbox-color-mode=light] .progress-bar.bg-green-500{color:#fff}}@media print{html .bg-green-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-600 button.btn-close,html[data-netbox-color-mode=light] .bg-green-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c4128'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600,html[data-netbox-color-mode=light] .btn.btn-ghost-green-600{color:#146c43}}@media print{html .btn.btn-ghost-green-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-600:hover{background-color:#146c431f}}@media print{html .alert.alert-green-600 a:not(.btn),html .table-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-600 a:not(.btn),html[data-netbox-color-mode=light] .table-green-600 a:not(.btn){font-weight:700;color:#0c4128}}@media print{html .alert.alert-green-600 .btn:not([class*=btn-outline]),html .table-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-600 a:not(.btn){font-weight:700;color:#a1c4b4}}@media print{html .badge.bg-green-600,html .toast.bg-green-600,html .toast-header.bg-green-600,html .progress-bar.bg-green-600,html[data-netbox-color-mode=dark] .badge.bg-green-600,html[data-netbox-color-mode=dark] .toast.bg-green-600,html[data-netbox-color-mode=dark] .toast-header.bg-green-600,html[data-netbox-color-mode=dark] .progress-bar.bg-green-600,html[data-netbox-color-mode=light] .badge.bg-green-600,html[data-netbox-color-mode=light] .toast.bg-green-600,html[data-netbox-color-mode=light] .toast-header.bg-green-600,html[data-netbox-color-mode=light] .progress-bar.bg-green-600{color:#fff}}@media print{html .bg-green-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-700 button.btn-close,html[data-netbox-color-mode=light] .bg-green-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2309311e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700,html[data-netbox-color-mode=light] .btn.btn-ghost-green-700{color:#0f5132}}@media print{html .btn.btn-ghost-green-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-700:hover{background-color:#0f51321f}}@media print{html .alert.alert-green-700 a:not(.btn),html .table-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-700 a:not(.btn),html[data-netbox-color-mode=light] .table-green-700 a:not(.btn){font-weight:700;color:#09311e}}@media print{html .alert.alert-green-700 .btn:not([class*=btn-outline]),html .table-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-700 a:not(.btn){font-weight:700;color:#9fb9ad}}@media print{html .badge.bg-green-700,html .toast.bg-green-700,html .toast-header.bg-green-700,html .progress-bar.bg-green-700,html[data-netbox-color-mode=dark] .badge.bg-green-700,html[data-netbox-color-mode=dark] .toast.bg-green-700,html[data-netbox-color-mode=dark] .toast-header.bg-green-700,html[data-netbox-color-mode=dark] .progress-bar.bg-green-700,html[data-netbox-color-mode=light] .badge.bg-green-700,html[data-netbox-color-mode=light] .toast.bg-green-700,html[data-netbox-color-mode=light] .toast-header.bg-green-700,html[data-netbox-color-mode=light] .progress-bar.bg-green-700{color:#fff}}@media print{html .bg-green-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-800 button.btn-close,html[data-netbox-color-mode=light] .bg-green-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23062014'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800,html[data-netbox-color-mode=light] .btn.btn-ghost-green-800{color:#0a3622}}@media print{html .btn.btn-ghost-green-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-800:hover{background-color:#0a36221f}}@media print{html .alert.alert-green-800 a:not(.btn),html .table-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-800 a:not(.btn),html[data-netbox-color-mode=light] .table-green-800 a:not(.btn){font-weight:700;color:#062014}}@media print{html .alert.alert-green-800 .btn:not([class*=btn-outline]),html .table-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-800 a:not(.btn){font-weight:700;color:#9dafa7}}@media print{html .badge.bg-green-800,html .toast.bg-green-800,html .toast-header.bg-green-800,html .progress-bar.bg-green-800,html[data-netbox-color-mode=dark] .badge.bg-green-800,html[data-netbox-color-mode=dark] .toast.bg-green-800,html[data-netbox-color-mode=dark] .toast-header.bg-green-800,html[data-netbox-color-mode=dark] .progress-bar.bg-green-800,html[data-netbox-color-mode=light] .badge.bg-green-800,html[data-netbox-color-mode=light] .toast.bg-green-800,html[data-netbox-color-mode=light] .toast-header.bg-green-800,html[data-netbox-color-mode=light] .progress-bar.bg-green-800{color:#fff}}@media print{html .bg-green-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-green-900 button.btn-close,html[data-netbox-color-mode=light] .bg-green-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303100a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-green-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900,html[data-netbox-color-mode=light] .btn.btn-ghost-green-900{color:#051b11}}@media print{html .btn.btn-ghost-green-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-green-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-green-900:hover{background-color:#051b111f}}@media print{html .alert.alert-green-900 a:not(.btn),html .table-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-green-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-green-900 a:not(.btn),html[data-netbox-color-mode=light] .table-green-900 a:not(.btn){font-weight:700;color:#03100a}}@media print{html .alert.alert-green-900 .btn:not([class*=btn-outline]),html .table-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-green-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-green-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-green-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-green-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-green-900 a:not(.btn){font-weight:700;color:#9ba4a0}}@media print{html .badge.bg-green-900,html .toast.bg-green-900,html .toast-header.bg-green-900,html .progress-bar.bg-green-900,html[data-netbox-color-mode=dark] .badge.bg-green-900,html[data-netbox-color-mode=dark] .toast.bg-green-900,html[data-netbox-color-mode=dark] .toast-header.bg-green-900,html[data-netbox-color-mode=dark] .progress-bar.bg-green-900,html[data-netbox-color-mode=light] .badge.bg-green-900,html[data-netbox-color-mode=light] .toast.bg-green-900,html[data-netbox-color-mode=light] .toast-header.bg-green-900,html[data-netbox-color-mode=light] .progress-bar.bg-green-900{color:#fff}}@media print{html .bg-blue-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-100 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23535a66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-100{color:#cfe2ff}}@media print{html .btn.btn-ghost-blue-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-100:hover{background-color:#cfe2ff1f}}@media print{html .alert.alert-blue-100 a:not(.btn),html .table-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-100 a:not(.btn){font-weight:700;color:#535a66}}@media print{html .alert.alert-blue-100 .btn:not([class*=btn-outline]),html .table-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-100 a:not(.btn){font-weight:700;color:#535a66}}@media print{html .badge.bg-blue-100,html .toast.bg-blue-100,html .toast-header.bg-blue-100,html .progress-bar.bg-blue-100,html[data-netbox-color-mode=dark] .badge.bg-blue-100,html[data-netbox-color-mode=dark] .toast.bg-blue-100,html[data-netbox-color-mode=dark] .toast-header.bg-blue-100,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-100,html[data-netbox-color-mode=light] .badge.bg-blue-100,html[data-netbox-color-mode=light] .toast.bg-blue-100,html[data-netbox-color-mode=light] .toast-header.bg-blue-100,html[data-netbox-color-mode=light] .progress-bar.bg-blue-100{color:#000}}@media print{html .bg-blue-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-200 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f4f66'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-200{color:#9ec5fe}}@media print{html .btn.btn-ghost-blue-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-200:hover{background-color:#9ec5fe1f}}@media print{html .alert.alert-blue-200 a:not(.btn),html .table-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}}@media print{html .alert.alert-blue-200 .btn:not([class*=btn-outline]),html .table-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-200 a:not(.btn){font-weight:700;color:#3f4f66}}@media print{html .badge.bg-blue-200,html .toast.bg-blue-200,html .toast-header.bg-blue-200,html .progress-bar.bg-blue-200,html[data-netbox-color-mode=dark] .badge.bg-blue-200,html[data-netbox-color-mode=dark] .toast.bg-blue-200,html[data-netbox-color-mode=dark] .toast-header.bg-blue-200,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-200,html[data-netbox-color-mode=light] .badge.bg-blue-200,html[data-netbox-color-mode=light] .toast.bg-blue-200,html[data-netbox-color-mode=light] .toast-header.bg-blue-200,html[data-netbox-color-mode=light] .progress-bar.bg-blue-200{color:#000}}@media print{html .bg-blue-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-300 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23426598'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-300{color:#6ea8fe}}@media print{html .btn.btn-ghost-blue-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-300:hover{background-color:#6ea8fe1f}}@media print{html .alert.alert-blue-300 a:not(.btn),html .table-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-300 a:not(.btn){font-weight:700;color:#426598}}@media print{html .alert.alert-blue-300 .btn:not([class*=btn-outline]),html .table-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-300 a:not(.btn){font-weight:700;color:#2c4366}}@media print{html .badge.bg-blue-300,html .toast.bg-blue-300,html .toast-header.bg-blue-300,html .progress-bar.bg-blue-300,html[data-netbox-color-mode=dark] .badge.bg-blue-300,html[data-netbox-color-mode=dark] .toast.bg-blue-300,html[data-netbox-color-mode=dark] .toast-header.bg-blue-300,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-300,html[data-netbox-color-mode=light] .badge.bg-blue-300,html[data-netbox-color-mode=light] .toast.bg-blue-300,html[data-netbox-color-mode=light] .toast-header.bg-blue-300,html[data-netbox-color-mode=light] .progress-bar.bg-blue-300{color:#000}}@media print{html .bg-blue-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-400 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23255398'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-400{color:#3d8bfd}}@media print{html .btn.btn-ghost-blue-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-400:hover{background-color:#3d8bfd1f}}@media print{html .alert.alert-blue-400 a:not(.btn),html .table-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-400 a:not(.btn){font-weight:700;color:#255398}}@media print{html .alert.alert-blue-400 .btn:not([class*=btn-outline]),html .table-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-400 a:not(.btn){font-weight:700;color:#183865}}@media print{html .badge.bg-blue-400,html .toast.bg-blue-400,html .toast-header.bg-blue-400,html .progress-bar.bg-blue-400,html[data-netbox-color-mode=dark] .badge.bg-blue-400,html[data-netbox-color-mode=dark] .toast.bg-blue-400,html[data-netbox-color-mode=dark] .toast-header.bg-blue-400,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-400,html[data-netbox-color-mode=light] .badge.bg-blue-400,html[data-netbox-color-mode=light] .toast.bg-blue-400,html[data-netbox-color-mode=light] .toast-header.bg-blue-400,html[data-netbox-color-mode=light] .progress-bar.bg-blue-400{color:#000}}@media print{html .bg-blue-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-500 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23084298'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-500{color:#0d6efd}}@media print{html .btn.btn-ghost-blue-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-500:hover{background-color:#0d6efd1f}}@media print{html .alert.alert-blue-500 a:not(.btn),html .table-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-500 a:not(.btn){font-weight:700;color:#084298}}@media print{html .alert.alert-blue-500 .btn:not([class*=btn-outline]),html .table-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-500 a:not(.btn){font-weight:700;color:#9ec5fe}}@media print{html .badge.bg-blue-500,html .toast.bg-blue-500,html .toast-header.bg-blue-500,html .progress-bar.bg-blue-500,html[data-netbox-color-mode=dark] .badge.bg-blue-500,html[data-netbox-color-mode=dark] .toast.bg-blue-500,html[data-netbox-color-mode=dark] .toast-header.bg-blue-500,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-500,html[data-netbox-color-mode=light] .badge.bg-blue-500,html[data-netbox-color-mode=light] .toast.bg-blue-500,html[data-netbox-color-mode=light] .toast-header.bg-blue-500,html[data-netbox-color-mode=light] .progress-bar.bg-blue-500{color:#fff}}@media print{html .bg-blue-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-600 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063579'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-600{color:#0a58ca}}@media print{html .btn.btn-ghost-blue-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-600:hover{background-color:#0a58ca1f}}@media print{html .alert.alert-blue-600 a:not(.btn),html .table-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-600 a:not(.btn){font-weight:700;color:#063579}}@media print{html .alert.alert-blue-600 .btn:not([class*=btn-outline]),html .table-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-600 a:not(.btn){font-weight:700;color:#9dbcea}}@media print{html .badge.bg-blue-600,html .toast.bg-blue-600,html .toast-header.bg-blue-600,html .progress-bar.bg-blue-600,html[data-netbox-color-mode=dark] .badge.bg-blue-600,html[data-netbox-color-mode=dark] .toast.bg-blue-600,html[data-netbox-color-mode=dark] .toast-header.bg-blue-600,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-600,html[data-netbox-color-mode=light] .badge.bg-blue-600,html[data-netbox-color-mode=light] .toast.bg-blue-600,html[data-netbox-color-mode=light] .toast-header.bg-blue-600,html[data-netbox-color-mode=light] .progress-bar.bg-blue-600{color:#fff}}@media print{html .bg-blue-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-700 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2305285b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-700{color:#084298}}@media print{html .btn.btn-ghost-blue-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-700:hover{background-color:#0842981f}}@media print{html .alert.alert-blue-700 a:not(.btn),html .table-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-700 a:not(.btn){font-weight:700;color:#05285b}}@media print{html .alert.alert-blue-700 .btn:not([class*=btn-outline]),html .table-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-700 a:not(.btn){font-weight:700;color:#9cb3d6}}@media print{html .badge.bg-blue-700,html .toast.bg-blue-700,html .toast-header.bg-blue-700,html .progress-bar.bg-blue-700,html[data-netbox-color-mode=dark] .badge.bg-blue-700,html[data-netbox-color-mode=dark] .toast.bg-blue-700,html[data-netbox-color-mode=dark] .toast-header.bg-blue-700,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-700,html[data-netbox-color-mode=light] .badge.bg-blue-700,html[data-netbox-color-mode=light] .toast.bg-blue-700,html[data-netbox-color-mode=light] .toast-header.bg-blue-700,html[data-netbox-color-mode=light] .progress-bar.bg-blue-700{color:#fff}}@media print{html .bg-blue-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-800 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031a3d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-800{color:#052c65}}@media print{html .btn.btn-ghost-blue-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-800:hover{background-color:#052c651f}}@media print{html .alert.alert-blue-800 a:not(.btn),html .table-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-800 a:not(.btn){font-weight:700;color:#031a3d}}@media print{html .alert.alert-blue-800 .btn:not([class*=btn-outline]),html .table-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-800 a:not(.btn){font-weight:700;color:#9babc1}}@media print{html .badge.bg-blue-800,html .toast.bg-blue-800,html .toast-header.bg-blue-800,html .progress-bar.bg-blue-800,html[data-netbox-color-mode=dark] .badge.bg-blue-800,html[data-netbox-color-mode=dark] .toast.bg-blue-800,html[data-netbox-color-mode=dark] .toast-header.bg-blue-800,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-800,html[data-netbox-color-mode=light] .badge.bg-blue-800,html[data-netbox-color-mode=light] .toast.bg-blue-800,html[data-netbox-color-mode=light] .toast-header.bg-blue-800,html[data-netbox-color-mode=light] .progress-bar.bg-blue-800{color:#fff}}@media print{html .bg-blue-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-blue-900 button.btn-close,html[data-netbox-color-mode=light] .bg-blue-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23020d1f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-blue-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-900{color:#031633}}@media print{html .btn.btn-ghost-blue-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-blue-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-blue-900:hover{background-color:#0316331f}}@media print{html .alert.alert-blue-900 a:not(.btn),html .table-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .table-blue-900 a:not(.btn){font-weight:700;color:#020d1f}}@media print{html .alert.alert-blue-900 .btn:not([class*=btn-outline]),html .table-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-blue-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-blue-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-blue-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-blue-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-blue-900 a:not(.btn){font-weight:700;color:#9aa2ad}}@media print{html .badge.bg-blue-900,html .toast.bg-blue-900,html .toast-header.bg-blue-900,html .progress-bar.bg-blue-900,html[data-netbox-color-mode=dark] .badge.bg-blue-900,html[data-netbox-color-mode=dark] .toast.bg-blue-900,html[data-netbox-color-mode=dark] .toast-header.bg-blue-900,html[data-netbox-color-mode=dark] .progress-bar.bg-blue-900,html[data-netbox-color-mode=light] .badge.bg-blue-900,html[data-netbox-color-mode=light] .toast.bg-blue-900,html[data-netbox-color-mode=light] .toast-header.bg-blue-900,html[data-netbox-color-mode=light] .progress-bar.bg-blue-900{color:#fff}}@media print{html .bg-cyan-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-100 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23536265'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-100{color:#cff4fc}}@media print{html .btn.btn-ghost-cyan-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-100:hover{background-color:#cff4fc1f}}@media print{html .alert.alert-cyan-100 a:not(.btn),html .table-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-100 a:not(.btn){font-weight:700;color:#536265}}@media print{html .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html .table-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-100 a:not(.btn){font-weight:700;color:#536265}}@media print{html .badge.bg-cyan-100,html .toast.bg-cyan-100,html .toast-header.bg-cyan-100,html .progress-bar.bg-cyan-100,html[data-netbox-color-mode=dark] .badge.bg-cyan-100,html[data-netbox-color-mode=dark] .toast.bg-cyan-100,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-100,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-100,html[data-netbox-color-mode=light] .badge.bg-cyan-100,html[data-netbox-color-mode=light] .toast.bg-cyan-100,html[data-netbox-color-mode=light] .toast-header.bg-cyan-100,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-100{color:#000}}@media print{html .bg-cyan-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-200 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5e64'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-200{color:#9eeaf9}}@media print{html .btn.btn-ghost-cyan-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-200:hover{background-color:#9eeaf91f}}@media print{html .alert.alert-cyan-200 a:not(.btn),html .table-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}}@media print{html .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html .table-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-200 a:not(.btn){font-weight:700;color:#3f5e64}}@media print{html .badge.bg-cyan-200,html .toast.bg-cyan-200,html .toast-header.bg-cyan-200,html .progress-bar.bg-cyan-200,html[data-netbox-color-mode=dark] .badge.bg-cyan-200,html[data-netbox-color-mode=dark] .toast.bg-cyan-200,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-200,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-200,html[data-netbox-color-mode=light] .badge.bg-cyan-200,html[data-netbox-color-mode=light] .toast.bg-cyan-200,html[data-netbox-color-mode=light] .toast-header.bg-cyan-200,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-200{color:#000}}@media print{html .bg-cyan-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-300 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c5962'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-300{color:#6edff6}}@media print{html .btn.btn-ghost-cyan-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-300:hover{background-color:#6edff61f}}@media print{html .alert.alert-cyan-300 a:not(.btn),html .table-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}}@media print{html .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html .table-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-300 a:not(.btn){font-weight:700;color:#2c5962}}@media print{html .badge.bg-cyan-300,html .toast.bg-cyan-300,html .toast-header.bg-cyan-300,html .progress-bar.bg-cyan-300,html[data-netbox-color-mode=dark] .badge.bg-cyan-300,html[data-netbox-color-mode=dark] .toast.bg-cyan-300,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-300,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-300,html[data-netbox-color-mode=light] .badge.bg-cyan-300,html[data-netbox-color-mode=light] .toast.bg-cyan-300,html[data-netbox-color-mode=light] .toast-header.bg-cyan-300,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-300{color:#000}}@media print{html .bg-cyan-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-400 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23185561'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-400{color:#3dd5f3}}@media print{html .btn.btn-ghost-cyan-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-400:hover{background-color:#3dd5f31f}}@media print{html .alert.alert-cyan-400 a:not(.btn),html .table-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-400 a:not(.btn){font-weight:700;color:#185561}}@media print{html .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html .table-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-400 a:not(.btn){font-weight:700;color:#185561}}@media print{html .badge.bg-cyan-400,html .toast.bg-cyan-400,html .toast-header.bg-cyan-400,html .progress-bar.bg-cyan-400,html[data-netbox-color-mode=dark] .badge.bg-cyan-400,html[data-netbox-color-mode=dark] .toast.bg-cyan-400,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-400,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-400,html[data-netbox-color-mode=light] .badge.bg-cyan-400,html[data-netbox-color-mode=light] .toast.bg-cyan-400,html[data-netbox-color-mode=light] .toast-header.bg-cyan-400,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-400{color:#000}}@media print{html .bg-cyan-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-500 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23055160'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-500{color:#0dcaf0}}@media print{html .btn.btn-ghost-cyan-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-500:hover{background-color:#0dcaf01f}}@media print{html .alert.alert-cyan-500 a:not(.btn),html .table-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-500 a:not(.btn){font-weight:700;color:#055160}}@media print{html .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html .table-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-500 a:not(.btn){font-weight:700;color:#055160}}@media print{html .badge.bg-cyan-500,html .toast.bg-cyan-500,html .toast-header.bg-cyan-500,html .progress-bar.bg-cyan-500,html[data-netbox-color-mode=dark] .badge.bg-cyan-500,html[data-netbox-color-mode=dark] .toast.bg-cyan-500,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-500,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-500,html[data-netbox-color-mode=light] .badge.bg-cyan-500,html[data-netbox-color-mode=light] .toast.bg-cyan-500,html[data-netbox-color-mode=light] .toast-header.bg-cyan-500,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-500{color:#000}}@media print{html .bg-cyan-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-600 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23066173'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-600{color:#0aa2c0}}@media print{html .btn.btn-ghost-cyan-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-600:hover{background-color:#0aa2c01f}}@media print{html .alert.alert-cyan-600 a:not(.btn),html .table-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-600 a:not(.btn){font-weight:700;color:#066173}}@media print{html .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html .table-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-600 a:not(.btn){font-weight:700;color:#04414d}}@media print{html .badge.bg-cyan-600,html .toast.bg-cyan-600,html .toast-header.bg-cyan-600,html .progress-bar.bg-cyan-600,html[data-netbox-color-mode=dark] .badge.bg-cyan-600,html[data-netbox-color-mode=dark] .toast.bg-cyan-600,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-600,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-600,html[data-netbox-color-mode=light] .badge.bg-cyan-600,html[data-netbox-color-mode=light] .toast.bg-cyan-600,html[data-netbox-color-mode=light] .toast-header.bg-cyan-600,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-600{color:#000}}@media print{html .bg-cyan-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-700 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23054956'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-700{color:#087990}}@media print{html .btn.btn-ghost-cyan-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-700:hover{background-color:#0879901f}}@media print{html .alert.alert-cyan-700 a:not(.btn),html .table-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-700 a:not(.btn){font-weight:700;color:#054956}}@media print{html .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html .table-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-700 a:not(.btn){font-weight:700;color:#9cc9d3}}@media print{html .badge.bg-cyan-700,html .toast.bg-cyan-700,html .toast-header.bg-cyan-700,html .progress-bar.bg-cyan-700,html[data-netbox-color-mode=dark] .badge.bg-cyan-700,html[data-netbox-color-mode=dark] .toast.bg-cyan-700,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-700,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-700,html[data-netbox-color-mode=light] .badge.bg-cyan-700,html[data-netbox-color-mode=light] .toast.bg-cyan-700,html[data-netbox-color-mode=light] .toast-header.bg-cyan-700,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-700{color:#fff}}@media print{html .bg-cyan-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-800 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303313a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-800{color:#055160}}@media print{html .btn.btn-ghost-cyan-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-800:hover{background-color:#0551601f}}@media print{html .alert.alert-cyan-800 a:not(.btn),html .table-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-800 a:not(.btn){font-weight:700;color:#03313a}}@media print{html .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html .table-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-800 a:not(.btn){font-weight:700;color:#9bb9bf}}@media print{html .badge.bg-cyan-800,html .toast.bg-cyan-800,html .toast-header.bg-cyan-800,html .progress-bar.bg-cyan-800,html[data-netbox-color-mode=dark] .badge.bg-cyan-800,html[data-netbox-color-mode=dark] .toast.bg-cyan-800,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-800,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-800,html[data-netbox-color-mode=light] .badge.bg-cyan-800,html[data-netbox-color-mode=light] .toast.bg-cyan-800,html[data-netbox-color-mode=light] .toast-header.bg-cyan-800,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-800{color:#fff}}@media print{html .bg-cyan-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-cyan-900 button.btn-close,html[data-netbox-color-mode=light] .bg-cyan-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2302181d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-cyan-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-900{color:#032830}}@media print{html .btn.btn-ghost-cyan-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-cyan-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-cyan-900:hover{background-color:#0328301f}}@media print{html .alert.alert-cyan-900 a:not(.btn),html .table-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .table-cyan-900 a:not(.btn){font-weight:700;color:#02181d}}@media print{html .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html .table-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-cyan-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-cyan-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-cyan-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-cyan-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-cyan-900 a:not(.btn){font-weight:700;color:#9aa9ac}}@media print{html .badge.bg-cyan-900,html .toast.bg-cyan-900,html .toast-header.bg-cyan-900,html .progress-bar.bg-cyan-900,html[data-netbox-color-mode=dark] .badge.bg-cyan-900,html[data-netbox-color-mode=dark] .toast.bg-cyan-900,html[data-netbox-color-mode=dark] .toast-header.bg-cyan-900,html[data-netbox-color-mode=dark] .progress-bar.bg-cyan-900,html[data-netbox-color-mode=light] .badge.bg-cyan-900,html[data-netbox-color-mode=light] .toast.bg-cyan-900,html[data-netbox-color-mode=light] .toast-header.bg-cyan-900,html[data-netbox-color-mode=light] .progress-bar.bg-cyan-900{color:#fff}}@media print{html .bg-indigo-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-100 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5365'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-100{color:#e0cffc}}@media print{html .btn.btn-ghost-indigo-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-100:hover{background-color:#e0cffc1f}}@media print{html .alert.alert-indigo-100 a:not(.btn),html .table-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}}@media print{html .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html .table-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-100 a:not(.btn){font-weight:700;color:#5a5365}}@media print{html .badge.bg-indigo-100,html .toast.bg-indigo-100,html .toast-header.bg-indigo-100,html .progress-bar.bg-indigo-100,html[data-netbox-color-mode=dark] .badge.bg-indigo-100,html[data-netbox-color-mode=dark] .toast.bg-indigo-100,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-100,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-100,html[data-netbox-color-mode=light] .badge.bg-indigo-100,html[data-netbox-color-mode=light] .toast.bg-indigo-100,html[data-netbox-color-mode=light] .toast-header.bg-indigo-100,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-100{color:#000}}@media print{html .bg-indigo-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-200 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23745f96'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-200{color:#c29ffa}}@media print{html .btn.btn-ghost-indigo-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-200:hover{background-color:#c29ffa1f}}@media print{html .alert.alert-indigo-200 a:not(.btn),html .table-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-200 a:not(.btn){font-weight:700;color:#745f96}}@media print{html .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html .table-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-200 a:not(.btn){font-weight:700;color:#4e4064}}@media print{html .badge.bg-indigo-200,html .toast.bg-indigo-200,html .toast-header.bg-indigo-200,html .progress-bar.bg-indigo-200,html[data-netbox-color-mode=dark] .badge.bg-indigo-200,html[data-netbox-color-mode=dark] .toast.bg-indigo-200,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-200,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-200,html[data-netbox-color-mode=light] .badge.bg-indigo-200,html[data-netbox-color-mode=light] .toast.bg-indigo-200,html[data-netbox-color-mode=light] .toast-header.bg-indigo-200,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-200{color:#000}}@media print{html .bg-indigo-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-300 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23624394'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-300{color:#a370f7}}@media print{html .btn.btn-ghost-indigo-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-300:hover{background-color:#a370f71f}}@media print{html .alert.alert-indigo-300 a:not(.btn),html .table-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-300 a:not(.btn){font-weight:700;color:#624394}}@media print{html .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html .table-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-300 a:not(.btn){font-weight:700;color:#412d63}}@media print{html .badge.bg-indigo-300,html .toast.bg-indigo-300,html .toast-header.bg-indigo-300,html .progress-bar.bg-indigo-300,html[data-netbox-color-mode=dark] .badge.bg-indigo-300,html[data-netbox-color-mode=dark] .toast.bg-indigo-300,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-300,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-300,html[data-netbox-color-mode=light] .badge.bg-indigo-300,html[data-netbox-color-mode=light] .toast.bg-indigo-300,html[data-netbox-color-mode=light] .toast-header.bg-indigo-300,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-300{color:#000}}@media print{html .bg-indigo-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-400 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23502693'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-400{color:#8540f5}}@media print{html .btn.btn-ghost-indigo-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-400:hover{background-color:#8540f51f}}@media print{html .alert.alert-indigo-400 a:not(.btn),html .table-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-400 a:not(.btn){font-weight:700;color:#502693}}@media print{html .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html .table-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-400 a:not(.btn){font-weight:700;color:#ceb3fb}}@media print{html .badge.bg-indigo-400,html .toast.bg-indigo-400,html .toast-header.bg-indigo-400,html .progress-bar.bg-indigo-400,html[data-netbox-color-mode=dark] .badge.bg-indigo-400,html[data-netbox-color-mode=dark] .toast.bg-indigo-400,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-400,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-400,html[data-netbox-color-mode=light] .badge.bg-indigo-400,html[data-netbox-color-mode=light] .toast.bg-indigo-400,html[data-netbox-color-mode=light] .toast-header.bg-indigo-400,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-400{color:#fff}}@media print{html .bg-indigo-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-500 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d0a91'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-500{color:#6610f2}}@media print{html .btn.btn-ghost-indigo-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-500:hover{background-color:#6610f21f}}@media print{html .alert.alert-indigo-500 a:not(.btn),html .table-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-500 a:not(.btn){font-weight:700;color:#3d0a91}}@media print{html .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html .table-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-500 a:not(.btn){font-weight:700;color:#c29ffa}}@media print{html .badge.bg-indigo-500,html .toast.bg-indigo-500,html .toast-header.bg-indigo-500,html .progress-bar.bg-indigo-500,html[data-netbox-color-mode=dark] .badge.bg-indigo-500,html[data-netbox-color-mode=dark] .toast.bg-indigo-500,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-500,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-500,html[data-netbox-color-mode=light] .badge.bg-indigo-500,html[data-netbox-color-mode=light] .toast.bg-indigo-500,html[data-netbox-color-mode=light] .toast-header.bg-indigo-500,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-500{color:#fff}}@media print{html .bg-indigo-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-600 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23310874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-600{color:#520dc2}}@media print{html .btn.btn-ghost-indigo-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-600:hover{background-color:#520dc21f}}@media print{html .alert.alert-indigo-600 a:not(.btn),html .table-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-600 a:not(.btn){font-weight:700;color:#310874}}@media print{html .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html .table-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-600 a:not(.btn){font-weight:700;color:#ba9ee7}}@media print{html .badge.bg-indigo-600,html .toast.bg-indigo-600,html .toast-header.bg-indigo-600,html .progress-bar.bg-indigo-600,html[data-netbox-color-mode=dark] .badge.bg-indigo-600,html[data-netbox-color-mode=dark] .toast.bg-indigo-600,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-600,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-600,html[data-netbox-color-mode=light] .badge.bg-indigo-600,html[data-netbox-color-mode=light] .toast.bg-indigo-600,html[data-netbox-color-mode=light] .toast-header.bg-indigo-600,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-600{color:#fff}}@media print{html .bg-indigo-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-700 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23250657'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-700{color:#3d0a91}}@media print{html .btn.btn-ghost-indigo-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-700:hover{background-color:#3d0a911f}}@media print{html .alert.alert-indigo-700 a:not(.btn),html .table-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-700 a:not(.btn){font-weight:700;color:#250657}}@media print{html .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html .table-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-700 a:not(.btn){font-weight:700;color:#b19dd3}}@media print{html .badge.bg-indigo-700,html .toast.bg-indigo-700,html .toast-header.bg-indigo-700,html .progress-bar.bg-indigo-700,html[data-netbox-color-mode=dark] .badge.bg-indigo-700,html[data-netbox-color-mode=dark] .toast.bg-indigo-700,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-700,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-700,html[data-netbox-color-mode=light] .badge.bg-indigo-700,html[data-netbox-color-mode=light] .toast.bg-indigo-700,html[data-netbox-color-mode=light] .toast-header.bg-indigo-700,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-700{color:#fff}}@media print{html .bg-indigo-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-800 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2319043a'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-800{color:#290661}}@media print{html .btn.btn-ghost-indigo-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-800:hover{background-color:#2906611f}}@media print{html .alert.alert-indigo-800 a:not(.btn),html .table-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-800 a:not(.btn){font-weight:700;color:#19043a}}@media print{html .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html .table-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-800 a:not(.btn){font-weight:700;color:#a99bc0}}@media print{html .badge.bg-indigo-800,html .toast.bg-indigo-800,html .toast-header.bg-indigo-800,html .progress-bar.bg-indigo-800,html[data-netbox-color-mode=dark] .badge.bg-indigo-800,html[data-netbox-color-mode=dark] .toast.bg-indigo-800,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-800,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-800,html[data-netbox-color-mode=light] .badge.bg-indigo-800,html[data-netbox-color-mode=light] .toast.bg-indigo-800,html[data-netbox-color-mode=light] .toast-header.bg-indigo-800,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-800{color:#fff}}@media print{html .bg-indigo-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-indigo-900 button.btn-close,html[data-netbox-color-mode=light] .bg-indigo-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c021d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-indigo-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-900{color:#140330}}@media print{html .btn.btn-ghost-indigo-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-indigo-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-indigo-900:hover{background-color:#1403301f}}@media print{html .alert.alert-indigo-900 a:not(.btn),html .table-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .table-indigo-900 a:not(.btn){font-weight:700;color:#0c021d}}@media print{html .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html .table-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-indigo-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-indigo-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-indigo-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-indigo-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-indigo-900 a:not(.btn){font-weight:700;color:#a19aac}}@media print{html .badge.bg-indigo-900,html .toast.bg-indigo-900,html .toast-header.bg-indigo-900,html .progress-bar.bg-indigo-900,html[data-netbox-color-mode=dark] .badge.bg-indigo-900,html[data-netbox-color-mode=dark] .toast.bg-indigo-900,html[data-netbox-color-mode=dark] .toast-header.bg-indigo-900,html[data-netbox-color-mode=dark] .progress-bar.bg-indigo-900,html[data-netbox-color-mode=light] .badge.bg-indigo-900,html[data-netbox-color-mode=light] .toast.bg-indigo-900,html[data-netbox-color-mode=light] .toast-header.bg-indigo-900,html[data-netbox-color-mode=light] .progress-bar.bg-indigo-900{color:#fff}}@media print{html .bg-purple-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-100 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5761'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-100{color:#e2d9f3}}@media print{html .btn.btn-ghost-purple-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-100:hover{background-color:#e2d9f31f}}@media print{html .alert.alert-purple-100 a:not(.btn),html .table-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-100 a:not(.btn){font-weight:700;color:#5a5761}}@media print{html .alert.alert-purple-100 .btn:not([class*=btn-outline]),html .table-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-100 a:not(.btn){font-weight:700;color:#5a5761}}@media print{html .badge.bg-purple-100,html .toast.bg-purple-100,html .toast-header.bg-purple-100,html .progress-bar.bg-purple-100,html[data-netbox-color-mode=dark] .badge.bg-purple-100,html[data-netbox-color-mode=dark] .toast.bg-purple-100,html[data-netbox-color-mode=dark] .toast-header.bg-purple-100,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-100,html[data-netbox-color-mode=light] .badge.bg-purple-100,html[data-netbox-color-mode=light] .toast.bg-purple-100,html[data-netbox-color-mode=light] .toast-header.bg-purple-100,html[data-netbox-color-mode=light] .progress-bar.bg-purple-100{color:#000}}@media print{html .bg-purple-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-200 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f485c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-200{color:#c5b3e6}}@media print{html .btn.btn-ghost-purple-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-200:hover{background-color:#c5b3e61f}}@media print{html .alert.alert-purple-200 a:not(.btn),html .table-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-200 a:not(.btn){font-weight:700;color:#4f485c}}@media print{html .alert.alert-purple-200 .btn:not([class*=btn-outline]),html .table-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-200 a:not(.btn){font-weight:700;color:#4f485c}}@media print{html .badge.bg-purple-200,html .toast.bg-purple-200,html .toast-header.bg-purple-200,html .progress-bar.bg-purple-200,html[data-netbox-color-mode=dark] .badge.bg-purple-200,html[data-netbox-color-mode=dark] .toast.bg-purple-200,html[data-netbox-color-mode=dark] .toast-header.bg-purple-200,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-200,html[data-netbox-color-mode=light] .badge.bg-purple-200,html[data-netbox-color-mode=light] .toast.bg-purple-200,html[data-netbox-color-mode=light] .toast-header.bg-purple-200,html[data-netbox-color-mode=light] .progress-bar.bg-purple-200{color:#000}}@media print{html .bg-purple-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-300 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23655583'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-300{color:#a98eda}}@media print{html .btn.btn-ghost-purple-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-300:hover{background-color:#a98eda1f}}@media print{html .alert.alert-purple-300 a:not(.btn),html .table-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-300 a:not(.btn){font-weight:700;color:#655583}}@media print{html .alert.alert-purple-300 .btn:not([class*=btn-outline]),html .table-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-300 a:not(.btn){font-weight:700;color:#443957}}@media print{html .badge.bg-purple-300,html .toast.bg-purple-300,html .toast-header.bg-purple-300,html .progress-bar.bg-purple-300,html[data-netbox-color-mode=dark] .badge.bg-purple-300,html[data-netbox-color-mode=dark] .toast.bg-purple-300,html[data-netbox-color-mode=dark] .toast-header.bg-purple-300,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-300,html[data-netbox-color-mode=light] .badge.bg-purple-300,html[data-netbox-color-mode=light] .toast.bg-purple-300,html[data-netbox-color-mode=light] .toast-header.bg-purple-300,html[data-netbox-color-mode=light] .progress-bar.bg-purple-300{color:#000}}@media print{html .bg-purple-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-400 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23543e7b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-400{color:#8c68cd}}@media print{html .btn.btn-ghost-purple-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-400:hover{background-color:#8c68cd1f}}@media print{html .alert.alert-purple-400 a:not(.btn),html .table-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-400 a:not(.btn){font-weight:700;color:#543e7b}}@media print{html .alert.alert-purple-400 .btn:not([class*=btn-outline]),html .table-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-400 a:not(.btn){font-weight:700;color:#382a52}}@media print{html .badge.bg-purple-400,html .toast.bg-purple-400,html .toast-header.bg-purple-400,html .progress-bar.bg-purple-400,html[data-netbox-color-mode=dark] .badge.bg-purple-400,html[data-netbox-color-mode=dark] .toast.bg-purple-400,html[data-netbox-color-mode=dark] .toast-header.bg-purple-400,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-400,html[data-netbox-color-mode=light] .badge.bg-purple-400,html[data-netbox-color-mode=light] .toast.bg-purple-400,html[data-netbox-color-mode=light] .toast-header.bg-purple-400,html[data-netbox-color-mode=light] .progress-bar.bg-purple-400{color:#000}}@media print{html .bg-purple-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-500 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23432874'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-500{color:#6f42c1}}@media print{html .btn.btn-ghost-purple-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-500:hover{background-color:#6f42c11f}}@media print{html .alert.alert-purple-500 a:not(.btn),html .table-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-500 a:not(.btn){font-weight:700;color:#432874}}@media print{html .alert.alert-purple-500 .btn:not([class*=btn-outline]),html .table-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-500 a:not(.btn){font-weight:700;color:#c5b3e6}}@media print{html .badge.bg-purple-500,html .toast.bg-purple-500,html .toast-header.bg-purple-500,html .progress-bar.bg-purple-500,html[data-netbox-color-mode=dark] .badge.bg-purple-500,html[data-netbox-color-mode=dark] .toast.bg-purple-500,html[data-netbox-color-mode=dark] .toast-header.bg-purple-500,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-500,html[data-netbox-color-mode=light] .badge.bg-purple-500,html[data-netbox-color-mode=light] .toast.bg-purple-500,html[data-netbox-color-mode=light] .toast-header.bg-purple-500,html[data-netbox-color-mode=light] .progress-bar.bg-purple-500{color:#fff}}@media print{html .bg-purple-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-600 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2335205c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-600{color:#59359a}}@media print{html .btn.btn-ghost-purple-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-600:hover{background-color:#59359a1f}}@media print{html .alert.alert-purple-600 a:not(.btn),html .table-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-600 a:not(.btn){font-weight:700;color:#35205c}}@media print{html .alert.alert-purple-600 .btn:not([class*=btn-outline]),html .table-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-600 a:not(.btn){font-weight:700;color:#bdaed7}}@media print{html .badge.bg-purple-600,html .toast.bg-purple-600,html .toast-header.bg-purple-600,html .progress-bar.bg-purple-600,html[data-netbox-color-mode=dark] .badge.bg-purple-600,html[data-netbox-color-mode=dark] .toast.bg-purple-600,html[data-netbox-color-mode=dark] .toast-header.bg-purple-600,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-600,html[data-netbox-color-mode=light] .badge.bg-purple-600,html[data-netbox-color-mode=light] .toast.bg-purple-600,html[data-netbox-color-mode=light] .toast-header.bg-purple-600,html[data-netbox-color-mode=light] .progress-bar.bg-purple-600{color:#fff}}@media print{html .bg-purple-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-700 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23281846'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-700{color:#432874}}@media print{html .btn.btn-ghost-purple-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-700:hover{background-color:#4328741f}}@media print{html .alert.alert-purple-700 a:not(.btn),html .table-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-700 a:not(.btn){font-weight:700;color:#281846}}@media print{html .alert.alert-purple-700 .btn:not([class*=btn-outline]),html .table-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-700 a:not(.btn){font-weight:700;color:#b4a9c7}}@media print{html .badge.bg-purple-700,html .toast.bg-purple-700,html .toast-header.bg-purple-700,html .progress-bar.bg-purple-700,html[data-netbox-color-mode=dark] .badge.bg-purple-700,html[data-netbox-color-mode=dark] .toast.bg-purple-700,html[data-netbox-color-mode=dark] .toast-header.bg-purple-700,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-700,html[data-netbox-color-mode=light] .badge.bg-purple-700,html[data-netbox-color-mode=light] .toast.bg-purple-700,html[data-netbox-color-mode=light] .toast-header.bg-purple-700,html[data-netbox-color-mode=light] .progress-bar.bg-purple-700{color:#fff}}@media print{html .bg-purple-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-800 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a102e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-800{color:#2c1a4d}}@media print{html .btn.btn-ghost-purple-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-800:hover{background-color:#2c1a4d1f}}@media print{html .alert.alert-purple-800 a:not(.btn),html .table-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-800 a:not(.btn){font-weight:700;color:#1a102e}}@media print{html .alert.alert-purple-800 .btn:not([class*=btn-outline]),html .table-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-800 a:not(.btn){font-weight:700;color:#aba3b8}}@media print{html .badge.bg-purple-800,html .toast.bg-purple-800,html .toast-header.bg-purple-800,html .progress-bar.bg-purple-800,html[data-netbox-color-mode=dark] .badge.bg-purple-800,html[data-netbox-color-mode=dark] .toast.bg-purple-800,html[data-netbox-color-mode=dark] .toast-header.bg-purple-800,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-800,html[data-netbox-color-mode=light] .badge.bg-purple-800,html[data-netbox-color-mode=light] .toast.bg-purple-800,html[data-netbox-color-mode=light] .toast-header.bg-purple-800,html[data-netbox-color-mode=light] .progress-bar.bg-purple-800{color:#fff}}@media print{html .bg-purple-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-purple-900 button.btn-close,html[data-netbox-color-mode=light] .bg-purple-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0817'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-purple-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-900{color:#160d27}}@media print{html .btn.btn-ghost-purple-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-purple-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-purple-900:hover{background-color:#160d271f}}@media print{html .alert.alert-purple-900 a:not(.btn),html .table-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .table-purple-900 a:not(.btn){font-weight:700;color:#0d0817}}@media print{html .alert.alert-purple-900 .btn:not([class*=btn-outline]),html .table-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-purple-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-purple-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-purple-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-purple-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-purple-900 a:not(.btn){font-weight:700;color:#a29ea9}}@media print{html .badge.bg-purple-900,html .toast.bg-purple-900,html .toast-header.bg-purple-900,html .progress-bar.bg-purple-900,html[data-netbox-color-mode=dark] .badge.bg-purple-900,html[data-netbox-color-mode=dark] .toast.bg-purple-900,html[data-netbox-color-mode=dark] .toast-header.bg-purple-900,html[data-netbox-color-mode=dark] .progress-bar.bg-purple-900,html[data-netbox-color-mode=light] .badge.bg-purple-900,html[data-netbox-color-mode=light] .toast.bg-purple-900,html[data-netbox-color-mode=light] .toast-header.bg-purple-900,html[data-netbox-color-mode=light] .progress-bar.bg-purple-900{color:#fff}}@media print{html .bg-pink-100 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-100 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-100 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2363565c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-100,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-100{color:#f7d6e6}}@media print{html .btn.btn-ghost-pink-100:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-100:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-100:hover{background-color:#f7d6e61f}}@media print{html .alert.alert-pink-100 a:not(.btn),html .table-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-100 a:not(.btn){font-weight:700;color:#63565c}}@media print{html .alert.alert-pink-100 .btn:not([class*=btn-outline]),html .table-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-100 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-100 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-100 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-100 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-100 a:not(.btn){font-weight:700;color:#63565c}}@media print{html .badge.bg-pink-100,html .toast.bg-pink-100,html .toast-header.bg-pink-100,html .progress-bar.bg-pink-100,html[data-netbox-color-mode=dark] .badge.bg-pink-100,html[data-netbox-color-mode=dark] .toast.bg-pink-100,html[data-netbox-color-mode=dark] .toast-header.bg-pink-100,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-100,html[data-netbox-color-mode=light] .badge.bg-pink-100,html[data-netbox-color-mode=light] .toast.bg-pink-100,html[data-netbox-color-mode=light] .toast-header.bg-pink-100,html[data-netbox-color-mode=light] .progress-bar.bg-pink-100{color:#000}}@media print{html .bg-pink-200 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-200 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-200 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23604552'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-200,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-200{color:#efadce}}@media print{html .btn.btn-ghost-pink-200:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-200:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-200:hover{background-color:#efadce1f}}@media print{html .alert.alert-pink-200 a:not(.btn),html .table-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-200 a:not(.btn){font-weight:700;color:#604552}}@media print{html .alert.alert-pink-200 .btn:not([class*=btn-outline]),html .table-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-200 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-200 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-200 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-200 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-200 a:not(.btn){font-weight:700;color:#604552}}@media print{html .badge.bg-pink-200,html .toast.bg-pink-200,html .toast-header.bg-pink-200,html .progress-bar.bg-pink-200,html[data-netbox-color-mode=dark] .badge.bg-pink-200,html[data-netbox-color-mode=dark] .toast.bg-pink-200,html[data-netbox-color-mode=dark] .toast-header.bg-pink-200,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-200,html[data-netbox-color-mode=light] .badge.bg-pink-200,html[data-netbox-color-mode=light] .toast.bg-pink-200,html[data-netbox-color-mode=light] .toast-header.bg-pink-200,html[data-netbox-color-mode=light] .progress-bar.bg-pink-200{color:#000}}@media print{html .bg-pink-300 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-300 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-300 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a506d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-300,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-300{color:#e685b5}}@media print{html .btn.btn-ghost-pink-300:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-300:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-300:hover{background-color:#e685b51f}}@media print{html .alert.alert-pink-300 a:not(.btn),html .table-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-300 a:not(.btn){font-weight:700;color:#8a506d}}@media print{html .alert.alert-pink-300 .btn:not([class*=btn-outline]),html .table-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-300 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-300 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-300 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-300 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-300 a:not(.btn){font-weight:700;color:#5c3548}}@media print{html .badge.bg-pink-300,html .toast.bg-pink-300,html .toast-header.bg-pink-300,html .progress-bar.bg-pink-300,html[data-netbox-color-mode=dark] .badge.bg-pink-300,html[data-netbox-color-mode=dark] .toast.bg-pink-300,html[data-netbox-color-mode=dark] .toast-header.bg-pink-300,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-300,html[data-netbox-color-mode=light] .badge.bg-pink-300,html[data-netbox-color-mode=light] .toast.bg-pink-300,html[data-netbox-color-mode=light] .toast-header.bg-pink-300,html[data-netbox-color-mode=light] .progress-bar.bg-pink-300{color:#000}}@media print{html .bg-pink-400 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-400 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-400 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2385375e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-400,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-400{color:#de5c9d}}@media print{html .btn.btn-ghost-pink-400:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-400:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-400:hover{background-color:#de5c9d1f}}@media print{html .alert.alert-pink-400 a:not(.btn),html .table-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-400 a:not(.btn){font-weight:700;color:#85375e}}@media print{html .alert.alert-pink-400 .btn:not([class*=btn-outline]),html .table-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-400 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-400 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-400 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-400 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-400 a:not(.btn){font-weight:700;color:#59253f}}@media print{html .badge.bg-pink-400,html .toast.bg-pink-400,html .toast-header.bg-pink-400,html .progress-bar.bg-pink-400,html[data-netbox-color-mode=dark] .badge.bg-pink-400,html[data-netbox-color-mode=dark] .toast.bg-pink-400,html[data-netbox-color-mode=dark] .toast-header.bg-pink-400,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-400,html[data-netbox-color-mode=light] .badge.bg-pink-400,html[data-netbox-color-mode=light] .toast.bg-pink-400,html[data-netbox-color-mode=light] .toast-header.bg-pink-400,html[data-netbox-color-mode=light] .progress-bar.bg-pink-400{color:#000}}@media print{html .bg-pink-500 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-500 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-500 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23801f4f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-500,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-500{color:#d63384}}@media print{html .btn.btn-ghost-pink-500:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-500:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-500:hover{background-color:#d633841f}}@media print{html .alert.alert-pink-500 a:not(.btn),html .table-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-500 a:not(.btn){font-weight:700;color:#801f4f}}@media print{html .alert.alert-pink-500 .btn:not([class*=btn-outline]),html .table-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-500 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-500 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-500 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-500 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-500 a:not(.btn){font-weight:700;color:#efadce}}@media print{html .badge.bg-pink-500,html .toast.bg-pink-500,html .toast-header.bg-pink-500,html .progress-bar.bg-pink-500,html[data-netbox-color-mode=dark] .badge.bg-pink-500,html[data-netbox-color-mode=dark] .toast.bg-pink-500,html[data-netbox-color-mode=dark] .toast-header.bg-pink-500,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-500,html[data-netbox-color-mode=light] .badge.bg-pink-500,html[data-netbox-color-mode=light] .toast.bg-pink-500,html[data-netbox-color-mode=light] .toast-header.bg-pink-500,html[data-netbox-color-mode=light] .progress-bar.bg-pink-500{color:#fff}}@media print{html .bg-pink-600 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-600 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-600 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23671940'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-600,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-600{color:#ab296a}}@media print{html .btn.btn-ghost-pink-600:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-600:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-600:hover{background-color:#ab296a1f}}@media print{html .alert.alert-pink-600 a:not(.btn),html .table-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-600 a:not(.btn){font-weight:700;color:#671940}}@media print{html .alert.alert-pink-600 .btn:not([class*=btn-outline]),html .table-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-600 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-600 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-600 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-600 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-600 a:not(.btn){font-weight:700;color:#dda9c3}}@media print{html .badge.bg-pink-600,html .toast.bg-pink-600,html .toast-header.bg-pink-600,html .progress-bar.bg-pink-600,html[data-netbox-color-mode=dark] .badge.bg-pink-600,html[data-netbox-color-mode=dark] .toast.bg-pink-600,html[data-netbox-color-mode=dark] .toast-header.bg-pink-600,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-600,html[data-netbox-color-mode=light] .badge.bg-pink-600,html[data-netbox-color-mode=light] .toast.bg-pink-600,html[data-netbox-color-mode=light] .toast-header.bg-pink-600,html[data-netbox-color-mode=light] .progress-bar.bg-pink-600{color:#fff}}@media print{html .bg-pink-700 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-700 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-700 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d132f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-700,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-700{color:#801f4f}}@media print{html .btn.btn-ghost-pink-700:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-700:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-700:hover{background-color:#801f4f1f}}@media print{html .alert.alert-pink-700 a:not(.btn),html .table-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-700 a:not(.btn){font-weight:700;color:#4d132f}}@media print{html .alert.alert-pink-700 .btn:not([class*=btn-outline]),html .table-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-700 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-700 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-700 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-700 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-700 a:not(.btn){font-weight:700;color:#cca5b9}}@media print{html .badge.bg-pink-700,html .toast.bg-pink-700,html .toast-header.bg-pink-700,html .progress-bar.bg-pink-700,html[data-netbox-color-mode=dark] .badge.bg-pink-700,html[data-netbox-color-mode=dark] .toast.bg-pink-700,html[data-netbox-color-mode=dark] .toast-header.bg-pink-700,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-700,html[data-netbox-color-mode=light] .badge.bg-pink-700,html[data-netbox-color-mode=light] .toast.bg-pink-700,html[data-netbox-color-mode=light] .toast-header.bg-pink-700,html[data-netbox-color-mode=light] .progress-bar.bg-pink-700{color:#fff}}@media print{html .bg-pink-800 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-800 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-800 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23340c20'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-800,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-800{color:#561435}}@media print{html .btn.btn-ghost-pink-800:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-800:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-800:hover{background-color:#5614351f}}@media print{html .alert.alert-pink-800 a:not(.btn),html .table-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-800 a:not(.btn){font-weight:700;color:#340c20}}@media print{html .alert.alert-pink-800 .btn:not([class*=btn-outline]),html .table-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-800 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-800 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-800 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-800 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-800 a:not(.btn){font-weight:700;color:#bba1ae}}@media print{html .badge.bg-pink-800,html .toast.bg-pink-800,html .toast-header.bg-pink-800,html .progress-bar.bg-pink-800,html[data-netbox-color-mode=dark] .badge.bg-pink-800,html[data-netbox-color-mode=dark] .toast.bg-pink-800,html[data-netbox-color-mode=dark] .toast-header.bg-pink-800,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-800,html[data-netbox-color-mode=light] .badge.bg-pink-800,html[data-netbox-color-mode=light] .toast.bg-pink-800,html[data-netbox-color-mode=light] .toast-header.bg-pink-800,html[data-netbox-color-mode=light] .progress-bar.bg-pink-800{color:#fff}}@media print{html .bg-pink-900 button.btn-close,html[data-netbox-color-mode=dark] .bg-pink-900 button.btn-close,html[data-netbox-color-mode=light] .bg-pink-900 button.btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a0610'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}}@media print{html .btn.btn-ghost-pink-900,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-900{color:#2b0a1a}}@media print{html .btn.btn-ghost-pink-900:hover,html[data-netbox-color-mode=dark] .btn.btn-ghost-pink-900:hover,html[data-netbox-color-mode=light] .btn.btn-ghost-pink-900:hover{background-color:#2b0a1a1f}}@media print{html .alert.alert-pink-900 a:not(.btn),html .table-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .table-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .alert.alert-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .table-pink-900 a:not(.btn){font-weight:700;color:#1a0610}}@media print{html .alert.alert-pink-900 .btn:not([class*=btn-outline]),html .table-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=dark] .table-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .alert.alert-pink-900 .btn:not([class*=btn-outline]),html[data-netbox-color-mode=light] .table-pink-900 .btn:not([class*=btn-outline]){border-color:#495057}}@media print{html .toast.bg-pink-900 a:not(.btn),html[data-netbox-color-mode=dark] .toast.bg-pink-900 a:not(.btn),html[data-netbox-color-mode=light] .toast.bg-pink-900 a:not(.btn){font-weight:700;color:#aa9da3}}@media print{html .badge.bg-pink-900,html .toast.bg-pink-900,html .toast-header.bg-pink-900,html .progress-bar.bg-pink-900,html[data-netbox-color-mode=dark] .badge.bg-pink-900,html[data-netbox-color-mode=dark] .toast.bg-pink-900,html[data-netbox-color-mode=dark] .toast-header.bg-pink-900,html[data-netbox-color-mode=dark] .progress-bar.bg-pink-900,html[data-netbox-color-mode=light] .badge.bg-pink-900,html[data-netbox-color-mode=light] .toast.bg-pink-900,html[data-netbox-color-mode=light] .toast-header.bg-pink-900,html[data-netbox-color-mode=light] .progress-bar.bg-pink-900{color:#fff}}@media print{html table td>.progress,html[data-netbox-color-mode=dark] table td>.progress,html[data-netbox-color-mode=light] table td>.progress{min-width:6rem}}@media print{html .small .form-control,html[data-netbox-color-mode=dark] .small .form-control,html[data-netbox-color-mode=light] .small .form-control{font-size:.875rem}}@media print{html :not(.card-body)>.col:not(:last-child):not(:only-child),html[data-netbox-color-mode=dark] :not(.card-body)>.col:not(:last-child):not(:only-child),html[data-netbox-color-mode=light] :not(.card-body)>.col:not(:last-child):not(:only-child){margin-bottom:1rem}}@media print{html .nav-mobile,html[data-netbox-color-mode=dark] .nav-mobile,html[data-netbox-color-mode=light] .nav-mobile{display:none;flex-direction:column;align-items:center;justify-content:space-between;width:100%}}@media print and (max-width: 991.98px){html .nav-mobile,html[data-netbox-color-mode=dark] .nav-mobile,html[data-netbox-color-mode=light] .nav-mobile{display:flex}}@media print{html .nav-mobile .nav-mobile-top,html[data-netbox-color-mode=dark] .nav-mobile .nav-mobile-top,html[data-netbox-color-mode=light] .nav-mobile .nav-mobile-top{display:flex;align-items:center;justify-content:space-between;width:100%}}@media print{html .card>.table.table-flush,html[data-netbox-color-mode=dark] .card>.table.table-flush,html[data-netbox-color-mode=light] .card>.table.table-flush{margin-bottom:0;overflow:hidden;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .card>.table.table-flush thead th[scope=col],html[data-netbox-color-mode=dark] .card>.table.table-flush thead th[scope=col],html[data-netbox-color-mode=light] .card>.table.table-flush thead th[scope=col]{padding-top:1rem;padding-bottom:1rem;text-transform:uppercase;vertical-align:middle;background-color:#f8f9fa;border-top:1px solid rgba(0,0,0,.125);border-bottom-color:#00000020}}@media print{html .card>.table.table-flush th,html .card>.table.table-flush td,html[data-netbox-color-mode=dark] .card>.table.table-flush th,html[data-netbox-color-mode=dark] .card>.table.table-flush td,html[data-netbox-color-mode=light] .card>.table.table-flush th,html[data-netbox-color-mode=light] .card>.table.table-flush td{padding-right:1.5rem!important;padding-left:1.5rem!important;border-right:0;border-left:0}}@media print{html .card>.table.table-flush tr[class],html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class],html[data-netbox-color-mode=light] .card>.table.table-flush tr[class]{border-color:#00000020!important}}@media print{html .card>.table.table-flush tr[class]:last-of-type,html[data-netbox-color-mode=dark] .card>.table.table-flush tr[class]:last-of-type,html[data-netbox-color-mode=light] .card>.table.table-flush tr[class]:last-of-type{border-bottom-color:transparent!important;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}}@media print{html .header-alert-container,html[data-netbox-color-mode=dark] .header-alert-container,html[data-netbox-color-mode=light] .header-alert-container{display:flex;align-items:center;justify-content:center;padding:0 1rem}}@media print{html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{width:100%}}@media print and (min-width: 768px){html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{max-width:75%}}@media print and (min-width: 992px){html .header-alert-container .alert,html[data-netbox-color-mode=dark] .header-alert-container .alert,html[data-netbox-color-mode=light] .header-alert-container .alert{max-width:50%}}@media print{html span.profile-button .dropdown-menu,html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu,html[data-netbox-color-mode=light] span.profile-button .dropdown-menu{right:0;left:auto;display:block!important;margin-top:.5rem;box-shadow:0 .5rem 1rem #00000026;transition:opacity .2s ease-in-out}}@media print{html span.profile-button .dropdown-menu:not(.show),html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu:not(.show),html[data-netbox-color-mode=light] span.profile-button .dropdown-menu:not(.show){pointer-events:none;opacity:0}}@media print{html span.profile-button .dropdown-menu.show,html[data-netbox-color-mode=dark] span.profile-button .dropdown-menu.show,html[data-netbox-color-mode=light] span.profile-button .dropdown-menu.show{pointer-events:auto;opacity:1}}@media print{html div#advanced-search-content div.card div.card-body div.col:not(:last-child),html[data-netbox-color-mode=dark] div#advanced-search-content div.card div.card-body div.col:not(:last-child),html[data-netbox-color-mode=light] div#advanced-search-content div.card div.card-body div.col:not(:last-child){margin-right:1rem}}@media print{html table td a,html[data-netbox-color-mode=dark] table td a,html[data-netbox-color-mode=light] table td a{text-decoration:none}}@media print{html table td a:hover,html[data-netbox-color-mode=dark] table td a:hover,html[data-netbox-color-mode=light] table td a:hover{text-decoration:underline}}@media print{html table th a,html table th a:hover,html[data-netbox-color-mode=dark] table th a,html[data-netbox-color-mode=dark] table th a:hover,html[data-netbox-color-mode=light] table th a,html[data-netbox-color-mode=light] table th a:hover{color:#212529;text-decoration:none}}@media print{html table td,html table th,html[data-netbox-color-mode=dark] table td,html[data-netbox-color-mode=dark] table th,html[data-netbox-color-mode=light] table td,html[data-netbox-color-mode=light] table th{font-size:.875rem;line-height:1.25;vertical-align:middle}}@media print{html table td.min-width,html table th.min-width,html[data-netbox-color-mode=dark] table td.min-width,html[data-netbox-color-mode=dark] table th.min-width,html[data-netbox-color-mode=light] table td.min-width,html[data-netbox-color-mode=light] table th.min-width{width:1%}}@media print{html table td .form-check-input,html table th .form-check-input,html[data-netbox-color-mode=dark] table td .form-check-input,html[data-netbox-color-mode=dark] table th .form-check-input,html[data-netbox-color-mode=light] table td .form-check-input,html[data-netbox-color-mode=light] table th .form-check-input{margin-top:.125em;font-size:1rem}}@media print{html table td .btn-sm,html table td .btn-group-sm>.btn,html table th .btn-sm,html table th .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table td .btn-sm,html[data-netbox-color-mode=dark] table td html[data-netbox-color-mode=light] .btn-group-sm>.btn,html[data-netbox-color-mode=dark] table th .btn-sm,html[data-netbox-color-mode=dark] table th html[data-netbox-color-mode=light] .btn-group-sm>.btn,html[data-netbox-color-mode=light] table td .btn-sm,html[data-netbox-color-mode=light] table td html[data-netbox-color-mode=dark] .btn-group-sm>.btn,html[data-netbox-color-mode=light] table th .btn-sm,html[data-netbox-color-mode=light] table th html[data-netbox-color-mode=dark] .btn-group-sm>.btn{line-height:1}}@media print{html table td p,html table th p,html[data-netbox-color-mode=dark] table td p,html[data-netbox-color-mode=dark] table th p,html[data-netbox-color-mode=light] table td p,html[data-netbox-color-mode=light] table th p{margin-bottom:0}}@media print{html table.table>:not(caption)>*>*,html[data-netbox-color-mode=dark] table.table>:not(caption)>*>*,html[data-netbox-color-mode=light] table.table>:not(caption)>*>*{padding-right:.25rem!important;padding-left:.25rem!important}}@media print{html table.object-list th,html[data-netbox-color-mode=dark] table.object-list th,html[data-netbox-color-mode=light] table.object-list th{font-size:.75rem;line-height:1;vertical-align:bottom}}@media print{html table.attr-table th,html[data-netbox-color-mode=dark] table.attr-table th,html[data-netbox-color-mode=light] table.attr-table th{font-weight:normal;width:25%}}@media print{html div.title-container,html[data-netbox-color-mode=dark] div.title-container,html[data-netbox-color-mode=light] div.title-container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between}}@media print and (min-width: 992px){html div.title-container,html[data-netbox-color-mode=dark] div.title-container,html[data-netbox-color-mode=light] div.title-container{flex-direction:row}}@media print{html div.title-container #content-title,html[data-netbox-color-mode=dark] div.title-container #content-title,html[data-netbox-color-mode=light] div.title-container #content-title{display:flex;flex:1 0;flex-direction:column;padding-bottom:.5rem}}@media print{html .controls,html[data-netbox-color-mode=dark] .controls,html[data-netbox-color-mode=light] .controls{margin-bottom:.5rem}}@media print{html .controls,html[data-netbox-color-mode=dark] .controls,html[data-netbox-color-mode=light] .controls{display:none!important}}@media print{html .controls .control-group,html[data-netbox-color-mode=dark] .controls .control-group,html[data-netbox-color-mode=light] .controls .control-group{display:flex;flex-wrap:wrap;justify-content:flex-start}}@media print and (min-width: 992px){html .controls .control-group,html[data-netbox-color-mode=dark] .controls .control-group,html[data-netbox-color-mode=light] .controls .control-group{justify-content:flex-end}}@media print{html .controls .control-group>*,html[data-netbox-color-mode=dark] .controls .control-group>*,html[data-netbox-color-mode=light] .controls .control-group>*{margin:.25rem}}@media print{html .controls .control-group>*:first-child,html[data-netbox-color-mode=dark] .controls .control-group>*:first-child,html[data-netbox-color-mode=light] .controls .control-group>*:first-child{margin-left:0}}@media print{html .controls .control-group>*:last-child,html[data-netbox-color-mode=dark] .controls .control-group>*:last-child,html[data-netbox-color-mode=light] .controls .control-group>*:last-child{margin-right:0}}@media print{html .object-subtitle,html[data-netbox-color-mode=dark] .object-subtitle,html[data-netbox-color-mode=light] .object-subtitle{display:block;font-size:.875rem;color:#6c757d}}@media print and (min-width: 768px){html .object-subtitle,html[data-netbox-color-mode=dark] .object-subtitle,html[data-netbox-color-mode=light] .object-subtitle{display:inline-block}}@media print{html .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=light] .object-subtitle>span{display:block}}@media print{html .object-subtitle>span.separator,html[data-netbox-color-mode=dark] .object-subtitle>span.separator,html[data-netbox-color-mode=light] .object-subtitle>span.separator{display:none}}@media print and (min-width: 768px){html .object-subtitle>span,html .object-subtitle>span.separator,html[data-netbox-color-mode=dark] .object-subtitle>span,html[data-netbox-color-mode=dark] .object-subtitle>span.separator,html[data-netbox-color-mode=light] .object-subtitle>span,html[data-netbox-color-mode=light] .object-subtitle>span.separator{display:inline-block}}@media print{html nav.search,html[data-netbox-color-mode=dark] nav.search,html[data-netbox-color-mode=light] nav.search{z-index:999;justify-content:center;background-color:var(--nbx-body-bg)}}@media print{html nav.search .search-container,html[data-netbox-color-mode=dark] nav.search .search-container,html[data-netbox-color-mode=light] nav.search .search-container{display:flex;width:100%}}@media print and (max-width: 991.98px){html nav.search .search-container,html[data-netbox-color-mode=dark] nav.search .search-container,html[data-netbox-color-mode=light] nav.search .search-container{display:none}}@media print{html nav.search .input-group .search-obj-selected,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selected,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selected{border-color:#e9ecef}}@media print{html nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle{color:#000;border-color:#e9ecef;margin-left:0;font-weight:400;line-height:1.5;color:#212529;background-color:#e9ecef;border:1px solid #e9ecef;border-radius:.375rem;border-left:1px solid var(--nbx-search-filter-border-left-color)}}@media print{html nav.search .input-group .dropdown-toggle:hover,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:hover,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:hover{color:#000;background-color:#eceff1;border-color:#ebeef1}}@media print{.btn-check:focus+html nav.search .input-group .dropdown-toggle,html nav.search .input-group .dropdown-toggle:focus,.btn-check:focus+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:focus+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus{color:#000;background-color:#eceff1;border-color:#ebeef1;box-shadow:0 0 0 .25rem #c6c9cb80}}@media print{.btn-check:checked+html nav.search .input-group .dropdown-toggle,.btn-check:active+html nav.search .input-group .dropdown-toggle,html nav.search .input-group .dropdown-toggle:active,html nav.search .input-group .dropdown-toggle.active,.show>html nav.search .input-group .dropdown-toggle.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle,.btn-check:checked+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,.btn-check:active+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:active,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.active,.show>html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.dropdown-toggle{color:#000;background-color:#edf0f2;border-color:#ebeef1}}@media print{.btn-check:checked+html nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html nav.search .input-group .dropdown-toggle:focus,html nav.search .input-group .dropdown-toggle:active:focus,html nav.search .input-group .dropdown-toggle.active:focus,.show>html nav.search .input-group .dropdown-toggle.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus,.btn-check:checked+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus,.btn-check:active+html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:active:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.active:focus,.show>html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.dropdown-toggle:focus{box-shadow:0 0 0 .25rem #c6c9cb80}}@media print{html nav.search .input-group .dropdown-toggle:disabled,html nav.search .input-group .dropdown-toggle.disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle.disabled,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:disabled,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle.disabled{color:#000;background-color:#e9ecef;border-color:#e9ecef}}@media print{html nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:focus,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:focus{box-shadow:unset!important}}@media print{html nav.search .input-group .dropdown-toggle:after,html[data-netbox-color-mode=dark] nav.search .input-group .dropdown-toggle:after,html[data-netbox-color-mode=light] nav.search .input-group .dropdown-toggle:after{display:none}}@media print{html nav.search .input-group .search-obj-selector,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector{max-height:70vh;overflow-y:auto}}@media print{html nav.search .input-group .search-obj-selector .dropdown-item,html nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-item,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-header{font-size:.875rem}}@media print{html nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=dark] nav.search .input-group .search-obj-selector .dropdown-header,html[data-netbox-color-mode=light] nav.search .input-group .search-obj-selector .dropdown-header{text-transform:uppercase}}@media print{html main.layout,html[data-netbox-color-mode=dark] main.layout,html[data-netbox-color-mode=light] main.layout{display:flex;flex-wrap:nowrap;height:100vh;height:-webkit-fill-available;max-height:100vh;overflow-x:auto;overflow-y:hidden}}@media print{html main.layout,html[data-netbox-color-mode=dark] main.layout,html[data-netbox-color-mode=light] main.layout{position:static!important;display:block!important;height:100%;overflow-x:visible!important;overflow-y:visible!important}}@media print{html main.login-container,html[data-netbox-color-mode=dark] main.login-container,html[data-netbox-color-mode=light] main.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;max-width:100vw;height:calc(100vh - 4rem);padding-top:40px;padding-bottom:40px}}@media print{html main.login-container+footer.footer button.color-mode-toggle,html[data-netbox-color-mode=dark] main.login-container+footer.footer button.color-mode-toggle,html[data-netbox-color-mode=light] main.login-container+footer.footer button.color-mode-toggle{color:var(--nbx-color-mode-toggle-color)}}@media print{html .footer,html[data-netbox-color-mode=dark] .footer,html[data-netbox-color-mode=light] .footer{padding:0}}@media print{html .footer .nav-link,html[data-netbox-color-mode=dark] .footer .nav-link,html[data-netbox-color-mode=light] .footer .nav-link{padding:.5rem}}@media print and (max-width: 767.98px){html .footer,html[data-netbox-color-mode=dark] .footer,html[data-netbox-color-mode=light] .footer{margin-bottom:8rem}}@media print{html footer.login-footer,html[data-netbox-color-mode=dark] footer.login-footer,html[data-netbox-color-mode=light] footer.login-footer{height:4rem;margin-top:auto}}@media print{html footer.login-footer .container-fluid,html footer.login-footer .container-sm,html footer.login-footer .container-md,html footer.login-footer .container-lg,html footer.login-footer .container-xl,html footer.login-footer .container-xxl,html[data-netbox-color-mode=dark] footer.login-footer .container-fluid,html[data-netbox-color-mode=light] footer.login-footer .container-fluid{display:flex;justify-content:flex-end;padding:.75rem 1.5rem}}@media print{html h1.accordion-item-title,html .accordion-item-title.h1,html h2.accordion-item-title,html .accordion-item-title.h2,html h3.accordion-item-title,html .accordion-item-title.h3,html h4.accordion-item-title,html .accordion-item-title.h4,html h5.accordion-item-title,html .accordion-item-title.h5,html h6.accordion-item-title,html .accordion-item-title.h6,html[data-netbox-color-mode=dark] h1.accordion-item-title,html[data-netbox-color-mode=dark] h2.accordion-item-title,html[data-netbox-color-mode=dark] h3.accordion-item-title,html[data-netbox-color-mode=dark] h4.accordion-item-title,html[data-netbox-color-mode=dark] h5.accordion-item-title,html[data-netbox-color-mode=dark] h6.accordion-item-title,html[data-netbox-color-mode=light] h1.accordion-item-title,html[data-netbox-color-mode=light] h2.accordion-item-title,html[data-netbox-color-mode=light] h3.accordion-item-title,html[data-netbox-color-mode=light] h4.accordion-item-title,html[data-netbox-color-mode=light] h5.accordion-item-title,html[data-netbox-color-mode=light] h6.accordion-item-title{padding:.25rem .5rem;font-size:.875rem;font-weight:700;color:var(--nbx-sidebar-title-color);text-transform:uppercase}}@media print{html .form-login,html[data-netbox-color-mode=dark] .form-login,html[data-netbox-color-mode=light] .form-login{width:100%;max-width:330px;padding:15px}}@media print{html .form-login input:focus,html[data-netbox-color-mode=dark] .form-login input:focus,html[data-netbox-color-mode=light] .form-login input:focus{z-index:1}}@media print{html .form-login input[type=text],html[data-netbox-color-mode=dark] .form-login input[type=text],html[data-netbox-color-mode=light] .form-login input[type=text]{margin-bottom:-1px;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media print{html .form-login input[type=password],html[data-netbox-color-mode=dark] .form-login input[type=password],html[data-netbox-color-mode=light] .form-login input[type=password]{margin-bottom:10px;border-top-left-radius:0;border-top-right-radius:0}}@media print{html .form-login .form-control,html[data-netbox-color-mode=dark] .form-login .form-control,html[data-netbox-color-mode=light] .form-login .form-control{position:relative;box-sizing:border-box;height:auto;padding:10px;font-size:16px}}@media print{html .navbar-brand,html[data-netbox-color-mode=dark] .navbar-brand,html[data-netbox-color-mode=light] .navbar-brand{padding-top:.75rem;padding-bottom:.75rem;font-size:1rem}}@media print{html nav.nav.nav-pills .nav-item.nav-link,html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link,html[data-netbox-color-mode=light] nav.nav.nav-pills .nav-item.nav-link{padding:.25rem .5rem;font-size:.875rem;border-radius:.375rem}}@media print{html nav.nav.nav-pills .nav-item.nav-link:hover,html[data-netbox-color-mode=dark] nav.nav.nav-pills .nav-item.nav-link:hover,html[data-netbox-color-mode=light] nav.nav.nav-pills .nav-item.nav-link:hover{color:#343a40;background-color:#cfe2ff}}@media print{html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{position:relative;display:flex;flex-direction:column;width:calc(100% - 3rem);min-height:100vh;overflow-x:hidden;overflow-y:auto}}@media print{html div.content-container:focus,html div.content-container:focus-visible,html[data-netbox-color-mode=dark] div.content-container:focus,html[data-netbox-color-mode=dark] div.content-container:focus-visible,html[data-netbox-color-mode=light] div.content-container:focus,html[data-netbox-color-mode=light] div.content-container:focus-visible{outline:0}}@media print{html div.content-container div.content,html[data-netbox-color-mode=dark] div.content-container div.content,html[data-netbox-color-mode=light] div.content-container div.content{flex:1}}@media print and (max-width: 991.98px){html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{width:100%}}@media print{html div.content-container,html[data-netbox-color-mode=dark] div.content-container,html[data-netbox-color-mode=light] div.content-container{width:100%!important;margin-left:0!important}}@media print and (max-width: 768px){html .sidebar.collapse.show~.content-container>.content,html[data-netbox-color-mode=dark] .sidebar.collapse.show~.content-container>.content,html[data-netbox-color-mode=light] .sidebar.collapse.show~.content-container>.content{position:fixed;top:0;left:0;overflow-y:hidden}}@media print{html .tooltip,html[data-netbox-color-mode=dark] .tooltip,html[data-netbox-color-mode=light] .tooltip{pointer-events:none}}@media print{html span.color-label,html[data-netbox-color-mode=dark] span.color-label,html[data-netbox-color-mode=light] span.color-label{display:block;width:5rem;height:1rem;padding:.35em .65em;border:1px solid #303030;border-radius:.375rem;box-shadow:0 .125rem .25rem #00000013}}@media print{html .btn,html[data-netbox-color-mode=dark] .btn,html[data-netbox-color-mode=light] .btn{white-space:nowrap}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{box-shadow:0 .125rem .25rem #00000013}}@media print{html .card .card-header,html[data-netbox-color-mode=dark] .card .card-header,html[data-netbox-color-mode=light] .card .card-header{padding:1rem;color:var(--nbx-body-color);border-bottom:none}}@media print{html .card .card-header+.card-body,html[data-netbox-color-mode=dark] .card .card-header+.card-body,html[data-netbox-color-mode=light] .card .card-header+.card-body{padding-top:0}}@media print{html .card .card-body.small .form-control,html .card .card-body.small .form-select,html[data-netbox-color-mode=dark] .card .card-body.small .form-control,html[data-netbox-color-mode=dark] .card .card-body.small .form-select,html[data-netbox-color-mode=light] .card .card-body.small .form-control,html[data-netbox-color-mode=light] .card .card-body.small .form-select{font-size:.875rem}}@media print{html .card .card-divider,html[data-netbox-color-mode=dark] .card .card-divider,html[data-netbox-color-mode=light] .card .card-divider{width:100%;height:1px;margin:1rem 0;border-top:1px solid rgba(0,0,0,.125);opacity:.25}}@media print{html .card,html[data-netbox-color-mode=dark] .card,html[data-netbox-color-mode=light] .card{box-shadow:unset!important}}@media print{html .form-floating,html[data-netbox-color-mode=dark] .form-floating,html[data-netbox-color-mode=light] .form-floating{position:relative}}@media print{html .form-floating>.input-group>.form-control,html .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}}@media print{html .form-floating>.input-group>label,html[data-netbox-color-mode=dark] .form-floating>.input-group>label,html[data-netbox-color-mode=light] .form-floating>.input-group>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}}@media print and (prefers-reduced-motion: reduce){html .form-floating>.input-group>label,html[data-netbox-color-mode=dark] .form-floating>.input-group>label,html[data-netbox-color-mode=light] .form-floating>.input-group>label{transition:none}}@media print{html .form-floating>.input-group>.form-control::placeholder,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control::placeholder,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control::placeholder{color:transparent}}@media print{html .form-floating>.input-group>.form-control:focus,html .form-floating>.input-group>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown),html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:focus,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-control:-webkit-autofill,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-select,html .form-floating>.choices>.choices__inner,html .form-floating>.ss-main span.placeholder,html .form-floating>.ss-main div.ss-values,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=dark] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=dark] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=dark] .form-floating>.ss-main div.ss-values,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select,html[data-netbox-color-mode=light] .form-floating>.choices>.choices__inner,html[data-netbox-color-mode=light] .form-floating>.ss-main span.placeholder,html[data-netbox-color-mode=light] .form-floating>.ss-main div.ss-values{padding-top:1.625rem;padding-bottom:.625rem}}@media print{html .form-floating>.input-group>.form-control:focus~label,html .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html .form-floating>.input-group>.form-select~label,html .form-floating>.choices~label,html .form-floating>.ss-main~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=dark] .form-floating>.choices~label,html[data-netbox-color-mode=dark] .form-floating>.ss-main~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:focus~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:not(:placeholder-shown)~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-select~label,html[data-netbox-color-mode=light] .form-floating>.choices~label,html[data-netbox-color-mode=light] .form-floating>.ss-main~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem);z-index:4}}@media print{html .form-floating>.input-group>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=dark] .form-floating>.input-group>.form-control:-webkit-autofill~label,html[data-netbox-color-mode=light] .form-floating>.input-group>.form-control:-webkit-autofill~label{z-index:4;opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}}@media print{html .form-object-edit,html[data-netbox-color-mode=dark] .form-object-edit,html[data-netbox-color-mode=light] .form-object-edit{margin:0 auto;max-width:800px}}@media print{html textarea.form-control[rows="10"],html[data-netbox-color-mode=dark] textarea.form-control[rows="10"],html[data-netbox-color-mode=light] textarea.form-control[rows="10"]{height:18rem}}@media print{html textarea#id_local_context_data,html textarea.markdown,html textarea#id_public_key,html textarea.form-control[name=csv],html textarea.form-control[name=data],html[data-netbox-color-mode=dark] textarea#id_local_context_data,html[data-netbox-color-mode=dark] textarea.markdown,html[data-netbox-color-mode=dark] textarea#id_public_key,html[data-netbox-color-mode=dark] textarea.form-control[name=csv],html[data-netbox-color-mode=dark] textarea.form-control[name=data],html[data-netbox-color-mode=light] textarea#id_local_context_data,html[data-netbox-color-mode=light] textarea.markdown,html[data-netbox-color-mode=light] textarea#id_public_key,html[data-netbox-color-mode=light] textarea.form-control[name=csv],html[data-netbox-color-mode=light] textarea.form-control[name=data]{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}}@media print{html .card:not(:only-of-type),html[data-netbox-color-mode=dark] .card:not(:only-of-type),html[data-netbox-color-mode=light] .card:not(:only-of-type){margin-bottom:1rem}}@media print{html .stat-btn,html[data-netbox-color-mode=dark] .stat-btn,html[data-netbox-color-mode=light] .stat-btn{min-width:3rem}}@media print{html nav.breadcrumb-container,html[data-netbox-color-mode=dark] nav.breadcrumb-container,html[data-netbox-color-mode=light] nav.breadcrumb-container{width:fit-content;padding:.35em .65em;font-size:.875rem}}@media print{html nav.breadcrumb-container ol.breadcrumb,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb{margin-bottom:0}}@media print{html nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a{text-decoration:none}}@media print{html nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover,html[data-netbox-color-mode=dark] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover,html[data-netbox-color-mode=light] nav.breadcrumb-container ol.breadcrumb li.breadcrumb-item>a:hover{text-decoration:underline}}@media print{html div.paginator>form>div.input-group,html[data-netbox-color-mode=dark] div.paginator>form>div.input-group,html[data-netbox-color-mode=light] div.paginator>form>div.input-group{width:fit-content}}@media print{html label.required,html[data-netbox-color-mode=dark] label.required,html[data-netbox-color-mode=light] label.required{font-weight:700}}@media print{html label.required:after,html[data-netbox-color-mode=dark] label.required:after,html[data-netbox-color-mode=light] label.required:after{position:absolute;display:inline-block;margin:0 0 0 2px;font-family:"Material Design Icons";font-size:8px;font-style:normal;font-weight:600;text-decoration:none;content:"\f06c4"}}@media print{html div.bulk-buttons,html[data-netbox-color-mode=dark] div.bulk-buttons,html[data-netbox-color-mode=light] div.bulk-buttons{display:flex;justify-content:space-between;margin:.5rem 0}}@media print{html div.bulk-buttons>div.bulk-button-group,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group{display:flex;flex-wrap:wrap;align-items:flex-start}}@media print{html div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group:first-of-type:not(:last-of-type)>*:first-child{margin-left:0}}@media print{html div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group:last-of-type:not(:first-of-type)>*:last-child{margin-right:0}}@media print{html div.bulk-buttons>div.bulk-button-group>*,html[data-netbox-color-mode=dark] div.bulk-buttons>div.bulk-button-group>*,html[data-netbox-color-mode=light] div.bulk-buttons>div.bulk-button-group>*{margin:.25rem}}@media print{html table tbody tr.primary,html[data-netbox-color-mode=dark] table tbody tr.primary,html[data-netbox-color-mode=light] table tbody tr.primary{background-color:#337ab726;border-color:#adb5bd}}@media print{html table tbody tr.secondary,html[data-netbox-color-mode=dark] table tbody tr.secondary,html[data-netbox-color-mode=light] table tbody tr.secondary{background-color:#6c757d26;border-color:#adb5bd}}@media print{html table tbody tr.success,html[data-netbox-color-mode=dark] table tbody tr.success,html[data-netbox-color-mode=light] table tbody tr.success{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.info,html[data-netbox-color-mode=dark] table tbody tr.info,html[data-netbox-color-mode=light] table tbody tr.info{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.warning,html[data-netbox-color-mode=dark] table tbody tr.warning,html[data-netbox-color-mode=light] table tbody tr.warning{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.danger,html[data-netbox-color-mode=dark] table tbody tr.danger,html[data-netbox-color-mode=light] table tbody tr.danger{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.light,html[data-netbox-color-mode=dark] table tbody tr.light,html[data-netbox-color-mode=light] table tbody tr.light{background-color:#f8f9fa26;border-color:#adb5bd}}@media print{html table tbody tr.dark,html[data-netbox-color-mode=dark] table tbody tr.dark,html[data-netbox-color-mode=light] table tbody tr.dark{background-color:#21252926;border-color:#adb5bd}}@media print{html table tbody tr.red,html[data-netbox-color-mode=dark] table tbody tr.red,html[data-netbox-color-mode=light] table tbody tr.red{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.yellow,html[data-netbox-color-mode=dark] table tbody tr.yellow,html[data-netbox-color-mode=light] table tbody tr.yellow{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.green,html[data-netbox-color-mode=dark] table tbody tr.green,html[data-netbox-color-mode=light] table tbody tr.green{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.blue,html[data-netbox-color-mode=dark] table tbody tr.blue,html[data-netbox-color-mode=light] table tbody tr.blue{background-color:#0d6efd26;border-color:#adb5bd}}@media print{html table tbody tr.cyan,html[data-netbox-color-mode=dark] table tbody tr.cyan,html[data-netbox-color-mode=light] table tbody tr.cyan{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.indigo,html[data-netbox-color-mode=dark] table tbody tr.indigo,html[data-netbox-color-mode=light] table tbody tr.indigo{background-color:#6610f226;border-color:#adb5bd}}@media print{html table tbody tr.purple,html[data-netbox-color-mode=dark] table tbody tr.purple,html[data-netbox-color-mode=light] table tbody tr.purple{background-color:#6f42c126;border-color:#adb5bd}}@media print{html table tbody tr.pink,html[data-netbox-color-mode=dark] table tbody tr.pink,html[data-netbox-color-mode=light] table tbody tr.pink{background-color:#d6338426;border-color:#adb5bd}}@media print{html table tbody tr.darker,html[data-netbox-color-mode=dark] table tbody tr.darker,html[data-netbox-color-mode=light] table tbody tr.darker{background-color:#1b1f2226;border-color:#adb5bd}}@media print{html table tbody tr.darkest,html[data-netbox-color-mode=dark] table tbody tr.darkest,html[data-netbox-color-mode=light] table tbody tr.darkest{background-color:#171b1d26;border-color:#adb5bd}}@media print{html table tbody tr.gray,html[data-netbox-color-mode=dark] table tbody tr.gray,html[data-netbox-color-mode=light] table tbody tr.gray{background-color:#ced4da26;border-color:#adb5bd}}@media print{html table tbody tr.gray-100,html[data-netbox-color-mode=dark] table tbody tr.gray-100,html[data-netbox-color-mode=light] table tbody tr.gray-100{background-color:#f8f9fa26;border-color:#adb5bd}}@media print{html table tbody tr.gray-200,html[data-netbox-color-mode=dark] table tbody tr.gray-200,html[data-netbox-color-mode=light] table tbody tr.gray-200{background-color:#e9ecef26;border-color:#adb5bd}}@media print{html table tbody tr.gray-300,html[data-netbox-color-mode=dark] table tbody tr.gray-300,html[data-netbox-color-mode=light] table tbody tr.gray-300{background-color:#dee2e626;border-color:#adb5bd}}@media print{html table tbody tr.gray-400,html[data-netbox-color-mode=dark] table tbody tr.gray-400,html[data-netbox-color-mode=light] table tbody tr.gray-400{background-color:#ced4da26;border-color:#adb5bd}}@media print{html table tbody tr.gray-500,html[data-netbox-color-mode=dark] table tbody tr.gray-500,html[data-netbox-color-mode=light] table tbody tr.gray-500{background-color:#adb5bd26;border-color:#adb5bd}}@media print{html table tbody tr.gray-600,html[data-netbox-color-mode=dark] table tbody tr.gray-600,html[data-netbox-color-mode=light] table tbody tr.gray-600{background-color:#6c757d26;border-color:#adb5bd}}@media print{html table tbody tr.gray-700,html[data-netbox-color-mode=dark] table tbody tr.gray-700,html[data-netbox-color-mode=light] table tbody tr.gray-700{background-color:#49505726;border-color:#adb5bd}}@media print{html table tbody tr.gray-800,html[data-netbox-color-mode=dark] table tbody tr.gray-800,html[data-netbox-color-mode=light] table tbody tr.gray-800{background-color:#343a4026;border-color:#adb5bd}}@media print{html table tbody tr.gray-900,html[data-netbox-color-mode=dark] table tbody tr.gray-900,html[data-netbox-color-mode=light] table tbody tr.gray-900{background-color:#21252926;border-color:#adb5bd}}@media print{html table tbody tr.red-100,html[data-netbox-color-mode=dark] table tbody tr.red-100,html[data-netbox-color-mode=light] table tbody tr.red-100{background-color:#f8d7da26;border-color:#adb5bd}}@media print{html table tbody tr.red-200,html[data-netbox-color-mode=dark] table tbody tr.red-200,html[data-netbox-color-mode=light] table tbody tr.red-200{background-color:#f1aeb526;border-color:#adb5bd}}@media print{html table tbody tr.red-300,html[data-netbox-color-mode=dark] table tbody tr.red-300,html[data-netbox-color-mode=light] table tbody tr.red-300{background-color:#ea868f26;border-color:#adb5bd}}@media print{html table tbody tr.red-400,html[data-netbox-color-mode=dark] table tbody tr.red-400,html[data-netbox-color-mode=light] table tbody tr.red-400{background-color:#e35d6a26;border-color:#adb5bd}}@media print{html table tbody tr.red-500,html[data-netbox-color-mode=dark] table tbody tr.red-500,html[data-netbox-color-mode=light] table tbody tr.red-500{background-color:#dc354526;border-color:#adb5bd}}@media print{html table tbody tr.red-600,html[data-netbox-color-mode=dark] table tbody tr.red-600,html[data-netbox-color-mode=light] table tbody tr.red-600{background-color:#b02a3726;border-color:#adb5bd}}@media print{html table tbody tr.red-700,html[data-netbox-color-mode=dark] table tbody tr.red-700,html[data-netbox-color-mode=light] table tbody tr.red-700{background-color:#84202926;border-color:#adb5bd}}@media print{html table tbody tr.red-800,html[data-netbox-color-mode=dark] table tbody tr.red-800,html[data-netbox-color-mode=light] table tbody tr.red-800{background-color:#58151c26;border-color:#adb5bd}}@media print{html table tbody tr.red-900,html[data-netbox-color-mode=dark] table tbody tr.red-900,html[data-netbox-color-mode=light] table tbody tr.red-900{background-color:#2c0b0e26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-100,html[data-netbox-color-mode=dark] table tbody tr.yellow-100,html[data-netbox-color-mode=light] table tbody tr.yellow-100{background-color:#fff3cd26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-200,html[data-netbox-color-mode=dark] table tbody tr.yellow-200,html[data-netbox-color-mode=light] table tbody tr.yellow-200{background-color:#ffe69c26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-300,html[data-netbox-color-mode=dark] table tbody tr.yellow-300,html[data-netbox-color-mode=light] table tbody tr.yellow-300{background-color:#ffda6a26;border-color:#adb5bd}}@media print{html table tbody tr.yellow-400,html[data-netbox-color-mode=dark] table tbody tr.yellow-400,html[data-netbox-color-mode=light] table tbody tr.yellow-400{background-color:#ffcd3926;border-color:#adb5bd}}@media print{html table tbody tr.yellow-500,html[data-netbox-color-mode=dark] table tbody tr.yellow-500,html[data-netbox-color-mode=light] table tbody tr.yellow-500{background-color:#ffc10726;border-color:#adb5bd}}@media print{html table tbody tr.yellow-600,html[data-netbox-color-mode=dark] table tbody tr.yellow-600,html[data-netbox-color-mode=light] table tbody tr.yellow-600{background-color:#cc9a0626;border-color:#adb5bd}}@media print{html table tbody tr.yellow-700,html[data-netbox-color-mode=dark] table tbody tr.yellow-700,html[data-netbox-color-mode=light] table tbody tr.yellow-700{background-color:#99740426;border-color:#adb5bd}}@media print{html table tbody tr.yellow-800,html[data-netbox-color-mode=dark] table tbody tr.yellow-800,html[data-netbox-color-mode=light] table tbody tr.yellow-800{background-color:#664d0326;border-color:#adb5bd}}@media print{html table tbody tr.yellow-900,html[data-netbox-color-mode=dark] table tbody tr.yellow-900,html[data-netbox-color-mode=light] table tbody tr.yellow-900{background-color:#33270126;border-color:#adb5bd}}@media print{html table tbody tr.green-100,html[data-netbox-color-mode=dark] table tbody tr.green-100,html[data-netbox-color-mode=light] table tbody tr.green-100{background-color:#d1e7dd26;border-color:#adb5bd}}@media print{html table tbody tr.green-200,html[data-netbox-color-mode=dark] table tbody tr.green-200,html[data-netbox-color-mode=light] table tbody tr.green-200{background-color:#a3cfbb26;border-color:#adb5bd}}@media print{html table tbody tr.green-300,html[data-netbox-color-mode=dark] table tbody tr.green-300,html[data-netbox-color-mode=light] table tbody tr.green-300{background-color:#75b79826;border-color:#adb5bd}}@media print{html table tbody tr.green-400,html[data-netbox-color-mode=dark] table tbody tr.green-400,html[data-netbox-color-mode=light] table tbody tr.green-400{background-color:#479f7626;border-color:#adb5bd}}@media print{html table tbody tr.green-500,html[data-netbox-color-mode=dark] table tbody tr.green-500,html[data-netbox-color-mode=light] table tbody tr.green-500{background-color:#19875426;border-color:#adb5bd}}@media print{html table tbody tr.green-600,html[data-netbox-color-mode=dark] table tbody tr.green-600,html[data-netbox-color-mode=light] table tbody tr.green-600{background-color:#146c4326;border-color:#adb5bd}}@media print{html table tbody tr.green-700,html[data-netbox-color-mode=dark] table tbody tr.green-700,html[data-netbox-color-mode=light] table tbody tr.green-700{background-color:#0f513226;border-color:#adb5bd}}@media print{html table tbody tr.green-800,html[data-netbox-color-mode=dark] table tbody tr.green-800,html[data-netbox-color-mode=light] table tbody tr.green-800{background-color:#0a362226;border-color:#adb5bd}}@media print{html table tbody tr.green-900,html[data-netbox-color-mode=dark] table tbody tr.green-900,html[data-netbox-color-mode=light] table tbody tr.green-900{background-color:#051b1126;border-color:#adb5bd}}@media print{html table tbody tr.blue-100,html[data-netbox-color-mode=dark] table tbody tr.blue-100,html[data-netbox-color-mode=light] table tbody tr.blue-100{background-color:#cfe2ff26;border-color:#adb5bd}}@media print{html table tbody tr.blue-200,html[data-netbox-color-mode=dark] table tbody tr.blue-200,html[data-netbox-color-mode=light] table tbody tr.blue-200{background-color:#9ec5fe26;border-color:#adb5bd}}@media print{html table tbody tr.blue-300,html[data-netbox-color-mode=dark] table tbody tr.blue-300,html[data-netbox-color-mode=light] table tbody tr.blue-300{background-color:#6ea8fe26;border-color:#adb5bd}}@media print{html table tbody tr.blue-400,html[data-netbox-color-mode=dark] table tbody tr.blue-400,html[data-netbox-color-mode=light] table tbody tr.blue-400{background-color:#3d8bfd26;border-color:#adb5bd}}@media print{html table tbody tr.blue-500,html[data-netbox-color-mode=dark] table tbody tr.blue-500,html[data-netbox-color-mode=light] table tbody tr.blue-500{background-color:#0d6efd26;border-color:#adb5bd}}@media print{html table tbody tr.blue-600,html[data-netbox-color-mode=dark] table tbody tr.blue-600,html[data-netbox-color-mode=light] table tbody tr.blue-600{background-color:#0a58ca26;border-color:#adb5bd}}@media print{html table tbody tr.blue-700,html[data-netbox-color-mode=dark] table tbody tr.blue-700,html[data-netbox-color-mode=light] table tbody tr.blue-700{background-color:#08429826;border-color:#adb5bd}}@media print{html table tbody tr.blue-800,html[data-netbox-color-mode=dark] table tbody tr.blue-800,html[data-netbox-color-mode=light] table tbody tr.blue-800{background-color:#052c6526;border-color:#adb5bd}}@media print{html table tbody tr.blue-900,html[data-netbox-color-mode=dark] table tbody tr.blue-900,html[data-netbox-color-mode=light] table tbody tr.blue-900{background-color:#03163326;border-color:#adb5bd}}@media print{html table tbody tr.cyan-100,html[data-netbox-color-mode=dark] table tbody tr.cyan-100,html[data-netbox-color-mode=light] table tbody tr.cyan-100{background-color:#cff4fc26;border-color:#adb5bd}}@media print{html table tbody tr.cyan-200,html[data-netbox-color-mode=dark] table tbody tr.cyan-200,html[data-netbox-color-mode=light] table tbody tr.cyan-200{background-color:#9eeaf926;border-color:#adb5bd}}@media print{html table tbody tr.cyan-300,html[data-netbox-color-mode=dark] table tbody tr.cyan-300,html[data-netbox-color-mode=light] table tbody tr.cyan-300{background-color:#6edff626;border-color:#adb5bd}}@media print{html table tbody tr.cyan-400,html[data-netbox-color-mode=dark] table tbody tr.cyan-400,html[data-netbox-color-mode=light] table tbody tr.cyan-400{background-color:#3dd5f326;border-color:#adb5bd}}@media print{html table tbody tr.cyan-500,html[data-netbox-color-mode=dark] table tbody tr.cyan-500,html[data-netbox-color-mode=light] table tbody tr.cyan-500{background-color:#0dcaf026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-600,html[data-netbox-color-mode=dark] table tbody tr.cyan-600,html[data-netbox-color-mode=light] table tbody tr.cyan-600{background-color:#0aa2c026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-700,html[data-netbox-color-mode=dark] table tbody tr.cyan-700,html[data-netbox-color-mode=light] table tbody tr.cyan-700{background-color:#08799026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-800,html[data-netbox-color-mode=dark] table tbody tr.cyan-800,html[data-netbox-color-mode=light] table tbody tr.cyan-800{background-color:#05516026;border-color:#adb5bd}}@media print{html table tbody tr.cyan-900,html[data-netbox-color-mode=dark] table tbody tr.cyan-900,html[data-netbox-color-mode=light] table tbody tr.cyan-900{background-color:#03283026;border-color:#adb5bd}}@media print{html table tbody tr.indigo-100,html[data-netbox-color-mode=dark] table tbody tr.indigo-100,html[data-netbox-color-mode=light] table tbody tr.indigo-100{background-color:#e0cffc26;border-color:#adb5bd}}@media print{html table tbody tr.indigo-200,html[data-netbox-color-mode=dark] table tbody tr.indigo-200,html[data-netbox-color-mode=light] table tbody tr.indigo-200{background-color:#c29ffa26;border-color:#adb5bd}}@media print{html table tbody tr.indigo-300,html[data-netbox-color-mode=dark] table tbody tr.indigo-300,html[data-netbox-color-mode=light] table tbody tr.indigo-300{background-color:#a370f726;border-color:#adb5bd}}@media print{html table tbody tr.indigo-400,html[data-netbox-color-mode=dark] table tbody tr.indigo-400,html[data-netbox-color-mode=light] table tbody tr.indigo-400{background-color:#8540f526;border-color:#adb5bd}}@media print{html table tbody tr.indigo-500,html[data-netbox-color-mode=dark] table tbody tr.indigo-500,html[data-netbox-color-mode=light] table tbody tr.indigo-500{background-color:#6610f226;border-color:#adb5bd}}@media print{html table tbody tr.indigo-600,html[data-netbox-color-mode=dark] table tbody tr.indigo-600,html[data-netbox-color-mode=light] table tbody tr.indigo-600{background-color:#520dc226;border-color:#adb5bd}}@media print{html table tbody tr.indigo-700,html[data-netbox-color-mode=dark] table tbody tr.indigo-700,html[data-netbox-color-mode=light] table tbody tr.indigo-700{background-color:#3d0a9126;border-color:#adb5bd}}@media print{html table tbody tr.indigo-800,html[data-netbox-color-mode=dark] table tbody tr.indigo-800,html[data-netbox-color-mode=light] table tbody tr.indigo-800{background-color:#29066126;border-color:#adb5bd}}@media print{html table tbody tr.indigo-900,html[data-netbox-color-mode=dark] table tbody tr.indigo-900,html[data-netbox-color-mode=light] table tbody tr.indigo-900{background-color:#14033026;border-color:#adb5bd}}@media print{html table tbody tr.purple-100,html[data-netbox-color-mode=dark] table tbody tr.purple-100,html[data-netbox-color-mode=light] table tbody tr.purple-100{background-color:#e2d9f326;border-color:#adb5bd}}@media print{html table tbody tr.purple-200,html[data-netbox-color-mode=dark] table tbody tr.purple-200,html[data-netbox-color-mode=light] table tbody tr.purple-200{background-color:#c5b3e626;border-color:#adb5bd}}@media print{html table tbody tr.purple-300,html[data-netbox-color-mode=dark] table tbody tr.purple-300,html[data-netbox-color-mode=light] table tbody tr.purple-300{background-color:#a98eda26;border-color:#adb5bd}}@media print{html table tbody tr.purple-400,html[data-netbox-color-mode=dark] table tbody tr.purple-400,html[data-netbox-color-mode=light] table tbody tr.purple-400{background-color:#8c68cd26;border-color:#adb5bd}}@media print{html table tbody tr.purple-500,html[data-netbox-color-mode=dark] table tbody tr.purple-500,html[data-netbox-color-mode=light] table tbody tr.purple-500{background-color:#6f42c126;border-color:#adb5bd}}@media print{html table tbody tr.purple-600,html[data-netbox-color-mode=dark] table tbody tr.purple-600,html[data-netbox-color-mode=light] table tbody tr.purple-600{background-color:#59359a26;border-color:#adb5bd}}@media print{html table tbody tr.purple-700,html[data-netbox-color-mode=dark] table tbody tr.purple-700,html[data-netbox-color-mode=light] table tbody tr.purple-700{background-color:#43287426;border-color:#adb5bd}}@media print{html table tbody tr.purple-800,html[data-netbox-color-mode=dark] table tbody tr.purple-800,html[data-netbox-color-mode=light] table tbody tr.purple-800{background-color:#2c1a4d26;border-color:#adb5bd}}@media print{html table tbody tr.purple-900,html[data-netbox-color-mode=dark] table tbody tr.purple-900,html[data-netbox-color-mode=light] table tbody tr.purple-900{background-color:#160d2726;border-color:#adb5bd}}@media print{html table tbody tr.pink-100,html[data-netbox-color-mode=dark] table tbody tr.pink-100,html[data-netbox-color-mode=light] table tbody tr.pink-100{background-color:#f7d6e626;border-color:#adb5bd}}@media print{html table tbody tr.pink-200,html[data-netbox-color-mode=dark] table tbody tr.pink-200,html[data-netbox-color-mode=light] table tbody tr.pink-200{background-color:#efadce26;border-color:#adb5bd}}@media print{html table tbody tr.pink-300,html[data-netbox-color-mode=dark] table tbody tr.pink-300,html[data-netbox-color-mode=light] table tbody tr.pink-300{background-color:#e685b526;border-color:#adb5bd}}@media print{html table tbody tr.pink-400,html[data-netbox-color-mode=dark] table tbody tr.pink-400,html[data-netbox-color-mode=light] table tbody tr.pink-400{background-color:#de5c9d26;border-color:#adb5bd}}@media print{html table tbody tr.pink-500,html[data-netbox-color-mode=dark] table tbody tr.pink-500,html[data-netbox-color-mode=light] table tbody tr.pink-500{background-color:#d6338426;border-color:#adb5bd}}@media print{html table tbody tr.pink-600,html[data-netbox-color-mode=dark] table tbody tr.pink-600,html[data-netbox-color-mode=light] table tbody tr.pink-600{background-color:#ab296a26;border-color:#adb5bd}}@media print{html table tbody tr.pink-700,html[data-netbox-color-mode=dark] table tbody tr.pink-700,html[data-netbox-color-mode=light] table tbody tr.pink-700{background-color:#801f4f26;border-color:#adb5bd}}@media print{html table tbody tr.pink-800,html[data-netbox-color-mode=dark] table tbody tr.pink-800,html[data-netbox-color-mode=light] table tbody tr.pink-800{background-color:#56143526;border-color:#adb5bd}}@media print{html table tbody tr.pink-900,html[data-netbox-color-mode=dark] table tbody tr.pink-900,html[data-netbox-color-mode=light] table tbody tr.pink-900{background-color:#2b0a1a26;border-color:#adb5bd}}@media print{html table .table-badge-group .table-badge,html[data-netbox-color-mode=dark] table .table-badge-group .table-badge,html[data-netbox-color-mode=light] table .table-badge-group .table-badge{display:block;width:min-content;font-size:.875rem;font-weight:400}}@media print{html table .table-badge-group .table-badge:not(.badge),html[data-netbox-color-mode=dark] table .table-badge-group .table-badge:not(.badge),html[data-netbox-color-mode=light] table .table-badge-group .table-badge:not(.badge){padding:0 .65em}}@media print{html table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child),html[data-netbox-color-mode=dark] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child),html[data-netbox-color-mode=light] table .table-badge-group .table-badge.badge:not(:last-of-type):not(:only-child){margin-bottom:.5rem}}@media print{html pre.change-data,html[data-netbox-color-mode=dark] pre.change-data,html[data-netbox-color-mode=light] pre.change-data{padding-right:0;padding-left:0}}@media print{html pre.change-data>span,html[data-netbox-color-mode=dark] pre.change-data>span,html[data-netbox-color-mode=light] pre.change-data>span{display:block;padding-right:1rem;padding-left:1rem}}@media print{html pre.change-data>span.added,html[data-netbox-color-mode=dark] pre.change-data>span.added,html[data-netbox-color-mode=light] pre.change-data>span.added{background-color:var(--nbx-change-added)}}@media print{html pre.change-data>span.removed,html[data-netbox-color-mode=dark] pre.change-data>span.removed,html[data-netbox-color-mode=light] pre.change-data>span.removed{background-color:var(--nbx-change-removed)}}@media print{html pre.change-diff,html[data-netbox-color-mode=dark] pre.change-diff,html[data-netbox-color-mode=light] pre.change-diff{border-color:transparent}}@media print{html pre.change-diff.change-removed,html[data-netbox-color-mode=dark] pre.change-diff.change-removed,html[data-netbox-color-mode=light] pre.change-diff.change-removed{background-color:var(--nbx-change-removed)}}@media print{html pre.change-diff.change-added,html[data-netbox-color-mode=dark] pre.change-diff.change-added,html[data-netbox-color-mode=light] pre.change-diff.change-added{background-color:var(--nbx-change-added)}}@media print{html div.card-overlay,html[data-netbox-color-mode=dark] div.card-overlay,html[data-netbox-color-mode=light] div.card-overlay{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#ffffffbf;border-radius:.375rem}}@media print{html div.card-overlay>div.spinner-border,html[data-netbox-color-mode=dark] div.card-overlay>div.spinner-border,html[data-netbox-color-mode=light] div.card-overlay>div.spinner-border{width:6rem;height:6rem;color:#6c757d}}@media print{html .table-controls,html[data-netbox-color-mode=dark] .table-controls,html[data-netbox-color-mode=light] .table-controls{display:flex}}@media print and (min-width: 768px){html .table-controls,html[data-netbox-color-mode=dark] .table-controls,html[data-netbox-color-mode=light] .table-controls{margin-top:0!important;margin-bottom:0!important}}@media print{html .table-controls .table-configure,html[data-netbox-color-mode=dark] .table-controls .table-configure,html[data-netbox-color-mode=light] .table-controls .table-configure{justify-content:flex-start}}@media print and (min-width: 768px){html .table-controls .table-configure,html[data-netbox-color-mode=dark] .table-controls .table-configure,html[data-netbox-color-mode=light] .table-controls .table-configure{justify-content:flex-end}}@media print{html .table-controls .form-switch.form-check-inline,html[data-netbox-color-mode=dark] .table-controls .form-switch.form-check-inline,html[data-netbox-color-mode=light] .table-controls .form-switch.form-check-inline{flex:1 0 auto;font-size:.875rem}}@media print{html .paginator,html[data-netbox-color-mode=dark] .paginator,html[data-netbox-color-mode=light] .paginator{display:flex;flex-direction:column;align-items:flex-end;padding:1rem 0}}@media print{html .nav-tabs .nav-link:hover,html[data-netbox-color-mode=dark] .nav-tabs .nav-link:hover,html[data-netbox-color-mode=light] .nav-tabs .nav-link:hover{border-bottom-color:transparent}}@media print{html .nav-tabs .nav-link.active,html[data-netbox-color-mode=dark] .nav-tabs .nav-link.active,html[data-netbox-color-mode=light] .nav-tabs .nav-link.active{background-color:#f8f9fa;border-bottom-color:#f8f9fa;transform:translateY(1px)}}@media print{html .tab-content,html[data-netbox-color-mode=dark] .tab-content,html[data-netbox-color-mode=light] .tab-content{display:flex;flex-direction:column;padding:1rem;background-color:#f8f9fa;border-bottom:1px solid #dee2e6}}@media print{html .tab-content,html[data-netbox-color-mode=dark] .tab-content,html[data-netbox-color-mode=light] .tab-content{background-color:var(--nbx-body-bg)!important;border-bottom:none!important}}@media print{html .masonry,html[data-netbox-color-mode=dark] .masonry,html[data-netbox-color-mode=light] .masonry{position:static!important;display:block!important;height:unset!important}}@media print{html .masonry .masonry-item,html[data-netbox-color-mode=dark] .masonry .masonry-item,html[data-netbox-color-mode=light] .masonry .masonry-item{position:static!important;top:unset!important;left:unset!important;display:block!important}}@media print{html .record-depth,html[data-netbox-color-mode=dark] .record-depth,html[data-netbox-color-mode=light] .record-depth{display:inline;font-size:1rem;user-select:none;opacity:.33}}@media print{html .record-depth span:only-of-type,html .record-depth span:last-of-type,html[data-netbox-color-mode=dark] .record-depth span:only-of-type,html[data-netbox-color-mode=dark] .record-depth span:last-of-type,html[data-netbox-color-mode=light] .record-depth span:only-of-type,html[data-netbox-color-mode=light] .record-depth span:last-of-type{margin-right:.25rem}}@media print{html .popover.image-preview-popover,html[data-netbox-color-mode=dark] .popover.image-preview-popover,html[data-netbox-color-mode=light] .popover.image-preview-popover{max-width:unset}}@media print{html #django-messages,html[data-netbox-color-mode=dark] #django-messages,html[data-netbox-color-mode=light] #django-messages{position:fixed;right:1rem;bottom:0;margin:1rem}}@media print{html html[data-netbox-url-name=home] .content-container,html html[data-netbox-url-name=home] .search,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home] .search,html[data-netbox-color-mode=light] html[data-netbox-url-name=home] .content-container,html[data-netbox-color-mode=light] html[data-netbox-url-name=home] .search{background-color:#f8f9fa!important}}@media print{html html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=dark] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search,html[data-netbox-color-mode=light] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .content-container,html[data-netbox-color-mode=light] html[data-netbox-url-name=home][data-netbox-color-mode=dark] .search{background-color:#171b1d!important}}@media print{html html[data-netbox-url-name=login] #django-messages,html[data-netbox-color-mode=dark] html[data-netbox-url-name=login] #django-messages,html[data-netbox-color-mode=light] html[data-netbox-url-name=login] #django-messages{display:none}} diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index cc12e4855..6a60ff56d 100644 --- a/netbox/project-static/dist/netbox.js +++ b/netbox/project-static/dist/netbox.js @@ -14,7 +14,7 @@ color: ${a} !important; } `.replaceAll(` -`,"").trim(),document.head.appendChild(o)}}resetClasses(){let e=this.slim.slim;if(e)for(let n of this.base.classList)e.container.classList.remove(n)}initResetButton(){let e=Ve(this.base,"button[data-reset-select]");e!==null&&e.addEventListener("click",()=>{window.location.assign(window.location.origin+window.location.pathname)})}initRefreshButton(){if(this.allowRefresh){let e=Vn("button",{type:"button"},["btn","btn-sm","btn-ghost-dark"],[Vn("i",null,["mdi","mdi-reload"])]);e.addEventListener("click",()=>this.loadData()),e.type="button",this.slim.slim.search.container.appendChild(e)}}};function Gg(){for(let t of j(".netbox-api-select"))new Al(t)}function Xg(t){return typeof t.value=="string"&&t.value!==""}function Qg(t,e){if(t.slim.singleSelected!==null)if(Xg(e)){let n=`#${e.value}`,i=Vi(n);t.slim.singleSelected.container.style.backgroundColor=n,t.slim.singleSelected.container.style.color=i}else t.slim.singleSelected.container.removeAttribute("style")}function Jg(){for(let t of j("select.netbox-color-select")){for(let n of t.options)if(Xg(n)){let i=`#${n.value}`,o=Vi(i);n.style.backgroundColor=i,n.style.color=o}let e=new Un({select:t,allowDeselect:!0,deselectLabel:''});for(let n of e.data.data)if("selected"in n&&n.selected){Qg(e,n);break}for(let n of t.classList)e.slim.container.classList.remove(n);e.onChange=n=>Qg(e,n)}}function Zg(){for(let t of j(".netbox-static-select"))if(t!==null){let e=document.querySelector(`label[for="${t.id}"]`),n;e!==null&&(n=`Select ${e.innerText.trim()}`);let i=new Un({select:t,allowDeselect:!0,deselectLabel:'',placeholder:n});for(let o of t.classList)i.slim.container.classList.remove(o)}}function ev(){for(let t of[Gg,Jg,Zg])t()}function QL(t){let e=t.getAttribute("data-url"),n=t.classList.contains("connected"),i=n?"planned":"connected";re(e)&&So(e,{status:i}).then(o=>{var s;if(Wn(o)){Sn("danger","Error",o.error).show();return}else{let a=(s=t.parentElement)==null?void 0:s.parentElement,c=t.querySelector("i.mdi, span.mdi");n?(a.classList.remove("success"),a.classList.add("info"),t.classList.remove("connected","btn-warning"),t.classList.add("btn-info"),t.title="Mark Installed",c.classList.remove("mdi-lan-disconnect"),c.classList.add("mdi-lan-connect")):(a.classList.remove("info"),a.classList.add("success"),t.classList.remove("btn-success"),t.classList.add("connected","btn-warning"),t.title="Mark Installed",c.classList.remove("mdi-lan-connect"),c.classList.add("mdi-lan-disconnect"))}})}function tv(){for(let t of j("button.cable-toggle"))t.addEventListener("click",()=>QL(t))}var nv=class{set(e,n,i){return e[n]=i,!0}get(e,n){return e[n]}has(e,n){return n in e}},Io=class{constructor(e,n){Q(this,"handlers");Q(this,"proxy");Q(this,"options");Q(this,"key","");if(this.options=n,typeof this.options.key=="string"?this.key=this.options.key:this.key=this.generateStateKey(e),this.options.persist){let i=this.retrieve();i!==null&&(e=K(K({},e),i))}this.handlers=new nv,this.proxy=new Proxy(e,this.handlers),this.options.persist&&this.save()}generateStateKey(e){return`netbox-${window.btoa(Object.keys(e).join("---"))}`}get(e){return this.handlers.get(this.proxy,e)}set(e,n){this.handlers.set(this.proxy,e,n),this.options.persist&&this.save()}all(){return this.proxy}keys(){return Object.keys(this.proxy)}values(){return Object.values(this.proxy)}save(){let e=JSON.stringify(this.proxy);localStorage.setItem(this.key,e)}retrieve(){let e=localStorage.getItem(this.key);return e!==null?JSON.parse(e):null}};function ko(t,e={}){return new Io(t,e)}var Cl=ko({hidden:!1},{persist:!0,key:"netbox-object-depth"});var Ll=ko({view:"images-and-labels"},{persist:!0});function iv(t,e){e.setAttribute("data-depth-indicators",t?"hidden":"shown"),e.innerText=t?"Show Depth Indicators":"Hide Depth Indicators"}function rv(){for(let t of j(".record-depth"))t.style.display=""}function ov(){for(let t of j(".record-depth"))t.style.display="none"}function JL(t,e){let n=t.get("hidden");t.set("hidden",!n);let i=t.get("hidden");i?ov():rv(),iv(i,e)}function sv(){let t=Cl.get("hidden");for(let e of j("button.toggle-depth"))iv(t,e),e.addEventListener("click",n=>{JL(Cl,n.currentTarget)},!1);t?ov():t||rv()}function ZL(t){let e=Array.from(t.options);for(let n=1;n=0;n--){let i=e[n];if(i.selected){let o=t.options[n+1];i=t.removeChild(i),o=t.replaceChild(i,o),t.insertBefore(o,i)}}}function av(){for(let t of j("#move-option-up")){let e=t.getAttribute("data-target");if(e!==null)for(let n of j(`#${e}`))t.addEventListener("click",()=>ZL(n))}for(let t of j("#move-option-down")){let e=t.getAttribute("data-target");if(e!==null)for(let n of j(`#${e}`))t.addEventListener("click",()=>eD(n))}}function tD(t){let e=t.currentTarget;e.form!==null&&e.form.submit()}function lv(){for(let t of j("select.per-page"))t.addEventListener("change",tD)}var Kn="netbox-color-mode",nD="Light Mode",iD="Dark Mode",cv="mdi-lightbulb-on",uv="mdi-lightbulb";function rD(t){return t==="dark"||t==="light"}function oD(t){return localStorage.setItem(Kn,t)}function sD(t){var e,n;document.documentElement.setAttribute(`data-${Kn}`,t);for(let i of j("span.color-mode-text"))t==="light"?i.innerText=iD:t==="dark"&&(i.innerText=nD);for(let i of j("i.color-mode-icon","span.color-mode-icon"))t==="light"?(i.classList.remove(cv),i.classList.add(uv)):t==="dark"&&(i.classList.remove(uv),i.classList.add(cv));for(let i of j(".rack_elevation")){let o=(n=(e=i.contentDocument)==null?void 0:e.querySelector("svg"))!=null?n:null;o!==null&&o.setAttribute(`data-${Kn}`,t)}}function Ke(t){for(let e of[oD,sD])e(t)}function aD(){let t=localStorage.getItem(Kn);t==="light"?Ke("dark"):t==="dark"?Ke("light"):console.warn("Unable to determine the current color mode")}function lD(){let t=localStorage.getItem(Kn),e=document.documentElement.getAttribute(`data-${Kn}`);if(re(e)&&re(t))return Ke(t);let n="none";for(let i of["dark","light"])if(window.matchMedia(`(prefers-color-scheme: ${i})`).matches){n=i;break}if(re(t)&&!re(e)&&rD(t))return Ke(t);switch(n){case"dark":return Ke("dark");case"light":return Ke("light");case"none":return Ke("light");default:return Ke("light")}}function cD(){for(let t of j("button.color-mode-toggle"))t.addEventListener("click",aD)}function dv(){window.addEventListener("load",lD);for(let t of[cD])t()}function uD(t){let e=t.currentTarget,n=new FormData(e);n.get("ui.colormode")==="dark"?Ke("dark"):n.get("ui.colormode")==="light"&&Ke("light")}function fv(){let t=ae("preferences-update");t!==null&&t.addEventListener("submit",uD)}function hv(t,e){return t.replace(/[^\-.\w\s]/g,"").replace(/^[\s.]+|[\s.]+$/g,"").replace(/[-.\s]+/g,"-").toLowerCase().substring(0,e)}function pv(){let t=document.getElementById("id_slug"),e=document.getElementById("reslug");if(t===null||e===null)return;let n=t.getAttribute("slug-source"),i=document.getElementById(`id_${n}`);if(i===null){console.error("Unable to find field for slug field.");return}let o=t.getAttribute("maxlength"),s=50;o&&(s=Number(o)),i.addEventListener("blur",()=>{t.value=hv(i.value,s)}),e.addEventListener("click",()=>{t.value=hv(i.value,s)})}function dD(t){if(!t.currentTarget.checked)for(let n of j('input[type="checkbox"].toggle',"input#select-all"))n.checked=!1}function fD(t){let e=t.currentTarget,n=Ve(e,"table"),i=document.getElementById("select-all-box"),o=document.getElementById("select-all");if(n!==null){for(let s of n.querySelectorAll('tr:not(.d-none) input[type="checkbox"][name="pk"]'))e.checked?s.checked=!0:s.checked=!1;i!==null&&(e.checked?i.classList.remove("d-none"):(i.classList.add("d-none"),o!==null&&(o.checked=!1)))}}function hD(t){let e=t.currentTarget,n=ae("select-all-box");if(n!==null)for(let i of n.querySelectorAll('button[type="submit"]'))e.checked?i.disabled=!1:i.disabled=!0}function mv(){for(let e of j('table tr th > input[type="checkbox"].toggle'))e.addEventListener("change",fD);for(let e of j('input[type="checkbox"][name="pk"]'))e.addEventListener("change",dD);let t=ae("select-all");t!==null&&t.addEventListener("change",hD)}function gv(){for(let t of[sv,tv,pv,mv,fv,lv,av])t()}function vv(){let t=document.querySelectorAll("body > div#django-messages > div.django-message.toast");for(let e of t)e!==null&&new _t(e).show()}var yv=Le(bv());function Ev(){for(let t of j("a.copy-token","button.copy-secret"))new yv.default(t)}var Po=Le(_v());function Sv(){(0,Po.default)(".date-picker",{allowInput:!0}),(0,Po.default)(".datetime-picker",{allowInput:!0,enableSeconds:!0,enableTime:!0,time_24hr:!0}),(0,Po.default)(".time-picker",{allowInput:!0,enableSeconds:!0,enableTime:!0,noCalendar:!0,time_24hr:!0})}function pD(){for(let t of j('select[name="columns"] option'))t.selected=!0}function mD(){for(let t of j('select[name="columns"]'))t.value=""}function gD(t){for(let e of j("#id_available_columns > option"))if(e.selected){for(let n of j("#id_columns"))n.appendChild(e.cloneNode(!0));e.remove()}t.preventDefault()}function vD(t){for(let e of j("#id_columns > option"))if(e.selected){for(let n of j("#id_available_columns"))n.appendChild(e.cloneNode(!0));e.remove()}t.preventDefault()}function bD(t,e){return Pe(this,null,function*(){return yield So(t,e)})}function yD(t){var c,d;t.preventDefault();let e=t.currentTarget,n=e.getAttribute("data-url");if(n==null){Sn("danger","Error Updating Table Configuration","No API path defined for configuration form.").show();return}let i=Zm(e),o=Object.assign({},...i.map(u=>({[u.name]:u.options}))),a=((d=(c=e.getAttribute("data-config-root"))==null?void 0:c.split("."))!=null?d:[]).reduceRight((u,l)=>({[l]:u}),o);bD(n,a).then(u=>{Wn(u)?Sn("danger","Error Updating Table Configuration",u.error).show():location.reload()})}function wv(){for(let t of j("#save_tableconfig"))t.addEventListener("click",pD);for(let t of j("#reset_tableconfig"))t.addEventListener("click",mD);for(let t of j("#add_columns"))t.addEventListener("click",gD);for(let t of j("#remove_columns"))t.addEventListener("click",vD);for(let t of j("form.userconfigform"))t.addEventListener("submit",yD)}function Tv(t){return typeof t=="string"&&["show","hide"].includes(t)}var No=class extends Error{constructor(e,n){super(e);Q(this,"table");this.table=n}},kl=class{constructor(e,n){Q(this,"button");Q(this,"enabledRows");Q(this,"disabledRows");this.button=e,this.enabledRows=n.querySelectorAll('tr[data-enabled="enabled"]'),this.disabledRows=n.querySelectorAll('tr[data-enabled="disabled"]')}get directive(){if(this.button.classList.contains("toggle-disabled"))return"disabled";if(this.button.classList.contains("toggle-enabled"))return"enabled";throw console.warn(this.button),new Error("Toggle button does not contain expected class")}toggleEnabledRows(){for(let e of this.enabledRows)e.classList.toggle("d-none")}toggleDisabledRows(){for(let e of this.disabledRows)e.classList.toggle("d-none")}set buttonState(e){Tv(e)&&this.button.setAttribute("data-state",e)}get buttonState(){let e=this.button.getAttribute("data-state");return Tv(e)?e:null}toggleButton(){this.buttonState==="show"?this.button.innerText=this.button.innerText.replaceAll("Show","Hide"):this.buttonState==="hide"&&(this.button.innerText=this.button.innerText.replaceAll("Hide","Show"))}toggleRows(){this.directive==="enabled"?this.toggleEnabledRows():this.directive==="disabled"&&this.toggleDisabledRows()}toggleState(){this.buttonState==="show"?this.buttonState="hide":this.buttonState==="hide"&&(this.buttonState="show")}toggle(){this.toggleState(),this.toggleButton(),this.toggleRows()}handleClick(e){e.currentTarget.isEqualNode(this.button)&&this.toggle()}},xv=class{constructor(e){Q(this,"table");Q(this,"enabledButton");Q(this,"disabledButton");Q(this,"caption",null);this.table=e;try{let n=Ve(this.table,"button.toggle-enabled"),i=Ve(this.table,"button.toggle-disabled"),o=this.table.querySelector("caption");if(this.caption=o,n===null)throw new No("Table is missing a 'toggle-enabled' button.",e);if(i===null)throw new No("Table is missing a 'toggle-disabled' button.",e);n.addEventListener("click",s=>this.handleClick(s,this)),i.addEventListener("click",s=>this.handleClick(s,this)),this.enabledButton=new kl(n,this.table),this.disabledButton=new kl(i,this.table)}catch(n){if(n instanceof No){console.debug("Table does not contain enable/disable toggle buttons");return}else throw n}}get captionText(){return this.caption!==null?this.caption.innerText:""}set captionText(e){this.caption!==null&&(this.caption.innerText=e)}toggleCaption(){let e=this.enabledButton.buttonState==="show",n=this.disabledButton.buttonState==="show";e&&!n?this.captionText="Showing Enabled Interfaces":e&&n?this.captionText="Showing Enabled & Disabled Interfaces":!e&&n?this.captionText="Showing Disabled Interfaces":!e&&!n?this.captionText="Hiding Enabled & Disabled Interfaces":this.captionText=""}handleClick(e,n){let i=e.currentTarget,o=i.isEqualNode(n.enabledButton.button),s=i.isEqualNode(n.disabledButton.button);o?n.enabledButton.handleClick(e):s&&n.disabledButton.handleClick(e),n.toggleCaption()}};function Ov(){for(let t of j("table"))new xv(t)}var Av=class{constructor(e){Q(this,"base");Q(this,"state");Q(this,"activeLink",null);Q(this,"sections",[]);this.base=e,this.state=new Io({pinned:!0},{persist:!0,key:"netbox-sidenav"}),this.init(),this.initSectionLinks(),this.initLinks()}bodyHas(e){return document.body.hasAttribute(`data-sidenav-${e}`)}bodyRemove(...e){for(let n of e)document.body.removeAttribute(`data-sidenav-${n}`)}bodyAdd(...e){for(let n of e)document.body.setAttribute(`data-sidenav-${n}`,"")}init(){for(let e of this.base.querySelectorAll(".sidenav-toggle"))e.addEventListener("click",n=>this.onToggle(n));for(let e of j(".sidenav-toggle-mobile"))e.addEventListener("click",n=>this.onMobileToggle(n));window.innerWidth>1200&&(this.state.get("pinned")&&this.pin(),this.state.get("pinned")||this.unpin(),window.addEventListener("resize",()=>this.onResize())),window.innerWidth<1200&&(this.bodyRemove("hide"),this.bodyAdd("hidden"),window.addEventListener("resize",()=>this.onResize())),this.base.addEventListener("mouseenter",()=>this.onEnter()),this.base.addEventListener("mouseleave",()=>this.onLeave())}initLinks(){for(let e of this.getActiveLinks())this.bodyHas("show")?this.activateLink(e,"expand"):this.bodyHas("hidden")&&this.activateLink(e,"collapse")}show(){this.bodyAdd("show"),this.bodyRemove("hidden","hide")}hide(){this.bodyAdd("hidden"),this.bodyRemove("pinned","show");for(let e of this.base.querySelectorAll(".collapse"))e.classList.remove("show")}pin(){this.bodyAdd("show","pinned"),this.bodyRemove("hidden"),this.state.set("pinned",!0)}unpin(){this.bodyRemove("pinned","show"),this.bodyAdd("hidden");for(let e of this.base.querySelectorAll(".collapse"))e.classList.remove("show");this.state.set("pinned",!1)}handleSectionClick(e){e.preventDefault();let n=e.target;this.activeLink=n,this.closeInactiveSections()}closeInactiveSections(){for(let[e,n]of this.sections)e!==this.activeLink&&(e.classList.add("collapsed"),e.setAttribute("aria-expanded","false"),n.hide())}initSectionLinks(){for(let e of j(".navbar-nav .nav-item .nav-link[data-bs-toggle]"))if(e.parentElement!==null){let n=e.parentElement.querySelector(".collapse");if(n!==null){let i=new Me(n,{toggle:!1});this.sections.push([e,i]),e.addEventListener("click",o=>this.handleSectionClick(o))}}}activateLink(e,n){var o;let i=e.closest(".collapse");if(bl(i)){let s=(o=i.parentElement)==null?void 0:o.querySelector(".nav-link");if(bl(s))switch(s.classList.add("active"),n){case"expand":s.setAttribute("aria-expanded","true"),i.classList.add("show"),e.classList.add("active");break;case"collapse":s.setAttribute("aria-expanded","false"),i.classList.remove("show"),e.classList.remove("active");break}}}*getActiveLinks(){for(let e of this.base.querySelectorAll(".navbar-nav .nav .nav-item a.nav-link")){let n=new RegExp(e.href,"gi");window.location.href.match(n)&&(yield e)}}onEnter(){if(!this.bodyHas("pinned")){this.bodyRemove("hide","hidden"),this.bodyAdd("show");for(let e of this.getActiveLinks())this.activateLink(e,"expand")}}onLeave(){if(!this.bodyHas("pinned")){this.bodyRemove("show"),this.bodyAdd("hide");for(let e of this.getActiveLinks())this.activateLink(e,"collapse");setTimeout(()=>{this.bodyRemove("hide"),this.bodyAdd("hidden")},300)}}onResize(){this.bodyHas("show")&&!this.bodyHas("pinned")&&(this.bodyRemove("show"),this.bodyAdd("hidden"))}onToggle(e){e.preventDefault(),this.state.get("pinned")?this.unpin():this.pin()}onMobileToggle(e){e.preventDefault(),this.bodyHas("hidden")?this.show():this.hide()}};function Cv(){for(let t of j(".sidenav"))new Av(t)}function Lv(t,e){switch(t){case"images-and-labels":{Pl("image.device-image",e),Pl("text.device-image-label",e);break}case"images-only":{Pl("image.device-image",e),Nl("text.device-image-label",e);break}case"labels-only":{Nl("image.device-image",e),Nl("text.device-image-label",e);break}}}function Pl(t,e){var i,o;let n=(o=(i=e.contentDocument)==null?void 0:i.querySelectorAll(t))!=null?o:[];for(let s of n)s.classList.remove("hidden")}function Nl(t,e){var i,o;let n=(o=(i=e.contentDocument)==null?void 0:i.querySelectorAll(t))!=null?o:[];for(let s of n)s.classList.add("hidden")}function ED(t,e){e.set("view",t);for(let n of j(".rack_elevation"))Lv(t,n)}function Dv(){let t=Ll.get("view");for(let e of j("select.rack-view"))e.selectedIndex=[...e.options].findIndex(n=>n.value==t),e.addEventListener("change",n=>{ED(n.currentTarget.value,Ll)},!1);for(let e of j(".rack_elevation"))e.addEventListener("load",()=>{Lv(t,e)})}function Mv(){for(let t of j("*[data-href]")){let e=t.getAttribute("data-href");re(e)&&t.addEventListener("click",()=>{window.location.assign(e)})}}function Iv(){for(let t of[gg,dv,vv,lg,bg,ev,Sv,gv,Ev,wv,Ov,Cv,Dv,Mv])t()}function _D(){let t=document.querySelector(".content-container");t!==null&&t.focus()}window.addEventListener("load",_D);document.readyState!=="loading"?Iv():document.addEventListener("DOMContentLoaded",Iv);})(); +`,"").trim(),document.head.appendChild(o)}}resetClasses(){let e=this.slim.slim;if(e)for(let n of this.base.classList)e.container.classList.remove(n)}initResetButton(){let e=Ve(this.base,"button[data-reset-select]");e!==null&&e.addEventListener("click",()=>{window.location.assign(window.location.origin+window.location.pathname)})}initRefreshButton(){if(this.allowRefresh){let e=Vn("button",{type:"button"},["btn","btn-sm","btn-ghost-dark"],[Vn("i",null,["mdi","mdi-reload"])]);e.addEventListener("click",()=>this.loadData()),e.type="button",this.slim.slim.search.container.appendChild(e)}}};function Gg(){for(let t of j(".netbox-api-select"))new Al(t)}function Xg(t){return typeof t.value=="string"&&t.value!==""}function Qg(t,e){if(t.slim.singleSelected!==null)if(Xg(e)){let n=`#${e.value}`,i=Vi(n);t.slim.singleSelected.container.style.backgroundColor=n,t.slim.singleSelected.container.style.color=i}else t.slim.singleSelected.container.removeAttribute("style")}function Jg(){for(let t of j("select.netbox-color-select")){for(let n of t.options)if(Xg(n)){let i=`#${n.value}`,o=Vi(i);n.style.backgroundColor=i,n.style.color=o}let e=new Un({select:t,allowDeselect:!0,deselectLabel:''});for(let n of e.data.data)if("selected"in n&&n.selected){Qg(e,n);break}for(let n of t.classList)e.slim.container.classList.remove(n);e.onChange=n=>Qg(e,n)}}function Zg(){for(let t of j(".netbox-static-select"))if(t!==null){let e=document.querySelector(`label[for="${t.id}"]`),n;e!==null&&(n=`Select ${e.innerText.trim()}`);let i=new Un({select:t,allowDeselect:!0,deselectLabel:'',placeholder:n});for(let o of t.classList)i.slim.container.classList.remove(o)}}function ev(){for(let t of[Gg,Jg,Zg])t()}function QL(t){let e=t.getAttribute("data-url"),n=t.classList.contains("connected"),i=n?"planned":"connected";re(e)&&So(e,{status:i}).then(o=>{var s;if(Wn(o)){Sn("danger","Error",o.error).show();return}else{let a=(s=t.parentElement)==null?void 0:s.parentElement,c=t.querySelector("i.mdi, span.mdi");n?(a.classList.remove("success"),a.classList.add("info"),t.classList.remove("connected","btn-warning"),t.classList.add("btn-info"),t.title="Mark Installed",c.classList.remove("mdi-lan-disconnect"),c.classList.add("mdi-lan-connect")):(a.classList.remove("info"),a.classList.add("success"),t.classList.remove("btn-success"),t.classList.add("connected","btn-warning"),t.title="Mark Installed",c.classList.remove("mdi-lan-connect"),c.classList.add("mdi-lan-disconnect"))}})}function tv(){for(let t of j("button.cable-toggle"))t.addEventListener("click",()=>QL(t))}var nv=class{set(e,n,i){return e[n]=i,!0}get(e,n){return e[n]}has(e,n){return n in e}},Io=class{constructor(e,n){Q(this,"handlers");Q(this,"proxy");Q(this,"options");Q(this,"key","");if(this.options=n,typeof this.options.key=="string"?this.key=this.options.key:this.key=this.generateStateKey(e),this.options.persist){let i=this.retrieve();i!==null&&(e=K(K({},e),i))}this.handlers=new nv,this.proxy=new Proxy(e,this.handlers),this.options.persist&&this.save()}generateStateKey(e){return`netbox-${window.btoa(Object.keys(e).join("---"))}`}get(e){return this.handlers.get(this.proxy,e)}set(e,n){this.handlers.set(this.proxy,e,n),this.options.persist&&this.save()}all(){return this.proxy}keys(){return Object.keys(this.proxy)}values(){return Object.values(this.proxy)}save(){let e=JSON.stringify(this.proxy);localStorage.setItem(this.key,e)}retrieve(){let e=localStorage.getItem(this.key);return e!==null?JSON.parse(e):null}};function ko(t,e={}){return new Io(t,e)}var Cl=ko({hidden:!1},{persist:!0,key:"netbox-object-depth"});var Ll=ko({view:"images-and-labels"},{persist:!0});function iv(t,e){e.setAttribute("data-depth-indicators",t?"hidden":"shown"),e.innerText=t?"Show Depth Indicators":"Hide Depth Indicators"}function rv(){for(let t of j(".record-depth"))t.style.display=""}function ov(){for(let t of j(".record-depth"))t.style.display="none"}function JL(t,e){let n=t.get("hidden");t.set("hidden",!n);let i=t.get("hidden");i?ov():rv(),iv(i,e)}function sv(){let t=Cl.get("hidden");for(let e of j("button.toggle-depth"))iv(t,e),e.addEventListener("click",n=>{JL(Cl,n.currentTarget)},!1);t?ov():t||rv()}function ZL(t){let e=Array.from(t.options);for(let n=1;n=0;n--){let i=e[n];if(i.selected){let o=t.options[n+1];i=t.removeChild(i),o=t.replaceChild(i,o),t.insertBefore(o,i)}}}function av(){for(let t of j("#move-option-up")){let e=t.getAttribute("data-target");if(e!==null)for(let n of j(`#${e}`))t.addEventListener("click",()=>ZL(n))}for(let t of j("#move-option-down")){let e=t.getAttribute("data-target");if(e!==null)for(let n of j(`#${e}`))t.addEventListener("click",()=>eD(n))}}function tD(t){let e=t.currentTarget;e.form!==null&&e.form.submit()}function lv(){for(let t of j("select.per-page"))t.addEventListener("change",tD)}var Kn="netbox-color-mode",nD="Light Mode",iD="Dark Mode",cv="mdi-lightbulb-on",uv="mdi-lightbulb";function rD(t){return t==="dark"||t==="light"}function oD(t){return localStorage.setItem(Kn,t)}function sD(t){var e,n;document.documentElement.setAttribute(`data-${Kn}`,t);for(let i of j("span.color-mode-text"))t==="light"?i.innerText=iD:t==="dark"&&(i.innerText=nD);for(let i of j("i.color-mode-icon","span.color-mode-icon"))t==="light"?(i.classList.remove(cv),i.classList.add(uv)):t==="dark"&&(i.classList.remove(uv),i.classList.add(cv));for(let i of j(".rack_elevation")){let o=(n=(e=i.contentDocument)==null?void 0:e.querySelector("svg"))!=null?n:null;o!==null&&o.setAttribute(`data-${Kn}`,t)}}function Ke(t){for(let e of[oD,sD])e(t)}function aD(){let t=localStorage.getItem(Kn);t==="light"?Ke("dark"):t==="dark"?Ke("light"):console.warn("Unable to determine the current color mode")}function lD(){let t=localStorage.getItem(Kn),e=document.documentElement.getAttribute(`data-${Kn}`);if(re(e)&&re(t))return Ke(t);let n="none";for(let i of["dark","light"])if(window.matchMedia(`(prefers-color-scheme: ${i})`).matches){n=i;break}if(re(t)&&!re(e)&&rD(t))return Ke(t);switch(n){case"dark":return Ke("dark");case"light":return Ke("light");case"none":return Ke("light");default:return Ke("light")}}function cD(){for(let t of j("button.color-mode-toggle"))t.addEventListener("click",aD)}function dv(){window.addEventListener("load",lD);for(let t of[cD])t()}function uD(t){let e=t.currentTarget,n=new FormData(e);n.get("ui.colormode")==="dark"?Ke("dark"):n.get("ui.colormode")==="light"&&Ke("light")}function fv(){let t=ae("preferences-update");t!==null&&t.addEventListener("submit",uD)}function hv(t,e){return t.replace(/[^\-.\w\s]/g,"").replace(/^[\s.]+|[\s.]+$/g,"").replace(/[-.\s]+/g,"-").toLowerCase().substring(0,e)}function pv(){let t=document.getElementById("id_slug"),e=document.getElementById("reslug");if(t===null||e===null)return;let n=t.getAttribute("slug-source"),i=document.getElementById(`id_${n}`);if(i===null){console.error("Unable to find field for slug field.");return}let o=t.getAttribute("maxlength"),s=50;o&&(s=Number(o)),i.addEventListener("blur",()=>{t.value=hv(i.value,s)}),e.addEventListener("click",()=>{t.value=hv(i.value,s)})}function dD(t){if(!t.currentTarget.checked)for(let n of j('input[type="checkbox"].toggle',"input#select-all"))n.checked=!1}function fD(t){let e=t.currentTarget,n=Ve(e,"table"),i=document.getElementById("select-all-box"),o=document.getElementById("select-all");if(n!==null){for(let s of n.querySelectorAll('tr:not(.d-none) input[type="checkbox"][name="pk"]'))e.checked?s.checked=!0:s.checked=!1;i!==null&&(e.checked?i.classList.remove("d-none"):(i.classList.add("d-none"),o!==null&&(o.checked=!1)))}}function hD(t){let e=t.currentTarget,n=ae("select-all-box");if(n!==null)for(let i of n.querySelectorAll('button[type="submit"]'))e.checked?i.disabled=!1:i.disabled=!0}function mv(){for(let e of j('table tr th > input[type="checkbox"].toggle'))e.addEventListener("change",fD);for(let e of j('input[type="checkbox"][name="pk"]'))e.addEventListener("change",dD);let t=ae("select-all");t!==null&&t.addEventListener("change",hD)}function gv(){for(let t of[sv,tv,pv,mv,fv,lv,av])t()}function vv(){let t=document.querySelectorAll("body > div#django-messages > div.django-message.toast");for(let e of t)e!==null&&new _t(e).show()}var yv=Le(bv());function Ev(){for(let t of j("a.copy-token","button.copy-secret"))new yv.default(t)}var Po=Le(_v());function Sv(){(0,Po.default)(".date-picker",{allowInput:!0}),(0,Po.default)(".datetime-picker",{allowInput:!0,enableSeconds:!0,enableTime:!0,time_24hr:!0}),(0,Po.default)(".time-picker",{allowInput:!0,enableSeconds:!0,enableTime:!0,noCalendar:!0,time_24hr:!0})}function pD(){for(let t of j('select[name="columns"] option'))t.selected=!0}function mD(){for(let t of j('select[name="columns"]'))t.value=""}function gD(t){for(let e of j("#id_available_columns > option"))if(e.selected){for(let n of j("#id_columns"))n.appendChild(e.cloneNode(!0));e.remove()}t.preventDefault()}function vD(t){for(let e of j("#id_columns > option"))if(e.selected){for(let n of j("#id_available_columns"))n.appendChild(e.cloneNode(!0));e.remove()}t.preventDefault()}function bD(t,e){return Pe(this,null,function*(){return yield So(t,e)})}function yD(t){var c,d;t.preventDefault();let e=t.currentTarget,n=e.getAttribute("data-url");if(n==null){Sn("danger","Error Updating Table Configuration","No API path defined for configuration form.").show();return}let i=Zm(e),o=Object.assign({},...i.map(u=>({[u.name]:u.options}))),a=((d=(c=e.getAttribute("data-config-root"))==null?void 0:c.split("."))!=null?d:[]).reduceRight((u,l)=>({[l]:u}),o);bD(n,a).then(u=>{Wn(u)?Sn("danger","Error Updating Table Configuration",u.error).show():location.reload()})}function wv(){for(let t of j("#save_tableconfig"))t.addEventListener("click",pD);for(let t of j("#reset_tableconfig"))t.addEventListener("click",mD);for(let t of j("#add_columns"))t.addEventListener("click",gD);for(let t of j("#remove_columns"))t.addEventListener("click",vD);for(let t of j("form.userconfigform"))t.addEventListener("submit",yD)}function Tv(t){return typeof t=="string"&&["show","hide"].includes(t)}var No=class extends Error{constructor(e,n){super(e);Q(this,"table");this.table=n}},kl=class{constructor(e,n){Q(this,"button");Q(this,"enabledRows");Q(this,"disabledRows");this.button=e,this.enabledRows=n.querySelectorAll('tr[data-enabled="enabled"]'),this.disabledRows=n.querySelectorAll('tr[data-enabled="disabled"]')}get directive(){if(this.button.classList.contains("toggle-disabled"))return"disabled";if(this.button.classList.contains("toggle-enabled"))return"enabled";throw console.warn(this.button),new Error("Toggle button does not contain expected class")}toggleEnabledRows(){for(let e of this.enabledRows)e.classList.toggle("d-none")}toggleDisabledRows(){for(let e of this.disabledRows)e.classList.toggle("d-none")}set buttonState(e){Tv(e)&&this.button.setAttribute("data-state",e)}get buttonState(){let e=this.button.getAttribute("data-state");return Tv(e)?e:null}toggleButton(){this.buttonState==="show"?this.button.innerText=this.button.innerText.replaceAll("Show","Hide"):this.buttonState==="hide"&&(this.button.innerText=this.button.innerText.replaceAll("Hide","Show"))}toggleRows(){this.directive==="enabled"?this.toggleEnabledRows():this.directive==="disabled"&&this.toggleDisabledRows()}toggleState(){this.buttonState==="show"?this.buttonState="hide":this.buttonState==="hide"&&(this.buttonState="show")}toggle(){this.toggleState(),this.toggleButton(),this.toggleRows()}handleClick(e){e.currentTarget.isEqualNode(this.button)&&this.toggle()}},xv=class{constructor(e){Q(this,"table");Q(this,"enabledButton");Q(this,"disabledButton");Q(this,"caption",null);this.table=e;try{let n=Ve(this.table,"button.toggle-enabled"),i=Ve(this.table,"button.toggle-disabled"),o=this.table.querySelector("caption");if(this.caption=o,n===null)throw new No("Table is missing a 'toggle-enabled' button.",e);if(i===null)throw new No("Table is missing a 'toggle-disabled' button.",e);n.addEventListener("click",s=>this.handleClick(s,this)),i.addEventListener("click",s=>this.handleClick(s,this)),this.enabledButton=new kl(n,this.table),this.disabledButton=new kl(i,this.table)}catch(n){if(n instanceof No){console.debug("Table does not contain enable/disable toggle buttons");return}else throw n}}get captionText(){return this.caption!==null?this.caption.innerText:""}set captionText(e){this.caption!==null&&(this.caption.innerText=e)}toggleCaption(){let e=this.enabledButton.buttonState==="show",n=this.disabledButton.buttonState==="show";e&&!n?this.captionText="Showing Enabled Interfaces":e&&n?this.captionText="Showing Enabled & Disabled Interfaces":!e&&n?this.captionText="Showing Disabled Interfaces":!e&&!n?this.captionText="Hiding Enabled & Disabled Interfaces":this.captionText=""}handleClick(e,n){let i=e.currentTarget,o=i.isEqualNode(n.enabledButton.button),s=i.isEqualNode(n.disabledButton.button);o?n.enabledButton.handleClick(e):s&&n.disabledButton.handleClick(e),n.toggleCaption()}};function Ov(){for(let t of j("table"))new xv(t)}var Av=class{constructor(e){Q(this,"base");Q(this,"state");Q(this,"activeLink",null);Q(this,"sections",[]);this.base=e,this.state=new Io({pinned:!0},{persist:!0,key:"netbox-sidenav"}),this.init(),this.initSectionLinks(),this.initLinks()}bodyHas(e){return document.body.hasAttribute(`data-sidenav-${e}`)}bodyRemove(...e){for(let n of e)document.body.removeAttribute(`data-sidenav-${n}`)}bodyAdd(...e){for(let n of e)document.body.setAttribute(`data-sidenav-${n}`,"")}init(){for(let e of this.base.querySelectorAll(".sidenav-toggle"))e.addEventListener("click",n=>this.onToggle(n));for(let e of j(".sidenav-toggle-mobile"))e.addEventListener("click",n=>this.onMobileToggle(n));window.innerWidth>1200&&(this.state.get("pinned")&&this.pin(),this.state.get("pinned")||this.unpin(),window.addEventListener("resize",()=>this.onResize())),window.innerWidth<1200&&(this.bodyRemove("hide"),this.bodyAdd("hidden"),window.addEventListener("resize",()=>this.onResize())),this.base.addEventListener("mouseenter",()=>this.onEnter()),this.base.addEventListener("mouseleave",()=>this.onLeave())}initLinks(){for(let e of this.getActiveLinks())this.bodyHas("show")?this.activateLink(e,"expand"):this.bodyHas("hidden")&&this.activateLink(e,"collapse")}show(){this.bodyAdd("show"),this.bodyRemove("hidden","hide")}hide(){this.bodyAdd("hidden"),this.bodyRemove("pinned","show");for(let e of this.base.querySelectorAll(".collapse"))e.classList.remove("show")}pin(){this.bodyAdd("show","pinned"),this.bodyRemove("hidden"),this.state.set("pinned",!0)}unpin(){this.bodyRemove("pinned","show"),this.bodyAdd("hidden");for(let e of this.base.querySelectorAll(".collapse"))e.classList.remove("show");this.state.set("pinned",!1)}handleSectionClick(e){e.preventDefault();let n=e.target;this.activeLink=n,this.closeInactiveSections()}closeInactiveSections(){for(let[e,n]of this.sections)e!==this.activeLink&&(e.classList.add("collapsed"),e.setAttribute("aria-expanded","false"),n.hide())}initSectionLinks(){for(let e of j(".navbar-nav .nav-item .nav-link[data-bs-toggle]"))if(e.parentElement!==null){let n=e.parentElement.querySelector(".collapse");if(n!==null){let i=new Me(n,{toggle:!1});this.sections.push([e,i]),e.addEventListener("click",o=>this.handleSectionClick(o))}}}activateLink(e,n){var o;let i=e.closest(".collapse");if(bl(i)){let s=(o=i.parentElement)==null?void 0:o.querySelector(".nav-link");if(bl(s))switch(s.classList.add("active"),n){case"expand":s.setAttribute("aria-expanded","true"),i.classList.add("show"),e.classList.add("active");break;case"collapse":s.setAttribute("aria-expanded","false"),i.classList.remove("show"),e.classList.remove("active");break}}}*getActiveLinks(){for(let e of this.base.querySelectorAll(".navbar-nav .nav .nav-item a.nav-link")){let n=new RegExp(e.href,"gi");window.location.href.match(n)&&(yield e)}}onEnter(){if(!this.bodyHas("pinned")){this.bodyRemove("hide","hidden"),this.bodyAdd("show");for(let e of this.getActiveLinks())this.activateLink(e,"expand")}}onLeave(){if(!this.bodyHas("pinned")){this.bodyRemove("show"),this.bodyAdd("hide");for(let e of this.getActiveLinks())this.activateLink(e,"collapse");this.bodyRemove("hide"),this.bodyAdd("hidden")}}onResize(){this.bodyHas("show")&&!this.bodyHas("pinned")&&(this.bodyRemove("show"),this.bodyAdd("hidden"))}onToggle(e){e.preventDefault(),this.state.get("pinned")?this.unpin():this.pin()}onMobileToggle(e){e.preventDefault(),this.bodyHas("hidden")?this.show():this.hide()}};function Cv(){for(let t of j(".sidenav"))new Av(t)}function Lv(t,e){switch(t){case"images-and-labels":{Pl("image.device-image",e),Pl("text.device-image-label",e);break}case"images-only":{Pl("image.device-image",e),Nl("text.device-image-label",e);break}case"labels-only":{Nl("image.device-image",e),Nl("text.device-image-label",e);break}}}function Pl(t,e){var i,o;let n=(o=(i=e.contentDocument)==null?void 0:i.querySelectorAll(t))!=null?o:[];for(let s of n)s.classList.remove("hidden")}function Nl(t,e){var i,o;let n=(o=(i=e.contentDocument)==null?void 0:i.querySelectorAll(t))!=null?o:[];for(let s of n)s.classList.add("hidden")}function ED(t,e){e.set("view",t);for(let n of j(".rack_elevation"))Lv(t,n)}function Dv(){let t=Ll.get("view");for(let e of j("select.rack-view"))e.selectedIndex=[...e.options].findIndex(n=>n.value==t),e.addEventListener("change",n=>{ED(n.currentTarget.value,Ll)},!1);for(let e of j(".rack_elevation"))e.addEventListener("load",()=>{Lv(t,e)})}function Mv(){for(let t of j("*[data-href]")){let e=t.getAttribute("data-href");re(e)&&t.addEventListener("click",()=>{window.location.assign(e)})}}function Iv(){for(let t of[gg,dv,vv,lg,bg,ev,Sv,gv,Ev,wv,Ov,Cv,Dv,Mv])t()}function _D(){let t=document.querySelector(".content-container");t!==null&&t.focus()}window.addEventListener("load",_D);document.readyState!=="loading"?Iv():document.addEventListener("DOMContentLoaded",Iv);})(); /* flatpickr v4.6.3, @license MIT */ /*! * Bootstrap v5.0.2 (https://getbootstrap.com/) diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index a67c6cbd8..ba7d8cd2f 100644 --- a/netbox/project-static/dist/netbox.js.map +++ b/netbox/project-static/dist/netbox.js.map @@ -1,6 +1,6 @@ { "version": 3, "sources": ["../node_modules/core-js/internals/global.js", "../node_modules/core-js/internals/fails.js", "../node_modules/core-js/internals/descriptors.js", "../node_modules/core-js/internals/object-property-is-enumerable.js", "../node_modules/core-js/internals/create-property-descriptor.js", "../node_modules/core-js/internals/classof-raw.js", "../node_modules/core-js/internals/indexed-object.js", "../node_modules/core-js/internals/require-object-coercible.js", "../node_modules/core-js/internals/to-indexed-object.js", "../node_modules/core-js/internals/is-object.js", "../node_modules/core-js/internals/get-built-in.js", "../node_modules/core-js/internals/engine-user-agent.js", "../node_modules/core-js/internals/engine-v8-version.js", "../node_modules/core-js/internals/native-symbol.js", "../node_modules/core-js/internals/use-symbol-as-uid.js", "../node_modules/core-js/internals/is-symbol.js", "../node_modules/core-js/internals/ordinary-to-primitive.js", "../node_modules/core-js/internals/is-pure.js", "../node_modules/core-js/internals/set-global.js", "../node_modules/core-js/internals/shared-store.js", "../node_modules/core-js/internals/shared.js", "../node_modules/core-js/internals/to-object.js", "../node_modules/core-js/internals/has.js", "../node_modules/core-js/internals/uid.js", "../node_modules/core-js/internals/well-known-symbol.js", "../node_modules/core-js/internals/to-primitive.js", "../node_modules/core-js/internals/to-property-key.js", "../node_modules/core-js/internals/document-create-element.js", "../node_modules/core-js/internals/ie8-dom-define.js", "../node_modules/core-js/internals/object-get-own-property-descriptor.js", "../node_modules/core-js/internals/an-object.js", "../node_modules/core-js/internals/object-define-property.js", "../node_modules/core-js/internals/create-non-enumerable-property.js", "../node_modules/core-js/internals/inspect-source.js", "../node_modules/core-js/internals/native-weak-map.js", "../node_modules/core-js/internals/shared-key.js", "../node_modules/core-js/internals/hidden-keys.js", "../node_modules/core-js/internals/internal-state.js", "../node_modules/core-js/internals/redefine.js", "../node_modules/core-js/internals/to-integer.js", "../node_modules/core-js/internals/to-length.js", "../node_modules/core-js/internals/to-absolute-index.js", "../node_modules/core-js/internals/array-includes.js", "../node_modules/core-js/internals/object-keys-internal.js", "../node_modules/core-js/internals/enum-bug-keys.js", "../node_modules/core-js/internals/object-get-own-property-names.js", "../node_modules/core-js/internals/object-get-own-property-symbols.js", "../node_modules/core-js/internals/own-keys.js", "../node_modules/core-js/internals/copy-constructor-properties.js", "../node_modules/core-js/internals/is-forced.js", "../node_modules/core-js/internals/export.js", "../node_modules/core-js/internals/a-function.js", "../node_modules/core-js/internals/function-bind-context.js", "../node_modules/core-js/internals/is-array.js", "../node_modules/core-js/internals/array-species-constructor.js", "../node_modules/core-js/internals/array-species-create.js", "../node_modules/core-js/internals/array-iteration.js", "../node_modules/core-js/internals/array-method-is-strict.js", "../node_modules/core-js/internals/array-for-each.js", "../node_modules/core-js/internals/dom-iterables.js", "../node_modules/can-use-dom/index.js", "../node_modules/core-js/internals/array-method-has-species-support.js", "../node_modules/core-js/internals/object-keys.js", "../node_modules/core-js/internals/object-define-properties.js", "../node_modules/core-js/internals/html.js", "../node_modules/core-js/internals/object-create.js", "../node_modules/core-js/internals/add-to-unscopables.js", "../node_modules/core-js/internals/iterators.js", "../node_modules/core-js/internals/correct-prototype-getter.js", "../node_modules/core-js/internals/object-get-prototype-of.js", "../node_modules/core-js/internals/iterators-core.js", "../node_modules/core-js/internals/set-to-string-tag.js", "../node_modules/core-js/internals/create-iterator-constructor.js", "../node_modules/core-js/internals/a-possible-prototype.js", "../node_modules/core-js/internals/object-set-prototype-of.js", "../node_modules/core-js/internals/define-iterator.js", "../node_modules/core-js/modules/es.array.iterator.js", "../node_modules/core-js/internals/object-assign.js", "../node_modules/core-js/internals/to-string-tag-support.js", "../node_modules/core-js/internals/classof.js", "../node_modules/core-js/internals/object-to-string.js", "../node_modules/core-js/internals/to-string.js", "../node_modules/core-js/internals/whitespaces.js", "../node_modules/core-js/internals/string-trim.js", "../node_modules/core-js/internals/number-parse-int.js", "../node_modules/core-js/internals/string-multibyte.js", "../node_modules/core-js/internals/redefine-all.js", "../node_modules/core-js/internals/object-get-own-property-names-external.js", "../node_modules/core-js/internals/freezing.js", "../node_modules/core-js/internals/internal-metadata.js", "../node_modules/core-js/internals/is-array-iterator-method.js", "../node_modules/core-js/internals/get-iterator-method.js", "../node_modules/core-js/internals/get-iterator.js", "../node_modules/core-js/internals/iterator-close.js", "../node_modules/core-js/internals/iterate.js", "../node_modules/core-js/internals/an-instance.js", "../node_modules/core-js/internals/check-correctness-of-iteration.js", "../node_modules/core-js/internals/inherit-if-required.js", "../node_modules/core-js/internals/collection.js", "../node_modules/core-js/internals/collection-weak.js", "../node_modules/core-js/modules/es.weak-map.js", "../node_modules/lodash.throttle/index.js", "../node_modules/lodash.debounce/index.js", "../node_modules/lodash.memoize/index.js", "../node_modules/core-js/internals/array-reduce.js", "../node_modules/core-js/internals/engine-is-node.js", "../node_modules/core-js/internals/regexp-flags.js", "../node_modules/core-js/internals/regexp-sticky-helpers.js", "../node_modules/core-js/internals/regexp-unsupported-dot-all.js", "../node_modules/core-js/internals/regexp-unsupported-ncg.js", "../node_modules/core-js/internals/regexp-exec.js", "../node_modules/core-js/modules/es.regexp.exec.js", "../node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js", "../node_modules/core-js/internals/advance-string-index.js", "../node_modules/core-js/internals/regexp-exec-abstract.js", "../node_modules/core-js/internals/get-substitution.js", "../node_modules/cookie/index.js", "../node_modules/ev-emitter/ev-emitter.js", "../node_modules/get-size/get-size.js", "../node_modules/desandro-matches-selector/matches-selector.js", "../node_modules/fizzy-ui-utils/utils.js", "../node_modules/outlayer/item.js", "../node_modules/outlayer/outlayer.js", "../node_modules/masonry-layout/masonry.js", "../node_modules/just-debounce-it/index.js", "../node_modules/strict-uri-encode/index.js", "../node_modules/decode-uri-component/index.js", "../node_modules/split-on-first/index.js", "../node_modules/filter-obj/index.js", "../node_modules/query-string/index.js", "../node_modules/clipboard/dist/clipboard.js", "../node_modules/flatpickr/dist/flatpickr.js", "../node_modules/@popperjs/core/lib/index.js", "../node_modules/@popperjs/core/lib/enums.js", "../node_modules/@popperjs/core/lib/dom-utils/getNodeName.js", "../node_modules/@popperjs/core/lib/dom-utils/getWindow.js", "../node_modules/@popperjs/core/lib/dom-utils/instanceOf.js", "../node_modules/@popperjs/core/lib/modifiers/applyStyles.js", "../node_modules/@popperjs/core/lib/utils/getBasePlacement.js", "../node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js", "../node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js", "../node_modules/@popperjs/core/lib/dom-utils/contains.js", "../node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js", "../node_modules/@popperjs/core/lib/dom-utils/isTableElement.js", "../node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js", "../node_modules/@popperjs/core/lib/dom-utils/getParentNode.js", "../node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js", "../node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js", "../node_modules/@popperjs/core/lib/utils/math.js", "../node_modules/@popperjs/core/lib/utils/within.js", "../node_modules/@popperjs/core/lib/utils/getFreshSideObject.js", "../node_modules/@popperjs/core/lib/utils/mergePaddingObject.js", "../node_modules/@popperjs/core/lib/utils/expandToHashMap.js", "../node_modules/@popperjs/core/lib/modifiers/arrow.js", "../node_modules/@popperjs/core/lib/modifiers/computeStyles.js", "../node_modules/@popperjs/core/lib/modifiers/eventListeners.js", "../node_modules/@popperjs/core/lib/utils/getOppositePlacement.js", "../node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js", "../node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js", "../node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js", "../node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js", "../node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js", "../node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js", "../node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js", "../node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js", "../node_modules/@popperjs/core/lib/utils/rectToClientRect.js", "../node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js", "../node_modules/@popperjs/core/lib/utils/getVariation.js", "../node_modules/@popperjs/core/lib/utils/computeOffsets.js", "../node_modules/@popperjs/core/lib/utils/detectOverflow.js", "../node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js", "../node_modules/@popperjs/core/lib/modifiers/flip.js", "../node_modules/@popperjs/core/lib/modifiers/hide.js", "../node_modules/@popperjs/core/lib/modifiers/offset.js", "../node_modules/@popperjs/core/lib/modifiers/popperOffsets.js", "../node_modules/@popperjs/core/lib/utils/getAltAxis.js", "../node_modules/@popperjs/core/lib/modifiers/preventOverflow.js", "../node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js", "../node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js", "../node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js", "../node_modules/@popperjs/core/lib/utils/orderModifiers.js", "../node_modules/@popperjs/core/lib/utils/debounce.js", "../node_modules/@popperjs/core/lib/utils/mergeByName.js", "../node_modules/@popperjs/core/lib/createPopper.js", "../node_modules/@popperjs/core/lib/popper-lite.js", "../node_modules/@popperjs/core/lib/popper.js", "../node_modules/bootstrap/js/src/dom/selector-engine.js", "../node_modules/bootstrap/js/src/util/index.js", "../node_modules/bootstrap/js/src/dom/event-handler.js", "../node_modules/bootstrap/js/src/dom/data.js", "../node_modules/bootstrap/js/src/base-component.js", "../node_modules/bootstrap/js/src/alert.js", "../node_modules/bootstrap/js/src/button.js", "../node_modules/bootstrap/js/src/dom/manipulator.js", "../node_modules/bootstrap/js/src/carousel.js", "../node_modules/bootstrap/js/src/collapse.js", "../node_modules/bootstrap/js/src/dropdown.js", "../node_modules/bootstrap/js/src/util/scrollbar.js", "../node_modules/bootstrap/js/src/util/backdrop.js", "../node_modules/bootstrap/js/src/modal.js", "../node_modules/bootstrap/js/src/offcanvas.js", "../node_modules/bootstrap/js/src/util/sanitizer.js", "../node_modules/bootstrap/js/src/tooltip.js", "../node_modules/bootstrap/js/src/popover.js", "../node_modules/bootstrap/js/src/scrollspy.js", "../node_modules/bootstrap/js/src/tab.js", "../node_modules/bootstrap/js/src/toast.js", "../node_modules/core-js/modules/es.array.for-each.js", "../node_modules/core-js/modules/web.dom-collections.for-each.js", "../node_modules/core-js/modules/es.array.filter.js", "../node_modules/core-js/modules/es.object.assign.js", "../node_modules/core-js/modules/es.object.to-string.js", "../node_modules/core-js/modules/es.parse-int.js", "../node_modules/core-js/modules/es.string.iterator.js", "../node_modules/core-js/modules/web.dom-collections.iterator.js", "../node_modules/@juggle/resize-observer/lib/utils/resizeObservers.js", "../node_modules/@juggle/resize-observer/lib/algorithms/hasActiveObservations.js", "../node_modules/@juggle/resize-observer/lib/algorithms/hasSkippedObservations.js", "../node_modules/@juggle/resize-observer/lib/algorithms/deliverResizeLoopError.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserverBoxOptions.js", "../node_modules/@juggle/resize-observer/lib/utils/freeze.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserverSize.js", "../node_modules/@juggle/resize-observer/lib/DOMRectReadOnly.js", "../node_modules/@juggle/resize-observer/lib/utils/element.js", "../node_modules/@juggle/resize-observer/lib/utils/global.js", "../node_modules/@juggle/resize-observer/lib/algorithms/calculateBoxSize.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserverEntry.js", "../node_modules/@juggle/resize-observer/lib/algorithms/calculateDepthForNode.js", "../node_modules/@juggle/resize-observer/lib/algorithms/broadcastActiveObservations.js", "../node_modules/@juggle/resize-observer/lib/algorithms/gatherActiveObservationsAtDepth.js", "../node_modules/@juggle/resize-observer/lib/utils/process.js", "../node_modules/@juggle/resize-observer/lib/utils/queueMicroTask.js", "../node_modules/@juggle/resize-observer/lib/utils/queueResizeObserver.js", "../node_modules/@juggle/resize-observer/lib/utils/scheduler.js", "../node_modules/@juggle/resize-observer/lib/ResizeObservation.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserverDetail.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserverController.js", "../node_modules/@juggle/resize-observer/lib/ResizeObserver.js", "../node_modules/core-js/modules/es.array.reduce.js", "../node_modules/core-js/modules/es.function.name.js", "../node_modules/core-js/modules/es.string.match.js", "../node_modules/core-js/modules/es.string.replace.js", "../node_modules/simplebar/src/helpers.js", "../node_modules/simplebar/src/scrollbar-width.js", "../node_modules/simplebar/src/simplebar.js", "../node_modules/simplebar/src/index.js", "../src/util.ts", "../src/forms/elements.ts", "../src/forms/speedSelector.ts", "../src/forms/scopeSelector.ts", "../src/forms/vlanTags.ts", "../src/forms/index.ts", "../src/bs.ts", "../src/search.ts", "../node_modules/color2k/src/guard.ts", "../node_modules/color2k/src/ColorError.ts", "../node_modules/color2k/src/parseToRgba.ts", "../node_modules/color2k/src/parseToHsla.ts", "../node_modules/color2k/src/hsla.ts", "../node_modules/color2k/src/adjustHue.ts", "../node_modules/color2k/src/darken.ts", "../node_modules/color2k/src/desaturate.ts", "../node_modules/color2k/src/getLuminance.ts", "../node_modules/color2k/src/getContrast.ts", "../node_modules/color2k/src/rgba.ts", "../node_modules/color2k/src/mix.ts", "../node_modules/color2k/src/getScale.ts", "../node_modules/color2k/src/hasBadContrast.ts", "../node_modules/color2k/src/lighten.ts", "../node_modules/color2k/src/transparentize.ts", "../node_modules/color2k/src/opacify.ts", "../node_modules/color2k/src/readableColorIsBlack.ts", "../node_modules/color2k/src/readableColor.ts", "../node_modules/color2k/src/saturate.ts", "../node_modules/color2k/src/toHex.ts", "../node_modules/color2k/src/toRgba.ts", "../node_modules/color2k/src/toHsla.ts", "../src/select/api/apiSelect.ts", "../node_modules/slim-select/dist/slimselect.min.mjs", "../src/select/util.ts", "../src/select/api/types.ts", "../src/select/api/dynamicParams.ts", "../src/select/api/index.ts", "../src/select/color.ts", "../src/select/static.ts", "../src/select/index.ts", "../src/buttons/connectionToggle.ts", "../src/state/index.ts", "../src/stores/objectDepth.ts", "../src/stores/rackImages.ts", "../src/buttons/depthToggle.ts", "../src/buttons/moveOptions.ts", "../src/buttons/pagination.ts", "../src/colorMode.ts", "../src/buttons/preferences.ts", "../src/buttons/reslug.ts", "../src/buttons/selectAll.ts", "../src/buttons/index.ts", "../src/messages.ts", "../src/clipboard.ts", "../src/dateSelector.ts", "../src/tableConfig.ts", "../src/tables/interfaceTable.ts", "../src/sidenav.ts", "../src/racks.ts", "../src/links.ts", "../src/netbox.ts"], - "mappings": "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", + "mappings": "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", "names": [] } diff --git a/netbox/project-static/src/sidenav.ts b/netbox/project-static/src/sidenav.ts index 34c897044..d8207c9f7 100644 --- a/netbox/project-static/src/sidenav.ts +++ b/netbox/project-static/src/sidenav.ts @@ -266,10 +266,8 @@ class SideNav { for (const link of this.getActiveLinks()) { this.activateLink(link, 'collapse'); } - setTimeout(() => { - this.bodyRemove('hide'); - this.bodyAdd('hidden'); - }, 300); + this.bodyRemove('hide'); + this.bodyAdd('hidden'); } } diff --git a/netbox/project-static/styles/sidenav.scss b/netbox/project-static/styles/sidenav.scss index ffc366c16..9dfdd855a 100644 --- a/netbox/project-static/styles/sidenav.scss +++ b/netbox/project-static/styles/sidenav.scss @@ -105,6 +105,11 @@ // Navbar brand .sidenav-brand { margin-right: 0; + transition: opacity 0.1s ease-in-out; + } + + .sidenav-brand-icon { + transition: opacity 0.1s ease-in-out; } .sidenav-inner { @@ -141,7 +146,17 @@ } .sidenav-toggle { - display: none; + // The sidenav toggle's default state is "hidden". Because modifying the `display` property + // isn't ideal for smooth transitions, combine opacity 0 (transparent) and position absolute + // to yield a similar result. + position: absolute; + display: inline-block; + opacity: 0; + // The transition itself is largely irrelevant, but CSS needs *something* to transition in + // order to apply a delay. + transition: opacity 10ms ease-in-out; + // Offset the transition delay so the icon isn't visible during the logo transition. + transition-delay: 0.1s; } .sidenav-collapse { @@ -350,13 +365,21 @@ .sidenav-brand { position: absolute; opacity: 0; - transform: translateX(-150%); } .sidenav-brand-icon { opacity: 1; } + .sidenav-toggle { + // Immediately hide the toggle when the sidenav is closed, so it doesn't linger and overlap + // with the logo elements. + opacity: 0; + position: absolute; + transition: unset; + transition-delay: 0ms; + } + .navbar-nav > .nav-item { > .nav-link { &:after { @@ -402,7 +425,8 @@ @include media-breakpoint-up(lg) { .sidenav-toggle { - display: inline-block; + position: relative; + opacity: 1; } } } From 84c14aadc7c9329a426e6598af55f6c61129b8e8 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Fri, 15 Oct 2021 17:07:54 -0700 Subject: [PATCH 06/35] Fixes #7300: Fix incorrect Device LLDP interface row coloring & improve related JS --- docs/release-notes/version-3.0.md | 1 + netbox/project-static/dist/lldp.js | 4 +- netbox/project-static/dist/lldp.js.map | 2 +- netbox/project-static/src/device/lldp.ts | 98 ++++++++++++++++++------ 4 files changed, 77 insertions(+), 28 deletions(-) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 82770e856..70a9a0dac 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -4,6 +4,7 @@ ### Bug Fixes +* [#7300](https://github.com/netbox-community/netbox/issues/7300) - Fix incorrect Device LLDP interface row coloring * [#7495](https://github.com/netbox-community/netbox/issues/7495) - Fix navigation UI issue that caused improper element overlap * [#7529](https://github.com/netbox-community/netbox/issues/7529) - Restore horizontal scrolling for tables in narrow viewports * [#7534](https://github.com/netbox-community/netbox/issues/7534) - Avoid exception when utilizing "create and add another" twice in succession diff --git a/netbox/project-static/dist/lldp.js b/netbox/project-static/dist/lldp.js index 7fac1012a..2b3934742 100644 --- a/netbox/project-static/dist/lldp.js +++ b/netbox/project-static/dist/lldp.js @@ -1,5 +1,5 @@ -(()=>{var gr=Object.create;var le=Object.defineProperty,_r=Object.defineProperties,Er=Object.getOwnPropertyDescriptor,vr=Object.getOwnPropertyDescriptors,yr=Object.getOwnPropertyNames,mn=Object.getOwnPropertySymbols,Tr=Object.getPrototypeOf,gn=Object.prototype.hasOwnProperty,br=Object.prototype.propertyIsEnumerable;var _n=(i,t,e)=>t in i?le(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e,O=(i,t)=>{for(var e in t||(t={}))gn.call(t,e)&&_n(i,e,t[e]);if(mn)for(var e of mn(t))br.call(t,e)&&_n(i,e,t[e]);return i},je=(i,t)=>_r(i,vr(t)),En=i=>le(i,"__esModule",{value:!0});var mt=(i,t)=>()=>(t||i((t={exports:{}}).exports,t),t.exports),Ar=(i,t)=>{En(i);for(var e in t)le(i,e,{get:t[e],enumerable:!0})},Sr=(i,t,e)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of yr(t))!gn.call(i,n)&&n!=="default"&&le(i,n,{get:()=>t[n],enumerable:!(e=Er(t,n))||e.enumerable});return i},vn=i=>Sr(En(le(i!=null?gr(Tr(i)):{},"default",i&&i.__esModule&&"default"in i?{get:()=>i.default,enumerable:!0}:{value:i,enumerable:!0})),i);var bi=(i,t,e)=>new Promise((n,o)=>{var r=u=>{try{l(e.next(u))}catch(p){o(p)}},s=u=>{try{l(e.throw(u))}catch(p){o(p)}},l=u=>u.done?n(u.value):Promise.resolve(u.value).then(r,s);l((e=e.apply(i,t)).next())});var on=mt((er,li)=>{(function(i,t){typeof define=="function"&&define.amd?define(t):typeof li=="object"&&li.exports?li.exports=t():i.EvEmitter=t()})(typeof window!="undefined"?window:er,function(){"use strict";function i(){}var t=i.prototype;return t.on=function(e,n){if(!(!e||!n)){var o=this._events=this._events||{},r=o[e]=o[e]||[];return r.indexOf(n)==-1&&r.push(n),this}},t.once=function(e,n){if(!(!e||!n)){this.on(e,n);var o=this._onceEvents=this._onceEvents||{},r=o[e]=o[e]||{};return r[n]=!0,this}},t.off=function(e,n){var o=this._events&&this._events[e];if(!(!o||!o.length)){var r=o.indexOf(n);return r!=-1&&o.splice(r,1),this}},t.emitEvent=function(e,n){var o=this._events&&this._events[e];if(!(!o||!o.length)){o=o.slice(0),n=n||[];for(var r=this._onceEvents&&this._onceEvents[e],s=0;s{(function(i,t){typeof define=="function"&&define.amd?define(t):typeof ci=="object"&&ci.exports?ci.exports=t():i.getSize=t()})(window,function(){"use strict";function t(d){var v=parseFloat(d),E=d.indexOf("%")==-1&&!isNaN(v);return E&&v}function e(){}var n=typeof console=="undefined"?e:function(d){console.error(d)},o=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],r=o.length;function s(){for(var d={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},v=0;v